:root {
    --primary: #1A1C1E;
    --secondary: #E2E8F0;
    --accent: #0056D2;
    --background-main: #F8FAFC;
    --background-surface: #FFFFFF;
    --background-muted: #F1F5F9;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted-color: #94A3B8;
    --status-success: #10B981;
    --status-warning: #F59E0B;
    --status-error: #EF4444;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-muted {
    color: var(--text-muted-color) !important;
}

.smooth-transition {
    transition: all 0.3s ease-out;
}

.cinematic-fade-in {
    animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

/* ===== header ===== */
.pitstop-header {
    background-color: #1A1C1E;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1050;
}

.pitstop-header .navbar {
    padding: 0.75rem 0;
}

.pitstop-header .navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #F8FAFC !important;
    font-size: 1.25rem;
}

.pitstop-header .navbar-brand img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.pitstop-header .nav-link {
    font-family: 'Inter', sans-serif;
    color: #CBD5E1 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.pitstop-header .nav-link:hover,
.pitstop-header .nav-link.active {
    color: #0056D2 !important;
}

.pitstop-header .dropdown-menu {
    background-color: #FFFFFF;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    margin-top: 10px;
}

.pitstop-header .dropdown-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: #0F172A;
    transition: all 0.2s ease;
}

.pitstop-header .dropdown-item:hover {
    background-color: #F1F5F9;
    color: #0056D2;
}

.pitstop-header .btn-accent {
    background-color: #0056D2;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pitstop-header .btn-accent:hover {
    background-color: #0044A8;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.pitstop-header .navbar-toggler {
    color: #F8FAFC;
    border: none;
    font-size: 1.5rem;
    padding: 0;
}

.pitstop-header .navbar-toggler:focus {
    shadow: none;
    outline: none;
}

@media (max-width: 991.98px) {
    .pitstop-header .navbar-collapse {
        background-color: #1A1C1E;
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.75rem;
    }

    .pitstop-header .nav-link {
        padding: 0.75rem 0 !important;
        font-size: 1rem;
    }

    .pitstop-header .dropdown-menu {
        background-color: #2D3135;
        box-shadow: none;
        margin-top: 0;
    }

    .pitstop-header .dropdown-item {
        color: #CBD5E1;
    }

    .pitstop-header .btn-accent {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
}

/* ===== hero ===== */
.hero-video-section {
    min-height: 100vh;
    background-color: #1A1C1E;
    color: #F8FAFC;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 28, 30, 0.95) 0%, rgba(26, 28, 30, 0.6) 50%, rgba(26, 28, 30, 0.4) 100%);
}

.hero-content-box {
    z-index: 2;
}

.hero-badge {
    font-size: 0.85rem;
    letter-spacing: 2px;
    background: rgba(0, 86, 210, 0.2);
    border-left: 4px solid #0056D2;
    color: #0056D2;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-lead {
    max-width: 600px;
    font-size: 1.25rem;
    line-height: 1.6;
}

.hero-video-section .btn {
    border-radius: 8px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-section .btn-primary {
    background-color: #0056D2 !important;
    border-color: #0056D2 !important;
    box-shadow: 0 4px 15px rgba(0, 86, 210, 0.3);
}

.hero-video-section .btn-primary:hover {
    background-color: #0044a8 !important;
    transform: translateY(-2px);
}

.hero-video-section .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    flex-direction: column;
    align-items: center;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: #F8FAFC;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-overlay {
        background: rgba(26, 28, 30, 0.85);
    }
}

/* ===== about-teaser ===== */
.about-teaser-section {
    background-color: #F8FAFC;
    overflow: hidden;
}

.about-teaser__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A;
    font-weight: 800;
    line-height: 1.2;
    font-size: 2.5rem;
}

.about-teaser__text {
    font-family: 'Inter', sans-serif;
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
}

.about-teaser__icon-box {
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056D2;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-teaser__feature-text {
    font-weight: 600;
    color: #1A1C1E;
    font-family: 'Inter', sans-serif;
}

.about-teaser__btn-primary {
    background-color: #0056D2;
    color: #FFFFFF !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.about-teaser__btn-primary:hover {
    background-color: #0044a8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 86, 210, 0.2);
}

.about-teaser__btn-secondary {
    background-color: #FFFFFF;
    color: #0F172A !important;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-teaser__btn-secondary:hover {
    background-color: #F1F5F9;
    transform: translateY(-2px);
}

.about-teaser__image-wrapper {
    border-radius: 24px;
    padding: 12px;
    background: #FFFFFF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.about-teaser__image {
    border-radius: 16px;
    height: 500px;
    object-fit: cover;
}

.about-teaser__stats-card {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: #1A1C1E;
    padding: 24px 32px;
    border-radius: 16px;
    color: #FFFFFF;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-teaser__stats-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0056D2;
    line-height: 1;
}

.about-teaser__stats-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #CBD5E1;
}

@media (max-width: 991px) {
    .about-teaser__title {
        font-size: 1.8rem;
    }

    .about-teaser__image {
        height: 350px;
    }

    .about-teaser__stats-card {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .about-teaser__title {
        font-size: 1.5rem;
    }

    .about-teaser__btn-primary,
    .about-teaser__btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ===== latest-reviews ===== */
.reviews-grid-section {
    background-color: #F8FAFC;
    padding: 80px 0;
}

.reviews-grid-section .reviews-grid-title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

.reviews-grid-section .reviews-grid-lead {
    color: #475569;
    font-size: 1.1rem;
    max-width: 600px;
}

.reviews-grid-section .reviews-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #FFFFFF;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

.reviews-grid-section .reviews-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
}

.reviews-grid-section .reviews-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.reviews-grid-section .reviews-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reviews-grid-section .reviews-card:hover .reviews-card-img-wrapper img {
    transform: scale(1.05);
}

.reviews-grid-section .reviews-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #0056D2;
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reviews-grid-section .reviews-card-meta {
    font-size: 0.85rem;
    color: #94A3B8;
    display: flex;
    align-items: center;
}

.reviews-grid-section .reviews-card-meta i {
    color: #0056D2;
    margin-right: 4px;
}

.reviews-grid-section .card-title {
    color: #0F172A;
    line-height: 1.3;
}

.reviews-grid-section .card-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.reviews-grid-section .btn-primary {
    background-color: #1A1C1E;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.reviews-grid-section .btn-primary:hover {
    background-color: #0056D2;
}

.reviews-grid-section .btn-outline-primary {
    border: 2px solid #1A1C1E;
    color: #1A1C1E;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
}

.reviews-grid-section .btn-outline-primary:hover {
    background-color: #1A1C1E;
    color: #FFFFFF;
    border-color: #1A1C1E;
}

@media (max-width: 767px) {
    .reviews-grid-section {
        padding: 60px 0;
    }

    .reviews-grid-section .reviews-grid-title {
        font-size: 1.75rem;
    }

    .reviews-grid-section .reviews-grid-btn {
        display: none;
    }
}

/* ===== latest-guides ===== */
.guides-section {
    background-color: #F8FAFC;
    overflow: hidden;
}

.guides-section .guides-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A;
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.guides-section .guides-subtitle {
    color: #475569;
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.6;
}

.guides-section .guide-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.guides-section .guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
}

.guides-section .guide-card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.guides-section .guide-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guides-section .guide-card:hover .guide-card-img {
    transform: scale(1.05);
}

.guides-section .guide-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.guides-section .guide-card-category {
    color: #0056D2;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guides-section .guide-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}

.guides-section .guide-card-excerpt {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.guides-section .guide-card-link {
    color: #0056D2;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: gap 0.2s ease;
}

.guides-section .guide-card-link:hover {
    gap: 12px;
}

.guides-section .btn-all-guides {
    background-color: #1A1C1E;
    color: #FFFFFF;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.guides-section .btn-all-guides:hover {
    background-color: #0056D2;
    color: #FFFFFF;
    transform: scale(1.02);
}

@media (max-width: 767px) {
    .guides-section .guides-title {
        font-size: 1.5rem;
    }

    .guides-section .guides-subtitle {
        font-size: 0.9rem;
    }

    .guides-section .guide-card-title {
        font-size: 1rem;
    }
}

/* ===== newsletter ===== */
.newsletter-block {
    background-color: #F8FAFC;
}

.newsletter-block .newsletter-card {
    background-color: #1A1C1E;
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.newsletter-block .newsletter-title {
    color: #F8FAFC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.2;
}

.newsletter-block .newsletter-description {
    color: #CBD5E1;
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter-block .newsletter-input {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 12px 16px;
    color: #0F172A;
    height: 52px;
    font-size: 0.95rem;
}

.newsletter-block .newsletter-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.newsletter-block .newsletter-btn {
    background-color: #0056D2;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 600;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.newsletter-block .newsletter-btn:hover {
    background-color: #0044A7;
    transform: translateY(-2px);
}

.newsletter-block .newsletter-error {
    color: #EF4444;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.newsletter-block .newsletter-disclaimer {
    color: #64748B;
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .newsletter-block .newsletter-title {
        font-size: 1.25rem;
    }

    .newsletter-block .newsletter-description {
        font-size: 0.9rem;
    }

    .newsletter-block .newsletter-card {
        padding: 2rem 1.5rem !important;
    }
}

/* ===== footer ===== */
.pitstop-footer {
    background-color: #1A1C1E !important;
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.pitstop-footer-logo {
    max-width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.pitstop-footer-logo:hover {
    transform: scale(1.05);
}

.pitstop-footer-desc {
    color: #CBD5E1;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.pitstop-footer-link {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.pitstop-footer-link:hover {
    color: #0056D2;
    padding-left: 5px;
}

.pitstop-footer .text-light-bg-muted {
    color: #64748B !important;
}

.pitstop-footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 767px) {
    .pitstop-footer {
        padding-top: 60px;
        text-align: center;
    }

    .pitstop-footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .pitstop-footer-link {
        padding-left: 0 !important;
    }
}

/* ===== PAGE: about ===== */
.pitstop-about-content { padding: 120px 0; background-color: #F8FAFC; }.pitstop-about-heading-main { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: #0F172A; line-height: 1.2; font-size: 2.5rem; }.pitstop-about-description { color: #475569; font-size: 1.1rem; line-height: 1.7; }.pitstop-about-main-img { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); width: 100%; height: 450px; object-fit: cover; }.pitstop-about-card-stat { background: #FFFFFF; padding: 40px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.05); height: 100%; transition: transform 0.3s ease, box-shadow 0.3s ease; }.pitstop-about-card-stat:hover { transform: translateY(-10px); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08); }.pitstop-about-card-icon { font-size: 32px; color: #0056D2; margin-bottom: 20px; display: block; }.pitstop-about-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #0F172A; margin-bottom: 15px; font-size: 1.25rem; }.pitstop-about-card-text { color: #475569; font-size: 0.95rem; margin-bottom: 0; }.pitstop-mission-section { padding: 120px 0; background-color: #1A1C1E; color: #F8FAFC; }.pitstop-mission-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #FFFFFF; font-size: 2.25rem; }.pitstop-mission-text { color: #CBD5E1; font-size: 1.1rem; line-height: 1.7; }.pitstop-mission-list li { list-style: none; font-size: 1.05rem; color: #CBD5E1; }.pitstop-mission-list i { color: #0056D2; font-size: 24px; }.pitstop-mission-img { border-radius: 16px; width: 100%; height: 500px; object-fit: cover; }.pitstop-mission-btn { background-color: #0056D2; color: #FFFFFF; font-weight: 600; padding: 14px 32px; border-radius: 8px; border: none; transition: background 0.3s ease; }.pitstop-mission-btn:hover { background-color: #0042a3; color: #FFFFFF; } @media (max-width: 991px) { .pitstop-about-content, .pitstop-mission-section { padding: 80px 0; } .pitstop-about-heading-main { font-size: 2rem; } .pitstop-about-main-img, .pitstop-mission-img { height: 350px; } } @media (max-width: 767px) { .pitstop-about-heading-main { font-size: 1.5rem; } .pitstop-mission-heading { font-size: 1.4rem; } .pitstop-about-description, .pitstop-mission-text { font-size: 1rem; } }

/* ===== PAGE: contact ===== */
.contact-form-block {
  background-color: #F8FAFC;
  font-family: 'Inter', sans-serif;
}
.contact-form-block .contact-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.contact-form-block .contact-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
}
.contact-form-block .contact-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.contact-form-block .form-outline .form-control {
  border: 1px solid #E2E8F0 !important;
  background: #FFFFFF !important;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.contact-form-block .form-outline .form-label {
  color: #64748B;
}
.contact-form-block .btn-primary {
  background-color: #0056D2 !important;
  border: none;
  font-weight: 600;
  padding: 16px 40px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.contact-form-block .btn-primary:hover {
  background-color: #0044A9 !important;
  transform: translateY(-2px);
}
.contact-form-block .form-control:focus ~ .form-label,
.contact-form-block .form-control.active ~ .form-label {
  color: #0056D2 !important;
}
@media (max-width: 768px) {
  .contact-form-block .contact-title {
    font-size: 1.25rem;
  }
  .contact-form-block .contact-subtitle {
    font-size: 0.9rem;
  }
  .contact-form-block .contact-card {
    padding: 1.5rem !important;
  }
}

/* ===== PAGE: equipment ===== */
.equipment-reviews-section {
    background-color: #F8FAFC;
    overflow-x: hidden;
}
.equipment-reviews-section h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.equipment-reviews-section .card {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.equipment-reviews-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
}
.equipment-reviews-section .card-img-wrapper {
    height: 220px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
}
.equipment-reviews-section .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.equipment-reviews-section .bg-accent {
    background-color: #0056D2 !important;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 6px;
}
.equipment-reviews-section .btn-primary {
    background-color: #1A1C1E;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #FFFFFF !important;
}
.equipment-reviews-section .btn-primary:hover {
    background-color: #0056D2;
    transform: scale(1.02);
}
.equipment-reviews-section .input-group-text {
    color: #475569;
}
.equipment-reviews-section .form-control:focus, .equipment-reviews-section .form-select:focus {
    box-shadow: none;
    border-color: #0056D2;
}
.equipment-reviews-section .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}

/* ===== PAGE: guides ===== */
.guides-section {
  background-color: #F8FAFC;
  font-family: 'Inter', sans-serif;
}

.guides-section h1,
.guides-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0F172A;
}

.guides-section .card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.guides-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.12);
}

.guides-section .card-img-top {
  height: 240px;
  object-fit: cover;
  transition: transform 1.2s ease-in-out;
}

.guides-section .card:hover .card-img-top {
  transform: scale(1.05);
}

.guides-section .badge {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
}

.guides-section .btn-dark {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  background-color: #1A1C1E;
  border: none;
  transition: background-color 0.3s ease;
}

.guides-section .btn-dark:hover {
  background-color: #0056D2;
}

@media (max-width: 767.98px) {
  .guides-section h1 {
    font-size: 1.5rem !important;
  }
  .guides-section h2 {
    font-size: 1.1rem !important;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-section { background-color: #F8FAFC; min-height: 80vh; }
.privacy-card { background: #FFFFFF; border-radius: 16px; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08); }
.privacy-headline { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 2.5rem; color: #0F172A; line-height: 1.2; }
.privacy-subheadline { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.25rem; color: #1A1C1E; }
.privacy-intro { font-family: 'Inter', sans-serif; font-size: 1.1rem; color: #475569; line-height: 1.6; }
.privacy-block p { font-family: 'Inter', sans-serif; font-size: 1rem; color: #475569; line-height: 1.7; }
.privacy-list { padding-left: 1.5rem; list-style-type: none; }
.privacy-list li { position: relative; padding-bottom: 0.75rem; color: #475569; font-family: 'Inter', sans-serif; }
.privacy-list li::before { content: '•'; color: #0056D2; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; }
.privacy-section .btn-primary { border-radius: 8px; font-weight: 600; text-transform: none; background-color: #0056D2; transition: transform 300ms ease-out, background-color 300ms; }
.privacy-section .btn-primary:hover { transform: scale(1.02); background-color: #003f9e; }
@media (max-width: 768px) {
  .privacy-headline { font-size: 1.25rem; }
  .privacy-subheadline { font-size: 1.1rem; }
  .privacy-card { padding: 1.5rem !important; }
}

/* ===== PAGE: terms ===== */
.terms-section {
    background-color: #F8FAFC;
    font-family: 'Inter', sans-serif;
}
.terms-section .terms-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}
.terms-section h1, .terms-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0F172A;
}
.terms-section .text-accent {
    color: #0056D2;
}
.terms-section .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #94A3B8;
}
.terms-section .terms-content p {
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}
.terms-section .alert-muted {
    background-color: #F1F5F9;
    border-left: 4px solid #F59E0B;
    color: #475569;
}
.terms-section .hover-shadow {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.terms-section .hover-shadow:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #0056D2 !important;
}
@media (max-width: 768px) {
    .terms-section h1 {
        font-size: 1.5rem !important;
    }
    .terms-section .terms-card {
        padding: 1.5rem !important;
    }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-content .disclaimer-card { background: #FFFFFF; border-radius: 16px; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08); overflow: hidden; }.disclaimer-content h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: #0F172A; line-height: 1.2; }.disclaimer-content .icon-box { width: 48px; height: 48px; background: #F1F5F9; color: #0056D2; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }.disclaimer-content h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #1A1C1E !important; }.disclaimer-content p { font-family: 'Inter', sans-serif; line-height: 1.7; color: #475569; }.disclaimer-content .list-styled { list-style: none; padding-left: 0; margin-top: 1rem; }.disclaimer-content .list-styled li { position: relative; padding-left: 1.75rem; color: #475569; margin-bottom: 0.75rem; }.disclaimer-content .list-styled li::before { content: '\2022'; color: #0056D2; font-weight: bold; display: inline-block; width: 1.75rem; margin-left: -1.75rem; }.disclaimer-content .legal-update-box { background: #F8FAFC; border-radius: 12px; color: #94A3B8; }

.comment-card {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-out;
}

.comment-card:hover {
    transform: translateY(-2px);
}

.comment-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #F1F5F9;
}

.comment-author {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: 1.05rem;
}

.comment-date {
    font-size: 0.85rem;
    color: #94A3B8;
}

.comment-text {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #475569;
    font-size: 1rem;
}

.btn-action {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0056D2;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-action:hover {
    color: #1A1C1E;
}

.reply-card {
    position: relative;
    padding: 16px 0 16px 16px;
    border-left: 2px solid #E2E8F0;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #F1F5F9;
}

.text-accent {
    color: #0056D2;
}


/* ===== PAGE TEMPLATE: equipment-posts ===== */
.equipment-detail-block .hero-section {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.equipment-detail-block .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 28, 30, 0.9) 100%);
}

.equipment-detail-block .text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.equipment-detail-block .equipment-rich-text p {
    line-height: 1.8;
    color: #475569;
    font-family: 'Inter', sans-serif;
}

.equipment-detail-block .nav-tabs .nav-link {
    color: #475569;
    font-weight: 600;
    border: none;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.equipment-detail-block .nav-tabs .nav-link.active {
    color: #0056D2;
    background: none;
    border-bottom: 3px solid #0056D2;
}

.equipment-detail-block .btn-action {
    background: none;
    border: none;
    color: #64748B;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    padding: 0;
    transition: color 0.2s;
}

.equipment-detail-block .btn-action:hover {
    color: #0056D2;
}

.equipment-detail-block .comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.equipment-detail-block .post-link:hover h5 {
    color: #0056D2 !important;
}

.equipment-detail-block .bg-accent {
    background-color: #0056D2 !important;
}

.equipment-detail-block .form-control {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 0.75rem 1rem;
}

.equipment-detail-block .form-control:focus {
    border-color: #0056D2;
    box-shadow: 0 0 0 4px rgba(0, 86, 210, 0.1);
}

@media (max-width: 768px) {
    .equipment-detail-block .hero-section {
        min-height: 300px;
    }

    .equipment-detail-block h1 {
        font-size: 1.75rem;
    }

    .equipment-detail-block .content-body-wrapper {
        padding: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: guide-posts ===== */
.guide-detail-block {
    background-color: #F8FAFC;
    min-height: 100vh;
}

.guide-hero {
    position: relative;
    padding: 120px 0;
    background-position: center;
    background-size: cover;
}

.bg-accent {
    background-color: #0056D2 !important;
}

.text-accent {
    color: #0056D2 !important;
}

.guide-article {
    line-height: 1.8;
    color: #475569;
}

.guide-article h2,
.guide-article h3 {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.guide-article ul,
.guide-article ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.guide-article p {
    margin-bottom: 1.5rem;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reply-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-action {
    border: none;
    background: none;
    color: #64748B;
    font-size: 0.85rem;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-action:hover {
    color: #0056D2;
}

.js-slider-track {
    transition: transform 0.5s ease-in-out;
}

.slider-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.4) !important;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

@media (max-width: 768px) {
    .guide-hero {
        padding: 80px 15px;
    }

    .guide-hero h1 {
        font-size: 1.5rem;
    }

    .guide-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}