/* Brand-Aligned "Tech-Enabled" Theme */
:root {
    /* Brand Colors */
    --brand-navy: #000c36;
    --brand-orange: #f79939;

    /* Theme Colors */
    --bg-body: #F4F6F9;
    /* Light Professional Background for content */
    --bg-white: #FFFFFF;
    --text-main: #000c36;
    /* Navy text for headings */
    --text-body: #4A5568;
    /* Slate grey for readability */
    --border-light: #E2E8F0;

    /* Gradients (Subtle, Professional) */
    --gradient-hero: linear-gradient(135deg, #000c36 0%, #051b5c 100%);
    --gradient-accent: linear-gradient(135deg, #f79939 0%, #ffb36b 100%);

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    /* Clean shadows */
    --shadow-md: 0 10px 30px rgba(0, 12, 54, 0.08);
    /* Elevated cards */
    --shadow-hover: 0 20px 40px rgba(0, 12, 54, 0.12);
    --radius-lg: 12px;
    /* Slightly tighter radius */

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-orange {
    color: var(--brand-orange);
}

.text-navy {
    color: var(--brand-navy);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    /* Classic Pill/Rounded Rect */
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navy Outline (for light bg) */
.btn-outline.dark {
    border-color: var(--brand-navy);
    color: var(--brand-navy);
}

.btn-orange,
.btn-primary {
    background-color: var(--brand-navy) !important;
    color: #FFFFFF !important;
    border: none;
}

.btn-orange:hover,
.btn-primary:hover {
    background-color: var(--brand-orange) !important;
}

/* Primary CTA Override */
.nav-btn {
    background-color: var(--brand-orange) !important;
    color: #FFFFFF !important;
    border: none;
}

.nav-btn:hover {
    background-color: var(--brand-navy) !important;
}

.btn-navy {
    background-color: var(--brand-navy) !important;
    color: #FFFFFF !important;
    border: none;
}

.btn-navy:hover {
    background-color: var(--brand-orange) !important;
}

.btn-navy {
    background-color: var(--brand-navy) !important;
    color: #FFFFFF !important;
    border: none;
}

.btn-navy:hover {
    background-color: var(--brand-orange) !important;
}

.nav-btn {
    padding: 8px 16px !important;
    font-size: 13px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
}


.nav-btn {
    padding: 8px 16px !important;
    font-size: 13px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
}

/* ─── Hamburger Button ─── */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--brand-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Nav Drawer ─── */
.mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: white;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.mobile-nav.is-open {
    max-height: 500px;
    padding: 8px 24px 8px;
    border-top: 1px solid var(--border-light);
}

.mobile-nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
}

.mobile-nav-link:last-of-type {
    border-bottom: none;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--brand-orange);
}

.mobile-nav-cta {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Mobile CTA bar (below logo row, mobile only) */
.mobile-cta-bar {
    display: none;
    justify-content: center;
    padding: 10px 16px 12px;
    background: white;
}

.mobile-cta-bar .btn-orange {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
}

/* ─── Mobile Breakpoint ─── */
@media (max-width: 900px) {
    .nav-menu {
        display: none !important;
    }

    .header-actions {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .mobile-nav {
        display: flex !important;
    }

    .mobile-cta-bar {
        display: flex !important;
    }

    /* Center logo on mobile */
    .header-inner {
        justify-content: space-between;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Hero */
    .hero {
        padding: 160px 0 80px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -0.5px;
        overflow-wrap: break-word;
    }

    .hero-overline {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-content {
        gap: 40px;
    }

    /* Section headings */
    .section-header h2 {
        font-size: 26px;
    }

    .section {
        padding: 60px 0;
    }

    /* Services */
    .service-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Process steps */
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .process-step {
        max-width: 320px;
    }

    .process-connector {
        transform: rotate(90deg);
        margin: 10px 0;
        padding-top: 0;
    }

    /* Contact */
    .contact-info-cards {
        gap: 12px;
    }

    .contact-form-wrapper {
        padding: 30px 24px;
    }

    .contact-form>div {
        grid-template-columns: 1fr !important;
    }

    /* About */
    .people-image-float-left {
        float: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .about-content.active .people-text-wrap p {
        text-align: center !important;
    }

    /* Popup */
    .popup-card {
        padding: 36px 24px 28px !important;
    }

    .popup-fields {
        flex-direction: column !important;
    }

    .popup-title {
        font-size: 19px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .container {
        padding: 0 16px;
    }
}





.btn-outline.dark:hover {
    background: var(--brand-navy);
    color: white;
}

/* Global Button Hover Effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.scroll-down-arrow {
    display: inline-block;
    color: var(--brand-navy);
    font-size: 24px;
    margin-top: 40px;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: 0.3s;
}

.scroll-down-arrow:hover {
    color: var(--brand-orange);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Header - Always White/Professional */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    /* Always Navy */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--brand-orange);
}

/* Hero Section - Light Theme (Screenshot Match) */
/* Hero Section - Refined Design */
.hero {
    position: relative;
    padding: 200px 0 120px;
    background: #FFFFFF;
    color: var(--text-main);
    overflow: hidden;
    text-align: center;
}

.hero::before {
    /* Background Image - More Prominent */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    /* Increased from 0.15 for more prominence */
    pointer-events: none;
    z-index: 0;
}

.hero-overlay {
    /* Lighter Gradient Overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 70px;
    /* Significant separation between overline, title, and description */
}


.hero-overline {
    font-size: 20px;
    /* Larger */
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-navy);
    margin: 0;
    display: block;
}

.hero-title {
    font-size: 56px;
    /* Slightly smaller to fit single line */
    line-height: 1.1;
    color: var(--brand-navy);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 22px;
    /* Smoother secondary title */
    color: var(--brand-navy);
    font-weight: 400;
    /* Unbolded */
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.3;
    white-space: nowrap;
    /* Force one line */
    font-family: 'Inter', sans-serif;
}





/* Social Proof - Avatars */
.social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -15px;
    background-size: cover;
    background-color: #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-body);
    font-weight: 600;
}

.stars {
    color: #FFB400;
    font-size: 14px;
    margin-bottom: 2px;
}

/* Problem Section */
.section-problem {
    padding: 120px 0;
    background: var(--bg-body);
}

.problem-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.problem-card::top {
    border-top: 4px solid var(--brand-orange);
}

.list-check li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 17px;
    align-items: center;
    color: var(--text-main);
    font-weight: 500;
}

.list-check i {
    color: var(--brand-orange);
    background: rgba(247, 153, 57, 0.1);
    padding: 6px;
    border-radius: 50%;
    font-size: 12px;
}

/* Services Bento */
.section-services {
    padding: 100px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 24px;
}

.bento-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 12, 54, 0.1);
}

/* Navy Card Variation */
.bento-card.navy {
    background: var(--brand-navy);
    color: white;
    border: none;
}

.bento-card.navy h3,
.bento-card.navy p {
    color: white;
}

.bento-card.navy .bento-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.bento-card.navy .price {
    color: var(--brand-orange);
}

.bento-card.large {
    grid-column: span 2;
}

.bento-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 12, 54, 0.05);
    color: var(--brand-navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.bento-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.bento-card p {
    font-size: 15px;
    color: var(--text-body);
}

.bento-card .price {
    margin-top: auto;
    font-weight: 700;
    color: var(--brand-orange);
    font-family: var(--font-heading);
    font-size: 18px;
}



/* Responsive */

/* --- Global Section & Component Styling --- */
.section {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-white);
}

#contact {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-light);
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 30px auto 40px;
    flex-wrap: wrap;
}

.info-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 12, 54, 0.06);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--text-body);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 12, 54, 0.1);
    border-color: var(--brand-orange);
}

.info-card i {
    font-size: 16px;
    color: var(--brand-orange);
}

.info-card span {
    font-weight: 500;
    white-space: nowrap;
}

.info-card a {
    color: var(--brand-orange);
    font-weight: 600;
    transition: color 0.3s;
}

.info-card a:hover {
    color: var(--brand-navy);
}

/* Contact Form Styles */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--brand-navy);
    box-shadow: 0 0 0 3px rgba(0, 12, 54, 0.05);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .contact-info-cards {
        gap: 12px;
    }

    .contact-form-wrapper {
        padding: 30px 24px;
    }

    .contact-form>div {
        grid-template-columns: 1fr !important;
    }
}

.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section.bg-light {
    background-color: #F8FAFC !important;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--brand-navy);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
    text-transform: uppercase;
}

.divider {
    display: none;
    /* Removed as per feedback */
}

/* Modern About Toggle (Switch Pill) */
.about-toggle-wrapper {
    margin: 50px auto;
    max-width: fit-content;
}

.about-toggle {
    display: flex;
    background: #F1F5F9;
    padding: 4px;
    border-radius: 100px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.toggle-glider {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    background: var(--brand-navy);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.toggle-btn {
    padding: 10px 30px;
    border-radius: 100px;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    color: #64748B;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.toggle-btn.active {
    color: #FFFFFF;
}

/* Modern Service Filters */
.service-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: white;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    border-color: var(--brand-navy);
    color: var(--brand-navy);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--brand-navy);
    color: white;
    border-color: var(--brand-navy);
    box-shadow: 0 4px 12px rgba(0, 12, 54, 0.15);
}

.about-content {
    width: 100%;
}

.people-image-float-left {
    float: left;
    width: 45%;
    margin-right: 45px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.people-desk-image-small {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 12, 54, 0.1);
}

@media (max-width: 768px) {
    .people-image-float-left {
        float: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 30px;
    }
}

.about-text-wrapper {
    text-align: center;
    width: 100%;
}

.about-text-wrapper p {
    text-align: center;
}

.about-text-wrapper h3 {
    text-align: center;
}

/* Specific left-alignment for About pages that need wrapping */
.about-content.active .people-text-wrap,
.about-content.active .people-text-wrap p {
    text-align: left !important;
}

@media (max-width: 768px) {
    .about-content.active .people-text-wrap p {
        text-align: center !important;
    }
}

.process-subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #64748B;
    margin-bottom: 8px;
    text-align: center;
}

/* Process Steps — Horizontal */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 260px;
    position: relative;
    padding: 0 12px;
}

.process-step:hover .process-icon-wrap {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 12, 54, 0.15);
    border-color: var(--brand-orange);
}

.process-step:hover .process-icon-wrap i {
    color: var(--brand-orange);
}



.process-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 12, 54, 0.06);
    position: relative;
}

.process-icon-wrap i {
    font-size: 34px;
    color: var(--brand-navy);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 28px;
    flex-shrink: 0;
}

.process-connector i {
    font-size: 20px;
    color: var(--brand-orange);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .process-step {
        max-width: 320px;
    }

    .process-connector {
        padding-top: 0;
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* --- Responsive Adjustments --- */

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-desc {
        white-space: normal;
        font-size: 18px;
    }
}

/* --- Redesign Styles (Move out of media query) --- */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Service Card Styles */
.service-card-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 12, 54, 0.08);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    /* For badge positioning */
}

/* Most Popular Badge (Pill Style) */
.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--brand-orange);
    color: white;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    z-index: 20;
    box-shadow: 0 4px 8px rgba(247, 153, 57, 0.2);
}

/* Ensure card doesn't hide the badge */
.service-card-item {
    overflow: visible !important;
}

.service-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 12, 54, 0.15);
    border-color: var(--brand-orange);
}

.service-card-item .card-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card-item .card-image:empty {
    display: none;
}

.service-card-item .card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-item .card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.service-card-item .card-content .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.service-card-item .card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-item .card-content .tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.service-card-item .card-content .tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 12, 54, 0.05);
    color: var(--brand-navy);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-item .card-content .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-navy);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-card-item .card-content .btn-link:hover {
    color: var(--brand-orange);
    gap: 12px;
}

.service-card-item .card-content .btn-link i {
    transition: transform 0.3s ease;
}

.service-card-item .card-content .btn-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-item .card-content {
        padding: 24px;
    }

    .service-card-item .card-image {
        height: 180px;
    }
}

/* Media Carousel */
.media-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.media-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.media-track:hover {
    animation-play-state: paused;
}

.media-track a img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.media-track a:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 12, 54, 0.04);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 12, 54, 0.08);
}

.faq-item summary {
    padding: 24px 28px;
    font-weight: 700;
    color: var(--brand-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.faq-item[open] summary {
    border-bottom-color: var(--border-light);
    background-color: #f8fafc;
}

.faq-item summary:hover {
    background-color: #f8fafc;
}

.faq-item summary::after {
    content: '+';
    font-size: 28px;
    font-weight: 400;
    color: var(--brand-orange);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-content {
    overflow: hidden;
    color: var(--text-body);
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content>div {
    overflow: hidden;
}

.faq-content p {
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
    padding: 0 28px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.faq-item[open] .faq-content {
    grid-template-rows: 1fr;
    padding-top: 24px;
    padding-bottom: 24px;
}

.faq-item[open] .faq-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Redesign */
.site-footer {
    background: #FFFFFF;
    color: var(--brand-navy);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-light);
    margin-top: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid #f1f3f5;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    object-position: left;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--brand-navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer-links ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    column-gap: 12px;
    row-gap: 8px;
}

.footer-links li a {
    color: var(--text-body);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--brand-orange);
    transform: translateX(3px);
}

.footer-newsletter p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--brand-navy);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--brand-navy);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--brand-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #adb5bd;
    font-size: 13px;
}

.footer-bottom .legal {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: #adb5bd;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--brand-orange);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom .legal {
        margin: 0;
    }
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

.service-hero {
    background: linear-gradient(135deg, var(--brand-navy) 0%, #051b5c 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 40px;
}

.service-ideal-for {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-ideal-for h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-orange);
    margin-bottom: 15px;
}

.service-ideal-for p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.service-overview p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

.service-features p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

.service-included {
    margin-top: 40px;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.included-list li:hover {
    transform: translateX(4px);
    border-color: var(--brand-orange);
    box-shadow: 0 2px 8px rgba(0, 12, 54, 0.08);
}

.included-list li i {
    color: var(--brand-orange);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.sample-request-form {
    margin-top: 40px;
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

.service-hero {
    background: linear-gradient(135deg, var(--brand-navy) 0%, #051b5c 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 40px;
}

.service-ideal-for {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-ideal-for h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-orange);
    margin-bottom: 15px;
}

.service-ideal-for p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.service-overview p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

.service-features p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

.service-included {
    margin-top: 40px;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.included-list li:hover {
    transform: translateX(4px);
    border-color: var(--brand-orange);
    box-shadow: 0 2px 8px rgba(0, 12, 54, 0.08);
}

.included-list li i {
    color: var(--brand-orange);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.sample-request-form {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }

    .service-hero-content h1 {
        font-size: 36px;
    }

    .service-price {
        font-size: 28px;
    }

    .service-ideal-for {
        padding: 24px;
    }
}


/* ========================================
   MODERN SERVICE PAGE STYLES
   ======================================== */

/* Service Hero Modern */
.service-hero-modern {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #000C36 0%, #001a5c 50%, #002d7a 100%);
    overflow: hidden;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-hero-centered {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-hero-left {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.service-hero-two-col {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}


.hero-left-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 60px;
}

.hero-tag-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-tag-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 8px 0;
}

.tag-section-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag-square {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    width: fit-content;
    white-space: nowrap;
}

.service-tag-square:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

.service-tag-square i {
    font-size: 12px;
    color: var(--brand-orange);
    flex-shrink: 0;
}


.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    width: fit-content;
}

.service-badge i {
    color: var(--brand-orange);
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.service-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.service-subtitle-large {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-subtitle-left {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 750px;
}


/* Hero Divider */
.hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-orange), transparent);
    margin: 32px 0;
}



/* Ideal For Tags */
.ideal-for-tags {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tag-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--brand-orange);
    transform: translateY(-2px);
}

.service-tag i {
    font-size: 13px;
    color: var(--brand-orange);
}

/* Hero Meta */
.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Left-Aligned Tags */
.ideal-for-tags-left,
.features-tags-left {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tag-label-left {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.tags-container-left {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-item i {
    color: var(--brand-orange);
    font-size: 14px;
}

.meta-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}


.service-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--brand-orange);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-orange);
    border-radius: 10px;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-cta-centered {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.service-cta-left {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0px;
}

.service-cta-left .btn {
    padding: 12px 24px;
    font-size: 15px;
}


/* Hero Trust Indicator */
.hero-trust-indicator {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.trust-stars {
    display: flex;
    gap: 4px;
    color: var(--brand-orange);
    font-size: 14px;
}

.trust-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.scroll-arrow {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-arrow:hover {
    color: var(--brand-orange);
}

.scroll-arrow i {
    font-size: 24px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Ideal For Card */
.ideal-for-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ideal-for-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-orange), #ff8c42);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 24px;
}

.ideal-for-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.ideal-for-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ideal-for-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.5;
}

.ideal-for-list li i {
    color: var(--brand-orange);
    font-size: 16px;
    flex-shrink: 0;
}

/* Modern Sections */
.section-modern {
    padding: 100px 0;
}

.section-dark {
    background: linear-gradient(135deg, #000C36 0%, #001a5c 100%);
    padding: 100px 0;
}

.bg-light-modern {
    background: #f8f9fb;
}

.section-overline {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-overline-light {
    color: var(--brand-orange);
}

.section-title-modern {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title-light {
    color: white;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.6;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.8);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.text-large {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 20px;
}

/* Content Grid */
.content-grid-2col {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-main p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-body);
}

.info-card-modern {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 12, 54, 0.08);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 100px;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-light);
}

.info-card-header i {
    font-size: 24px;
    color: var(--brand-orange);
}

.info-card-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-navy);
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}



/* Sample Form Sidebar */
.sample-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sample-form-sidebar .form-group {
    margin-bottom: 0;
}

/* Info Box Inline */
.info-box-inline {
    display: flex;
    gap: 20px;
    background: #F8FAFC;
    border-left: 4px solid var(--brand-orange);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.info-box-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--brand-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.info-box-content h4 {
    margin: 0 0 8px 0;
    color: var(--brand-navy);
    font-size: 18px;
}

.info-box-content p {
    margin: 0;
    color: var(--text-body);
    line-height: 1.6;
}

/* Simple 2-Column List */
.simple-list-2col {
    max-width: 1000px;
    margin: 0 auto;
}

.checklist-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.checklist-modern li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 12, 54, 0.06);
    transition: all 0.3s ease;
}

.checklist-modern li:hover {
    box-shadow: 0 4px 12px rgba(0, 12, 54, 0.1);
    transform: translateY(-2px);
}

.checklist-modern li i {
    color: var(--brand-orange);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}


/* QoE 65/35 Layout */
.qoe-layout-65-35 {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 60px;
    align-items: start;
}

.qoe-content-main {
    flex: 1;
}

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

/* QoE Sample Form - Homepage Style */
.qoe-sample-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.qoe-form-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-navy);
    margin: 0 0 24px 0;
}

.qoe-sample-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qoe-form-input {
    padding: 14px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.qoe-form-input:focus {
    outline: none;
    border-color: var(--brand-navy);
    box-shadow: 0 0 0 3px rgba(0, 12, 54, 0.1);
}

.qoe-form-btn {
    padding: 12px 32px;
    font-size: 14px;
    cursor: pointer;
    align-self: center;
}

/* ========================================
   QOE PAGE - MODERN SLACK-STYLE DESIGN
   ======================================== */

/* Overview Title - Subtle All Caps */
.qoe-overview-title {
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

/* Body Text - Same size as first paragraph */
.qoe-body-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 20px;
}

/* Section Titles - Subtle All Caps */
.qoe-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 64px 0 24px 0;
}

/* Form Title - Subtle All Caps */
.qoe-form-title {
    text-align: center;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #6B7280 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin: 0 0 24px 0 !important;
}

/* Deliverables Table - 30/70 Split with Shared Content Area */
.qoe-deliverables-table {
    display: grid;
    grid-template-columns: 35% 65%;
    border: 1.5px solid #E1E4E8;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

/* Left Column: Labels */
.qoe-table-labels {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #E1E4E8;
    background: #FAFBFC;
}

.qoe-table-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    background: transparent;
    transition: all 0.2s ease;
    border-bottom: 1px solid #E1E4E8;
}

.qoe-table-label:last-child {
    border-bottom: none;
}

.qoe-table-label:hover {
    background: rgba(247, 153, 57, 0.05);
}

.qoe-table-label.active {
    background: white;
    border-left: 3px solid var(--brand-orange);
    padding-left: 17px;
}

.qoe-table-label i {
    width: 20px;
    color: var(--brand-orange);
    font-size: 17px;
    flex-shrink: 0;
}

.qoe-table-label span {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-navy);
    line-height: 1.4;
}

/* Right Column: Shared Content Area */
.qoe-table-content-area {
    position: relative;
    min-height: 200px;
    background: white;
    display: flex;
    align-items: center;
}

.qoe-table-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 28px 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
}

.qoe-table-content.active {
    opacity: 1;
    visibility: visible;
}

.qoe-content-title {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.qoe-table-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4A5568;
    margin: 0;
}

.qoe-table-content strong {
    color: var(--brand-navy);
    font-weight: 600;
}

/* Scope Container - Categorized */
.qoe-scope-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qoe-scope-category {
    background: white;
    border: 1.5px solid #E1E4E8;
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.qoe-scope-category:hover {
    border-color: #CBD5E0;
    box-shadow: 0 4px 16px rgba(0, 12, 54, 0.06);
}

.qoe-scope-category-header {
    margin-bottom: 20px;
}

.qoe-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #FFF5EB 0%, #FFE8D1 100%);
    color: #C05621;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.8px;
}

.qoe-scope-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qoe-scope-items li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.7;
    color: #4A5568;
}

.qoe-scope-items li i {
    color: var(--brand-orange);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}


.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

.info-list li i {
    color: var(--brand-orange);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Features Grid */
.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon-modern {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--brand-orange), #ff8c42);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-card-modern h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-card-modern p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.timeline-item {
    position: relative;
    text-align: center;
}

.timeline-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--brand-orange), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* Deliverables Grid */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.deliverable-category {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.deliverable-category:hover {
    box-shadow: 0 8px 30px rgba(0, 12, 54, 0.1);
    transform: translateY(-4px);
    border-color: var(--brand-orange);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-light);
}

.category-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brand-orange), #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.category-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-navy);
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.deliverable-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deliverable-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

.deliverable-list li i {
    color: var(--brand-orange);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.support-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.support-card:hover {
    box-shadow: 0 8px 30px rgba(0, 12, 54, 0.1);
    transform: translateY(-4px);
    border-color: var(--brand-orange);
}

.support-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--brand-orange), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 24px;
}

.support-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.support-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* Sample Report CTA */
.section-cta-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
}

.cta-card-modern {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 12, 54, 0.1);
    border: 1px solid var(--border-light);
}

.cta-content {
    text-align: center;
    margin-bottom: 40px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-orange), #ff8c42);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    margin: 0 auto 24px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-content p {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Form */
.sample-form-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input-modern {
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fb;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--brand-orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Final CTA Section */
.section-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #000C36 0%, #001a5c 100%);
    position: relative;
    overflow: hidden;
}

.section-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.final-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-outline-navy {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-navy:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-trust {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.trust-item i {
    color: var(--brand-orange);
    font-size: 18px;
}


/* ========================================
   RESPONSIVE - SERVICE PAGE
   ======================================== */

@media (max-width: 1024px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-stats-row {
        grid-template-columns: 1fr;
    }

    .content-grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-card-modern {
        position: static;
    }

    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .info-box-inline {
        flex-direction: column;
    }

    .qoe-layout-65-35 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .qoe-sidebar {
        position: static;
    }

    .qoe-section-title {
        margin: 48px 0 20px 0;
    }

    .qoe-overview-title {
        font-size: 13px;
    }

    .qoe-deliverables-table {
        grid-template-columns: 1fr;
    }

    .qoe-table-labels {
        border-right: none;
        border-bottom: 1px solid #E1E4E8;
    }

    .qoe-table-content-area {
        min-height: 150px;
    }

    .qoe-table-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .service-hero-modern {
        padding: 150px 0 60px;
    }

    .service-title {
        font-size: 32px;
        overflow-wrap: break-word;
    }

    .service-subtitle {
        font-size: 17px;
    }

    .service-cta-group {
        flex-direction: column;
    }

    .service-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .ideal-for-card {
        padding: 30px;
    }

    .section-title-modern {
        font-size: 32px;
    }

    .features-grid-3 {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-card-modern {
        padding: 40px 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .final-cta-content h2 {
        font-size: 32px;
    }

    .final-cta-content p {
        font-size: 17px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .cta-trust {
        flex-direction: column;
        gap: 16px;
    }

    .service-hero-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }

    .service-cta-centered {
        flex-direction: column;
    }

    .service-cta-centered .btn {
        width: 100%;
        justify-content: center;
    }

    .service-cta-left {
        flex-direction: column;
    }

    .service-cta-left .btn {
        width: 100%;
        justify-content: center;
    }
}


/* ========================================
   INFO PAGE STYLES
   ======================================== */

/* Info Hero - Matches QoE Lite gradient style */
.info-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #000C36 0%, #001a5c 50%, #002d7a 100%);
    overflow: hidden;
}

.info-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.info-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Title: same weight/size/case as homepage section headers, white on navy */
.info-hero .service-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.info-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.info-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Info Content Wrapper */
.info-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.info-content-wrapper.wide {
    max-width: 1050px;
}

/* Info Intro Text */
.info-intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 64px;
    text-align: center;
}

/* Info Section */
.info-section {
    margin-bottom: 80px;
}

.info-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.info-body-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 32px;
}

/* Info Payment Container - QoE Style */
.info-payment-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-payment-category {
    background: white;
    border: 1.5px solid #E1E4E8;
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.info-payment-category:hover {
    border-color: #CBD5E0;
    box-shadow: 0 4px 16px rgba(0, 12, 54, 0.06);
}

.info-payment-category-header {
    margin-bottom: 20px;
}

.info-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #FFF5EB 0%, #FFE8D1 100%);
    color: #C05621;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.8px;
}

.info-payment-description {
    font-size: 15px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 24px;
}

.info-payment-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-payment-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: #FAFBFC;
    border-radius: 8px;
    border: 1px solid #E1E4E8;
    transition: all 0.2s ease;
}

.info-payment-item:hover {
    background: white;
    border-color: var(--brand-orange);
}

.info-payment-label {
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.info-payment-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-navy);
    line-height: 1.6;
}

/* Info Help Box - Subtle Note Style */
.info-help-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #FAFBFC;
    border: 1px solid #E1E4E8;
    border-left: 3px solid var(--brand-orange);
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 60px;
}

.info-help-box i {
    font-size: 18px;
    color: var(--brand-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-help-box h3 {
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.info-help-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #4A5568;
    margin: 0;
}

.info-help-box a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-help-box a:hover {
    color: #d67a2e;
    text-decoration: underline;
}

/* Info Text Section */
.info-text-section {
    margin-bottom: 64px;
}

/* Info Category Container & Boxes (Reusable) */
.info-category-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-category-box {
    background: white;
    border: 1.5px solid #E1E4E8;
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.info-category-box:hover {
    border-color: #CBD5E0;
    box-shadow: 0 4px 16px rgba(0, 12, 54, 0.06);
}

.info-category-box-header {
    margin-bottom: 20px;
}

.info-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #FFF5EB 0%, #FFE8D1 100%);
    color: #C05621;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.8px;
}

.info-category-description {
    font-size: 15px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 24px;
}

.info-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-category-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.7;
    color: #4A5568;
}

.info-category-list li i {
    color: var(--brand-orange);
    font-size: 8px;
    margin-top: 10px;
    flex-shrink: 0;
}

/* FAQ Component */
.info-faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-faq-item {
    background: white;
    border: 1.5px solid #E1E4E8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-faq-item:hover {
    border-color: #CBD5E0;
}

.info-faq-item.active {
    border-color: var(--brand-orange);
}

.info-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.3s ease;
}

.info-faq-question:hover {
    background: #FAFBFC;
}

.info-faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-navy);
    line-height: 1.5;
}

.info-faq-question i {
    color: var(--brand-orange);
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.info-faq-item.active .info-faq-question i {
    transform: rotate(180deg);
}

.info-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.info-faq-item.active .info-faq-answer {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.info-faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #4A5568;
    margin: 0;
}

/* Responsive Design for Info Pages */
@media (max-width: 768px) {
    .info-hero {
        padding: 160px 0 50px;
    }

    .info-hero .service-title {
        font-size: 26px;
        overflow-wrap: break-word;
    }

    .info-intro-text {
        font-size: 16px;
    }

    .info-payment-category,
    .info-category-box {
        padding: 20px;
    }

    .info-help-box {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .info-help-box i {
        font-size: 24px;
    }

    .info-faq-question {
        padding: 16px 20px;
    }

    .info-faq-question span {
        font-size: 15px;
    }

    .info-faq-item.active .info-faq-answer {
        padding: 0 20px 16px 20px;
    }
}

/* --- Blog Page Styles --- */

.blog-hero {
    padding: 160px 0 80px;
    background: #FFFFFF;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 20px;
}

.blog-hero p {
    font-size: 18px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

.section-blog {
    padding: 80px 0;
}

/* Featured Post */
.featured-post {
    margin-bottom: 60px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.featured-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.featured-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(247, 153, 57, 0.1);
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 12px;
    border-radius: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.featured-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-content p {
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--text-body);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-orange);
}

.blog-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-orange);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--brand-navy);
}

.blog-card p {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-link {
    font-weight: 700;
    color: var(--brand-navy);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.btn-link:hover {
    color: var(--brand-orange);
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* --- Blog Index --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.article-container {
    max-width: 850px;
    margin: 60px auto;
    padding: 0 20px;
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-body);
}

.article-content h2,
.article-content h3 {
    color: var(--brand-navy);
    font-family: 'Space Grotesk', sans-serif;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content blockquote {
    border-left: 4px solid var(--brand-orange);
    padding: 20px 30px;
    background: #F8FAFC;
    font-style: italic;
    font-size: 20px;
    margin: 40px 0;
    color: var(--brand-navy);
}

.article-toc {
    background: #f8f9fb;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 1px solid var(--border-light);
}