/* Aileron Font Face Declarations */
@font-face {
    font-family: 'Aileron';
    src: url('../fonts/aileron/Aileron-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('../fonts/aileron/Aileron-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Color Palette */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-accent: #55869E;
    
    /* RGB Values */
    --rgb-black: rgb(0, 0, 0);
    --rgb-white: rgb(255, 255, 255);
    --rgb-accent: rgb(85, 134, 158);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-black);
    background-color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   HEADER / NAVIGATION - Bootstrap v5
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border: none;
    border-bottom: none;
}

.main-header .navbar {
    background: transparent !important;
    backdrop-filter: none;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none;
    padding: 18px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled .navbar {
    background: rgba(10, 18, 22, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.main-header .container {
    max-width: 1400px;
    padding: 0 50px;
    border: none !important;
    border-bottom: none !important;
}

.main-header .navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    height: 50px;
}

.main-header .navbar-brand:hover {
    opacity: 0.8;
}

.main-header .logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(1.1);
    object-fit: contain;
    transition: filter 0.3s ease;
}

.main-header.scrolled .logo-img {
    filter: brightness(0) invert(1);
}

.main-header .navbar-nav {
    gap: 0;
}

.main-header .nav-item {
    margin: 0 8px;
    position: relative;
}

.main-header .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 8px 12px !important;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
    position: relative;
    white-space: nowrap;
}

.main-header .nav-link:not(.nav-submenu-parent)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.main-header .nav-link:hover {
    color: var(--color-white) !important;
}

.main-header .nav-link:not(.nav-submenu-parent):hover::after {
    width: calc(100% - 24px);
}

/* Primary dropdown (Bootstrap + wp_nav_menu submenus) */
.main-header .navbar-nav .dropdown-menu {
    margin-top: 10px;
    padding: 10px 0;
    min-width: 220px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(13, 24, 32, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.main-header .navbar-nav .dropdown-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88) !important;
    padding: 10px 18px !important;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.main-header .navbar-nav .dropdown-item:hover,
.main-header .navbar-nav .dropdown-item:focus {
    background: rgba(85, 134, 158, 0.22) !important;
    color: var(--color-white) !important;
}

.main-header .navbar-nav .dropdown-item.active,
.main-header .navbar-nav .dropdown-item:active {
    background: rgba(85, 134, 158, 0.35) !important;
    color: var(--color-white) !important;
}

.main-header .navbar-nav > .nav-item.dropdown {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.main-header .nav-link.nav-submenu-parent {
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
    box-sizing: border-box;
    width: fit-content;
    max-width: 100%;
}

/* Full BS5-style caret; parent/remote rules often zero width/height on .nav-link::after */
.main-header .navbar .nav-link.nav-submenu-parent::after {
    display: inline-block !important;
    flex-shrink: 0 !important;
    margin-top: 0 !important;
    margin-left: 0.35em !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    vertical-align: 0.2em !important;
    content: "" !important;
    width: 0 !important;
    height: 0 !important;
    box-sizing: border-box !important;
    background: none !important;
    background-image: none !important;
    position: static !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    border-style: solid !important;
    border-top: 0.3em solid rgba(255, 255, 255, 0.85) !important;
    border-right: 0.3em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.3em solid transparent !important;
}

/* Third-level and deeper (nested under a dropdown item) */
.main-header .navbar-nav .nav-nested-submenu {
    list-style: none;
    margin: 6px 0 0;
    padding: 8px 0 0 12px;
    border-left: 2px solid rgba(85, 134, 158, 0.35);
}

.main-header .navbar-nav .nav-nested-submenu .dropdown-item {
    font-size: 0.85rem;
    padding: 8px 14px !important;
    white-space: normal;
}

.main-header .nav-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #4a7a8e 100%) !important;
    color: var(--color-white) !important;
    padding: 12px 24px 12px 26px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    margin-left: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 20px rgba(85, 134, 158, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.main-header .nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.main-header .nav-cta:hover::before {
    left: 100%;
}

.main-header .nav-cta::after {
    display: none !important;
}

.main-header .nav-cta:hover {
    background: linear-gradient(135deg, #5f95aa 0%, var(--color-accent) 100%) !important;
    color: var(--color-white) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 32px rgba(85, 134, 158, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.main-header .nav-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.35s ease, background 0.35s ease;
}

.main-header .nav-cta:hover .nav-cta-icon {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.3);
}

.main-header .nav-cta-icon svg {
    display: block;
}

.main-header .navbar-toggler {
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
}

.main-header .navbar-toggler:focus {
    box-shadow: 0 0 0 0.1rem rgba(85, 134, 158, 0.25);
}

.main-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-header .navbar-collapse {
    margin-top: 0;
}

/* Desktop lg+: clickable parent links; submenu on hover/focus-within (no Bootstrap Dropdown JS) */
@media (min-width: 992px) {
    .main-header .navbar-expand-lg .navbar-nav > .nav-item.dropdown > .dropdown-menu {
        display: none !important;
        position: absolute;
        left: 0;
        right: auto;
        top: calc(100% + 8px);
        margin-top: 0 !important;
        transform: none !important;
        z-index: 1025;
        float: none;
    }

    .main-header .navbar-expand-lg .navbar-nav > .nav-item.dropdown:hover > .dropdown-menu,
    .main-header .navbar-expand-lg .navbar-nav > .nav-item.dropdown:focus-within > .dropdown-menu {
        display: block !important;
    }

    /* Invisible hover bridge above the panel — avoids submenu closing when crossing parent-to-panel gap */
    .main-header .navbar-expand-lg .navbar-nav > .nav-item.dropdown > .dropdown-menu::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 100%;
        height: 12px;
    }

    .main-header .jim-submenu-toggle {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .main-header #navbarNav.navbar-collapse {
        background: linear-gradient(
            180deg,
            rgba(10, 18, 22, 0.97) 0%,
            rgba(8, 14, 18, 0.98) 100%
        );
        margin-top: 12px;
        padding: 8px 0 14px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
        max-height: min(78vh, 520px);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-header .navbar-nav {
        align-items: stretch !important;
        width: 100%;
        gap: 0;
    }

    .main-header .navbar-nav > .nav-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .main-header .nav-item {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    /* Dropdown row: link (navigate) + tap target to expand submenu */
    .main-header .navbar-nav > .nav-item.dropdown {
        width: 100%;
        flex: 0 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 52px;
        grid-template-rows: auto 0fr;
        align-items: stretch;
        column-gap: 0;
        transition: grid-template-rows 0.34s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-header .navbar-nav > .nav-item.dropdown.submenu-expanded {
        grid-template-rows: auto 1fr;
    }

    .main-header .navbar-nav > .nav-item.dropdown > .nav-submenu-parent {
        grid-column: 1;
        grid-row: 1;
        justify-self: stretch;
        align-self: center;
        min-height: 50px;
    }

    .main-header .navbar-nav > .nav-item.dropdown > .jim-submenu-toggle {
        grid-column: 2;
        grid-row: 1;
        align-self: stretch;
        justify-self: stretch;
    }

    .main-header .navbar-nav > .nav-item.dropdown > .dropdown-menu {
        grid-column: 1 / -1;
        grid-row: 2;
        min-height: 0;
    }

    /* Chevron belongs on toggle button — not duplicated on label */
    .main-header #navbarNav .navbar-nav > .nav-item.dropdown > .nav-link.nav-submenu-parent::after {
        display: none !important;
        content: none !important;
        border: none !important;
    }

    .main-header .nav-link.nav-submenu-parent {
        display: flex !important;
        align-items: center;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 14px 16px !important;
    }

    .main-header .nav-link {
        padding: 14px 18px !important;
    }

    .main-header .nav-link:not(.nav-submenu-parent)::after {
        left: 18px;
        transform: none;
    }

    .main-header .nav-link:not(.nav-submenu-parent):hover::after {
        width: calc(100% - 36px);
    }

    .main-header .jim-submenu-toggle {
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        cursor: pointer;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        min-height: 50px;
        background: rgba(255, 255, 255, 0.04);
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.9);
        transition: background 0.2s ease, color 0.2s ease;
    }

    .main-header .jim-submenu-toggle:active,
    .main-header .jim-submenu-toggle:hover {
        background: rgba(85, 134, 158, 0.2);
        color: var(--color-white);
    }

    .main-header .jim-submenu-toggle:focus-visible {
        outline: 2px solid var(--color-accent);
        outline-offset: -4px;
    }

    /* Chevron (rotates when open — matches rotated border trick) */
    .main-header .jim-submenu-toggle::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        margin-top: -2px;
        border-style: solid;
        border-width: 6px 5px 0 5px;
        border-color: rgba(255, 255, 255, 0.85) transparent transparent transparent;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: 50% 35%;
        transform: rotate(0deg);
    }

    .main-header .nav-item.dropdown.submenu-expanded > .jim-submenu-toggle::after {
        transform: rotate(180deg);
    }

    .main-header .navbar-nav .dropdown-menu {
        overflow: hidden;
        visibility: visible;
        position: relative !important;
        transform: none !important;
        float: none;
        margin-top: 0;
        margin-left: 8px;
        margin-right: 8px;
        margin-bottom: 12px;
        width: calc(100% - 16px);
        max-width: 100%;
        min-width: 0;
        border-radius: 10px;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
        border: none;
        background: rgba(0, 0, 0, 0.28);
        padding: 0;
        opacity: 0;
        max-height: 0;
        pointer-events: none;
        transition: max-height 0.34s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, padding 0.25s ease, margin-bottom 0.25s ease;
    }

    .main-header .navbar-nav > .nav-item.dropdown.submenu-expanded > .dropdown-menu {
        display: block !important;
        opacity: 1;
        max-height: min(62vh, 420px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        pointer-events: auto;
        padding: 8px 0;
        margin-bottom: 10px;
    }

    .main-header .navbar-nav > .nav-item.dropdown:not(.submenu-expanded) > .dropdown-menu {
        margin-bottom: 0;
    }

    .main-header .navbar-nav .dropdown-item {
        white-space: normal;
        padding: 12px 18px !important;
        border-radius: 6px;
        margin: 1px 6px;
        font-size: 0.875rem;
    }

    .main-header .navbar-nav .dropdown-item:active {
        background: rgba(85, 134, 158, 0.28) !important;
    }

    .main-header .navbar-nav .nav-nested-submenu {
        margin-top: 4px;
        padding: 4px 0 8px 12px;
        border-left: 2px solid rgba(85, 134, 158, 0.28);
        margin-left: 10px;
    }

    .main-header .nav-cta {
        margin: 14px 16px 4px;
        width: calc(100% - 32px);
        justify-content: center;
        display: flex !important;
        box-sizing: border-box;
    }
}

/* ============================================
   HERO SECTION - PREMIUM DESIGN
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    background: #0d1820;
}

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

.hero-section .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(85, 134, 158, 0.18) 0%, transparent 50%),
        linear-gradient(180deg, rgba(85, 134, 158, 0.9) 0%, rgba(13, 24, 32, 0.4) 40%, rgba(13, 24, 32, 0.75) 100%);
    z-index: 1;
}

.hero-section .animated-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(85, 134, 158, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(85, 134, 158, 0.8);
    animation: floatParticle 15s infinite ease-in-out;
}

.hero-section .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-section .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
}

.hero-section .particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 6s;
}

.hero-section .particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: 9s;
}

.hero-section .particle:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: 12s;
}

.hero-section .glowing-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-section .glow-line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(85, 134, 158, 0.3) 50%, 
        transparent 100%);
    height: 1px;
    animation: glowLine 8s infinite ease-in-out;
}

.hero-section .line-1 {
    top: 20%;
    left: -100%;
    width: 300px;
    animation-delay: 0s;
}

.hero-section .line-2 {
    top: 50%;
    right: -100%;
    width: 400px;
    animation-delay: 2s;
}

.hero-section .line-3 {
    bottom: 30%;
    left: -100%;
    width: 250px;
    animation-delay: 4s;
}

.hero-section .hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 80px;
}

.hero-section .hero-row {
    min-height: calc(100vh - 200px);
}

.hero-section .hero-content-col {
    display: flex;
    align-items: center;
}

.hero-section .hero-content {
    position: relative;
}

.hero-section .hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-section .hero-headline {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4.75rem);
    line-height: 1.12;
    margin-bottom: 24px;
    color: var(--color-white);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-section .hero-headline .gradient-highlight {
    color: var(--color-accent);
    background: linear-gradient(135deg, #6ba3bd 0%, #ffffff 50%, #7eb8d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    text-shadow: none;
}

.hero-section .hero-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    line-height: 1.7;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 540px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.35s both;
}

.hero-section .hero-subheading .bold-highlight {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
}

.hero-section .hero-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-section .btn-primary-cta,
.hero-section .btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-section .btn-primary-cta {
    background: linear-gradient(135deg, #5f8fa3 0%, var(--color-accent) 100%);
    color: var(--color-white);
    box-shadow: 0 12px 36px rgba(85, 134, 158, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.hero-section .btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.6s;
}

.hero-section .btn-primary-cta:hover::before {
    left: 100%;
}

.hero-section .btn-primary-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(85, 134, 158, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    text-decoration: none;
    color: var(--color-white);
}

.hero-section .btn-primary-cta svg {
    transition: transform 0.4s ease;
}

.hero-section .btn-primary-cta:hover svg {
    transform: translateX(5px);
}

.hero-section .btn-secondary-cta {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-section .btn-secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease;
    z-index: -1;
}

.hero-section .btn-secondary-cta:hover::before {
    width: 100%;
}

.hero-section .btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: var(--color-white);
}

.hero-section .btn-secondary-cta:hover svg {
    transform: translateX(5px);
}

.hero-section .hero-trust-line {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    max-width: 480px;
    animation: fadeInUp 0.8s ease-out 0.65s both;
}

.hero-section .trust-item {
    transition: color 0.3s ease;
}

.hero-section .trust-item:hover {
    color: rgba(255, 255, 255, 0.95);
}

.hero-section .trust-separator {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

.hero-section .hero-visual-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 600px;
    padding: 20px;
}

.hero-section .hero-visual-layer {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 100%;
    min-height: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    padding: 20px;
}

.hero-section .banner-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 
                0 0 0 1px rgba(255, 255, 255, 0.06),
                0 0 60px -15px rgba(85, 134, 158, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInScale 0.9s ease-out both;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
    min-height: 280px;
}

.hero-section .banner-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(85, 134, 158, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.hero-section .banner-image-wrapper:hover::after {
    opacity: 1;
}

.hero-section .banner-image-wrapper:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(85, 134, 158, 0.5),
                0 0 0 2px rgba(85, 134, 158, 0.4);
    z-index: 10;
}

.hero-section .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.hero-section .banner-image-wrapper:hover .banner-image {
    transform: scale(1.12);
}

.hero-section .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.hero-section .banner-image-wrapper:hover .image-overlay {
    opacity: 0.2;
}

.hero-section .img-1 {
    grid-column: 1;
    grid-row: 1;
    animation-delay: 0.25s;
}

.hero-section .img-2 {
    grid-column: 2;
    grid-row: 1;
    animation-delay: 0.4s;
    margin-top: 20px;
}

.hero-section .img-3 {
    grid-column: 1;
    grid-row: 2;
    animation-delay: 0.55s;
    margin-top: -20px;
}

.hero-section .img-4 {
    grid-column: 2;
    grid-row: 2;
    animation-delay: 0.7s;
}

.hero-section .scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeIn 1.2s ease-out 1s both;
}

.hero-section .mouse {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(85, 134, 158, 0.2);
}

.hero-section .wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.hero-section .arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin: -4px 0;
    animation: arrowDown 2s infinite;
}

.hero-section .arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-section .arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(50px, -50px) scale(1.5);
        opacity: 1;
    }
}

@keyframes glowLine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes arrowDown {
    0%, 20% {
        opacity: 0;
        transform: rotate(45deg) translateY(-10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translateY(10px);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero-section .hero-headline {
        font-size: 3.25rem;
    }
    
    .hero-section .hero-subheading {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .main-header .container {
        padding: 0 30px;
        border: none !important;
        border-bottom: none !important;
    }
    
    .main-header .navbar {
        padding: 16px 0;
    }
    
    .main-header .navbar-brand {
        height: 42px;
    }
    
    .main-header .logo-img {
        height: 42px;
    }
    
    .hero-section .hero-container {
        padding: 120px 30px 60px;
    }
    
    .hero-section .hero-headline {
        font-size: 2.75rem;
    }
    
    .hero-section .hero-subheading {
        font-size: 1.15rem;
        max-width: 100%;
    }
    
    .hero-section .hero-visual-col {
        min-height: 550px;
        margin-top: 60px;
        padding: 20px 15px;
    }
    
    .hero-section .hero-visual-layer {
        min-height: 550px;
        max-width: 100%;
        gap: 18px;
        padding: 15px;
    }
    
    .hero-section .banner-image-wrapper {
        min-height: 240px;
    }
    
    .hero-section .img-2 {
        margin-top: 15px;
    }
    
    .hero-section .img-3 {
        margin-top: -15px;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        padding: 0 20px;
        border: none !important;
        border-bottom: none !important;
    }
    
    .main-header .navbar {
        padding: 14px 0;
    }
    
    .main-header .navbar-brand {
        height: 38px;
    }
    
    .main-header .logo-img {
        height: 38px;
    }
    
    .hero-section .hero-container {
        padding: 100px 20px 40px;
    }
    
    .hero-section .hero-headline {
        font-size: 2.25rem;
        margin-bottom: 22px;
    }
    
    .hero-section .hero-subheading {
        font-size: 1.05rem;
        margin-bottom: 32px;
    }
    
    .hero-section .hero-cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-section .btn-primary-cta,
    .hero-section .btn-secondary-cta {
        width: 100%;
        justify-content: center;
    }
    
    .hero-section .hero-trust-line {
        font-size: 0.875rem;
        justify-content: center;
        text-align: center;
    }
    
    .hero-section .hero-visual-col {
        min-height: 500px;
        margin-top: 40px;
        padding: 15px 10px;
    }
    
    .hero-section .hero-visual-layer {
        min-height: 500px;
        max-width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 15px;
        padding: 15px;
    }
    
    .hero-section .banner-image-wrapper {
        min-height: 200px;
        width: 100%;
    }
    
    .hero-section .img-1,
    .hero-section .img-2,
    .hero-section .img-3,
    .hero-section .img-4 {
        grid-column: 1 !important;
        margin-top: 0 !important;
    }
    
    .hero-section .img-1 {
        grid-row: 1;
    }
    
    .hero-section .img-2 {
        grid-row: 2;
    }
    
    .hero-section .img-3 {
        grid-row: 3;
    }
    
    .hero-section .img-4 {
        grid-row: 4;
    }
}

@media (max-width: 576px) {
    .main-header .container {
        padding: 0 15px;
        border: none !important;
        border-bottom: none !important;
    }
    
    .main-header .navbar {
        padding: 12px 0;
    }
    
    .main-header .navbar-brand {
        height: 35px;
    }
    
    .main-header .logo-img {
        height: 35px;
    }
    
    .hero-section .hero-container {
        padding: 90px 15px 30px;
    }
    
    .hero-section .hero-headline {
        font-size: 1.875rem;
    }
    
    .hero-section .hero-subheading {
        font-size: 1rem;
    }
    
    .hero-section .btn-primary-cta,
    .hero-section .btn-secondary-cta {
        padding: 16px 32px;
        font-size: 0.9rem;
    }
    
    .hero-section .hero-visual-layer {
        min-height: auto;
        gap: 12px;
        padding: 12px;
    }
    
    .hero-section .banner-image-wrapper {
        border-radius: 16px;
        min-height: 180px;
    }
}

/* ============================================
   ABOUT JIM DIGITAL SERVICES SECTION - PREMIUM
   ============================================ */

.about-jim-section {
    position: relative;
    padding: 140px 0;
    background: #FAFAFA;
    overflow: visible;
}

.about-jim-section .about-jim-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(85, 134, 158, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(85, 134, 158, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-jim-section .container {
    position: relative;
    z-index: 1;
}

.about-jim-section .about-jim-content {
    padding-right: 60px;
}

.about-jim-section .about-jim-label-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.about-jim-section .about-jim-label-line {
    width: 50px;
    height: 2px;
    background: var(--color-accent);
    display: block;
}

.about-jim-section .about-jim-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
}

.about-jim-section .about-jim-headline {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.15;
    color: var(--color-black);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.about-jim-section .about-jim-lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 1.75;
    color: #2a2a2a;
    margin-bottom: 24px;
    font-weight: 400;
}

.about-jim-section .about-jim-lead > p:first-child {
    margin-top: 0;
}

.about-jim-section .about-jim-lead > p:last-child {
    margin-bottom: 0;
}

.about-jim-section .about-jim-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-jim-section .about-jim-text > p:first-child {
    margin-top: 0;
}

.about-jim-section .about-jim-text > p:last-child {
    margin-bottom: 0;
}

.about-jim-section .about-jim-services-grid.about-jim-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.about-jim-section .about-jim-service-card.about-jim-stat-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 28px 22px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-jim-section .about-jim-service-card.about-jim-stat-card {
    color: inherit;
}

.about-jim-section .about-jim-service-card.about-jim-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(85, 134, 158, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.about-jim-section .about-jim-stat-card .service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(85, 134, 158, 0.12);
    color: var(--color-accent);
    font-size: 1.6rem;
    flex-shrink: 0;
}

.about-jim-section .about-jim-stat-card .service-card-icon i {
    line-height: 1;
}

.about-jim-section .about-jim-stat-card .service-card-icon-fallback {
    font-family: 'Aileron', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--color-accent);
    line-height: 1;
}

.about-jim-section .about-jim-stat-card .service-card-content {
    width: 100%;
}

.about-jim-section .about-jim-stat-card .service-card-title {
    font-family: 'Aileron', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-jim-section .about-jim-stat-card .service-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    line-height: 1.65;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
}

.about-jim-section .about-jim-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.about-jim-section .about-partner-logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 14px;
    margin-bottom: 50px;
    max-width: 520px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(85, 134, 158, 0.06);
    border: 1px solid rgba(85, 134, 158, 0.12);
}

.about-jim-section .about-partner-logo {
    height: 38px;
    width: 100%;
    max-width: none;
    object-fit: contain;
    display: block;
    opacity: 0.9;
    filter: saturate(0.9) contrast(1.05);
    transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
    justify-self: center;
}

.about-jim-section .about-partner-logo:where([src=""]) {
    display: none;
}

.about-jim-section .about-partner-logo:hover {
    opacity: 1;
    filter: saturate(1) contrast(1.1);
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .about-jim-section .about-partner-logos {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 10px;
    }

    .about-jim-section .about-partner-logo {
        height: 40px;
    }
}

.about-jim-section .btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--color-accent);
    position: relative;
    overflow: hidden;
}

.about-jim-section .btn-about-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.about-jim-section .btn-about-primary:hover::before {
    left: 100%;
}

.about-jim-section .btn-about-primary:hover {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.about-jim-section .btn-about-primary svg {
    transition: transform 0.4s ease;
}

.about-jim-section .btn-about-primary:hover svg {
    transform: translateX(4px);
}

.about-jim-section .btn-about-outline {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--color-black);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--color-black);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.about-jim-section .btn-about-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-black);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.about-jim-section .btn-about-outline:hover {
    color: var(--color-white);
    border-color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-jim-section .btn-about-outline:hover::before {
    width: 100%;
}

.about-jim-section .about-jim-image-col {
    margin-bottom: 40px;
    position: relative;
}

.about-jim-section .about-jim-image-wrap {
    position: sticky;
    top: 110px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.5s ease;
}

.about-jim-section .about-jim-image-wrap:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.about-jim-section .about-jim-image-decor {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    filter: blur(40px);
}

.about-jim-section .about-jim-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.about-jim-section .about-jim-image-stack {
    width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: row;
    z-index: 1;
}

.about-jim-section .about-jim-image-stack-img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    top: auto;
    left: auto;
    border-radius: 0;
}

.about-jim-section .about-jim-collage-img-1 {
    z-index: 1;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 24px 0 0 24px;
}

.about-jim-section .about-jim-collage-img-2 {
    width: 50%;
    height: 100%;
    top: auto;
    left: auto;
    transform: none;
    z-index: 1;
    border-radius: 0 24px 24px 0;
    box-shadow: none;
    border: none;
}

@media (max-width: 991.98px) {
    .about-jim-section .about-jim-collage-img-1 {
        border-radius: 24px 0 0 24px;
    }

    .about-jim-section .about-jim-collage-img-2 {
        border-radius: 0 24px 24px 0;
    }
}

@media (max-width: 576px) {
    .about-jim-section .about-jim-collage-img-1 {
        border-radius: 24px 0 0 24px;
    }

    .about-jim-section .about-jim-collage-img-2 {
        border-radius: 0 24px 24px 0;
    }
}

.about-jim-section .about-jim-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(85, 134, 158, 0.05) 0%, 
        transparent 50%, 
        rgba(0, 0, 0, 0.05) 100%);
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 992px) {
    .about-jim-section .about-jim-image-col {
        margin-bottom: 0;
    }
}

@media (max-width: 1200px) {
    .about-jim-section .about-jim-content {
        padding-right: 40px;
    }
    
    .about-jim-section .about-jim-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .about-jim-section {
        padding: 80px 0;
    }
    
    .about-jim-section .about-jim-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .about-jim-section .about-jim-headline {
        font-size: 2.25rem;
    }
    
    .about-jim-section .about-jim-lead {
        font-size: 1.1rem;
    }
    
    .about-jim-section .about-jim-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-jim-section .about-jim-image,
    .about-jim-section .about-jim-image-stack {
        height: 500px;
    }
    
    .about-jim-section .about-jim-image-wrap {
        transform: none;
    }
    
    .about-jim-section .about-jim-image-wrap:hover {
        transform: scale(1.01);
    }
}

@media (max-width: 768px) {
    .about-jim-section {
        padding: 60px 0;
    }
    
    .about-jim-section .about-jim-headline {
        font-size: 2rem;
    }
    
    .about-jim-section .about-jim-lead {
        font-size: 1.05rem;
    }
    
    .about-jim-section .about-jim-image,
    .about-jim-section .about-jim-image-stack {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .about-jim-section {
        padding: 50px 0;
    }
    
    .about-jim-section .about-jim-headline {
        font-size: 1.75rem;
    }
    
    .about-jim-section .about-jim-services-grid {
        gap: 12px;
    }
    
    .about-jim-section .about-jim-service-card {
        padding: 20px;
    }
    
    .about-jim-section .about-jim-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .about-jim-section .btn-about-primary,
    .about-jim-section .btn-about-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .about-jim-section .about-jim-image,
    .about-jim-section .about-jim-image-stack {
        height: 350px;
    }
}

/* ============================================
   SOCIAL PROOF SECTION - COMPANY LOGOS
   ============================================ */

.social-proof-section {
    background: #000000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.social-proof-section .social-proof-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(85, 134, 158, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(85, 134, 158, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.social-proof-section .container {
    position: relative;
    z-index: 1;
}

.social-proof-section .social-proof-content-col {
    padding-right: 60px;
}

.social-proof-section .social-proof-label-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.social-proof-section .social-proof-label-line {
    width: 50px;
    height: 2px;
    background: var(--color-accent);
    display: block;
}

.social-proof-section .social-proof-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
}

.social-proof-section .social-proof-headline {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.social-proof-section .social-proof-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-proof-section .social-proof-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.social-proof-section .social-proof-logos-col {
    padding-left: 40px;
}

.social-proof-section .social-proof-supporting {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.social-proof-section .social-proof-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.social-proof-section .logo-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-proof-section .logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.social-proof-section .logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(85, 134, 158, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.social-proof-section .logo-card:hover::before {
    transform: scaleX(1);
}

.social-proof-section .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 60px;
}

.social-proof-section .company-logo {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.social-proof-section .logo-card:hover .company-logo {
    filter: brightness(0) invert(1);
    transform: scale(1.08);
}

@media (max-width: 1200px) {
    .social-proof-section .social-proof-content-col {
        padding-right: 40px;
    }
    
    .social-proof-section .social-proof-logos-col {
        padding-left: 30px;
    }
    
    .social-proof-section .social-proof-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .social-proof-section {
        padding: 80px 0;
    }
    
    .social-proof-section .social-proof-content-col {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .social-proof-section .social-proof-logos-col {
        padding-left: 0;
    }
    
    .social-proof-section .social-proof-headline {
        font-size: 2.25rem;
    }
    
    .social-proof-section .social-proof-subheading {
        font-size: 1.15rem;
    }
    
    .social-proof-section .social-proof-body {
        font-size: 1.05rem;
    }
    
    .social-proof-section .social-proof-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .social-proof-section .logo-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .social-proof-section {
        padding: 60px 0;
    }
    
    .social-proof-section .social-proof-headline {
        font-size: 2rem;
    }
    
    .social-proof-section .social-proof-subheading {
        font-size: 1.1rem;
    }
    
    .social-proof-section .social-proof-body {
        font-size: 1rem;
    }
    
    .social-proof-section .social-proof-supporting {
        font-size: 0.85rem;
        margin-bottom: 35px;
    }
    
    .social-proof-section .logo-card {
        padding: 18px;
    }
    
    .social-proof-section .company-logo {
        max-height: 45px;
    }
}

@media (max-width: 576px) {
    .social-proof-section {
        padding: 50px 0;
    }
    
    .social-proof-section .social-proof-headline {
        font-size: 1.75rem;
    }
    
    .social-proof-section .social-proof-subheading {
        font-size: 1rem;
    }
    
    .social-proof-section .social-proof-body {
        font-size: 0.95rem;
    }
    
    .social-proof-section .social-proof-logos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .social-proof-section .logo-card {
        padding: 16px;
    }
    
    .social-proof-section .company-logo {
        max-height: 40px;
    }
}

/* ============================================
   SERVICES SECTION - ULTRA PREMIUM
   ============================================ */

.services-section {
    padding: 80px 0;
    background: #001621;
    position: relative;
    overflow: hidden;
}

.services-section .services-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(85, 134, 158, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(85, 134, 158, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(85, 134, 158, 0.05) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section .services-header {
    margin-bottom: 100px;
    max-width: 100%;
    text-align: center;
}

.services-section .services-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}

.services-section .services-label-line {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent) 0%, rgba(85, 134, 158, 0.4) 100%);
    display: block;
    border-radius: 1px;
}

.services-section .services-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent);
}

.services-section .services-kicker {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: clamp(2.25rem, 5.5vw, 3.8rem);
    line-height: 1.08;
    color: #FFFFFF;
    letter-spacing: -0.04em;
    margin: 0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-section .row {
    --services-gap: 28px;
    row-gap: var(--services-gap);
}

.services-section .service-block {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
    padding: 18px;
    background: #000000;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.services-section .service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--color-accent) 0%, rgba(85, 134, 158, 0.7) 100%);
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    border-radius: 0 3px 3px 0;
}

.services-section .service-block:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 12px 24px rgba(85, 134, 158, 0.15), 0 0 0 1px rgba(85, 134, 158, 0.2);
    border-color: rgba(85, 134, 158, 0.25);
}

.services-section .service-block:hover::before {
    height: 100%;
}

.services-section .service-number {
    position: absolute;
    top: 34px;
    right: 34px;
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    z-index: 3;
    transition: color 0.4s ease, transform 0.4s ease, background 0.4s ease;
    pointer-events: none;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.services-section .service-block:hover .service-number {
    color: var(--color-accent);
    background: rgba(85, 134, 158, 0.15);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(85, 134, 158, 0.3);
}

.services-section .service-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    position: relative;
    margin-bottom: 28px;
    border-radius: 14px;
}

.services-section .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-section .service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.services-section .service-block:hover .service-image {
    transform: scale(1.08);
}

.services-section .service-block:hover .service-image-overlay {
    opacity: 0.85;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.25) 100%);
}

.services-section .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 4px;
}

.services-section .service-title {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.4vw, 1.95rem);
    line-height: 1.22;
    color: #FFFFFF;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    text-align: left;
    transition: color 0.3s ease;
}

.services-section .service-block:hover .service-title {
    color: #FFFFFF;
}

.services-section .service-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    text-align: left;
    flex: 1;
}

.services-section .service-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.4s ease, gap 0.4s ease;
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    width: fit-content;
    position: relative;
}

.services-section .service-cta::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), rgba(85, 134, 158, 0.8));
    transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 1px;
}

.services-section .service-cta svg {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.services-section .service-cta:hover {
    color: #FFFFFF;
    gap: 14px;
}

.services-section .service-cta:hover::before {
    width: 100%;
    background: #FFFFFF;
}

.services-section .service-cta:hover svg {
    transform: translateX(6px);
}

@media (max-width: 991px) {
    .services-section {
        padding: 140px 0;
    }

    .services-section .services-header {
        margin-bottom: 72px;
    }

    .services-section .services-label-wrapper {
        margin-bottom: 24px;
    }

    .services-section .service-block {
        padding: 16px;
    }

    .services-section .service-image-wrapper {
        margin-bottom: 24px;
    }

    .services-section .service-desc {
        font-size: 1.05rem;
        margin-bottom: 22px;
    }

    .services-section .service-number {
        top: 30px;
        right: 30px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 120px 0;
    }

    .services-section .services-header {
        margin-bottom: 56px;
    }

    .services-section .service-block {
        padding: 14px;
    }

    .services-section .service-block:hover {
        transform: translateY(-8px);
    }

    .services-section .service-image-wrapper {
        margin-bottom: 20px;
    }

    .services-section .service-title {
        margin-bottom: 12px;
    }

    .services-section .service-desc {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .services-section .service-number {
        top: 26px;
        right: 26px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 100px 0;
    }

    .services-section .services-header {
        margin-bottom: 48px;
    }

    .services-section .services-label-wrapper {
        margin-bottom: 20px;
    }

    .services-section .service-block {
        padding: 14px;
        border-radius: 16px;
    }

    .services-section .service-image-wrapper {
        aspect-ratio: 4 / 3;
        margin-bottom: 18px;
        border-radius: 12px;
    }

    .services-section .service-content {
        padding: 0;
    }

    .services-section .service-desc {
        font-size: 0.9375rem;
    }

    .services-section .service-number {
        top: 24px;
        right: 24px;
        padding: 6px 10px;
        font-size: 0.7rem;
    }
}

/* ============================================
   SERVICES SCROLL SECTION
   ============================================ */

.services-scroll-section {
    padding: 160px 0 180px;
    background: #0a0a0a;
    color: #FFFFFF;
    position: relative;
}

.services-scroll-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(85, 134, 158, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 85% 70%, rgba(85, 134, 158, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 0;
}

.services-scroll-section .container {
    z-index: 1;
    position: relative;
}


.services-scroll-header {
    margin-bottom: 100px;
    max-width: 640px;
    text-align: left;
}

.services-scroll-eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.services-scroll-eyebrow-line {
    display: block;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent) 0%, rgba(85, 134, 158, 0.4) 100%);
    border-radius: 1px;
    flex-shrink: 0;
}

.services-scroll-eyebrow span:last-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent);
}

.services-scroll-title {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin: 0 0 24px 0;
}

.services-scroll-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.services-scroll-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-scroll-item {
    position: relative;
    padding: 60px 28px 60px 36px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.3s ease;
    overflow: hidden;
}

.service-scroll-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-accent);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 0 4px 4px 0;
}

.service-scroll-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-scroll-item.is-inview {
    background: #243a45;
    border-color: rgba(85, 134, 158, 0.35);
    box-shadow: 0 8px 40px rgba(36, 58, 69, 0.4);
}

.service-scroll-item.is-inview:hover {
    background: #2a4552;
    border-color: rgba(85, 134, 158, 0.5);
}

.service-scroll-item:hover::before,
.service-scroll-item.is-inview::before {
    opacity: 1;
}

.service-scroll-category {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--color-accent);
    margin-bottom: 12px;
    padding: 6px 12px;
    background: rgba(85, 134, 158, 0.15);
    border-radius: 6px;
}

.service-scroll-item.is-inview .service-scroll-category {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
}

.service-scroll-headline {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.4vw, 1.875rem);
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    margin: 0 0 14px 0;
}

.service-scroll-item.is-inview .service-scroll-headline {
    color: #FFFFFF;
}

.service-scroll-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 20px 0;
    max-width: 520px;
}

.service-scroll-item.is-inview .service-scroll-desc {
    color: rgba(255, 255, 255, 0.82);
}

.service-scroll-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.service-scroll-item.is-inview .service-scroll-cta {
    color: rgba(255, 255, 255, 0.95);
}

.service-scroll-cta::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

.service-scroll-cta:hover {
    color: #FFFFFF;
    gap: 14px;
}

.service-scroll-cta:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (min-width: 992px) {
    .services-scroll-section .col-lg-6:last-child {
        display: flex;
        align-items: flex-start;
    }
}

.services-scroll-sticky {
    padding-top: 0;
    padding-left: 24px;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .services-scroll-sticky {
        position: sticky;
        top: 100px;
        align-self: flex-start;
        height: fit-content;
        width: 100%;
    }
}

.services-scroll-img-stack {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 420px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 0, 0, 0.3),
        0 0 80px -20px rgba(85, 134, 158, 0.15);
}

.services-scroll-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.services-scroll-img.active {
    opacity: 1;
    pointer-events: auto;
}

.services-scroll-mobile-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.services-scroll-mobile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .services-scroll-section {
        padding: 120px 0 140px;
    }

    .services-scroll-header {
        margin-bottom: 64px;
    }

    .services-scroll-eyebrow {
        margin-bottom: 22px;
    }

    .service-scroll-item {
        padding: 28px 20px 28px 28px;
    }

    .service-scroll-item::before {
        width: 3px;
    }

    .service-scroll-headline {
        font-size: 1.5rem;
    }

    .services-scroll-sticky {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .services-scroll-section {
        padding: 90px 0 110px;
    }

    .services-scroll-header {
        margin-bottom: 48px;
    }

    .services-scroll-title {
        font-size: 2.125rem;
    }

    .service-scroll-item {
        padding: 24px 16px 24px 24px;
    }

    .services-scroll-mobile-img {
        aspect-ratio: 4 / 3;
        margin-bottom: 24px;
        border-radius: 14px;
    }
}

/* ============================================
   CLIENT REVIEW SECTION
   ============================================ */

.client-review-section {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #0f1c24 0%, #0d1820 50%, #0a1218 100%);
    overflow: hidden;
}

.client-review-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(ellipse 60% 35% at 50% 100%, rgba(85, 134, 158, 0.08) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.client-review-section .container {
    position: relative;
    z-index: 1;
}

.client-review-section.client-review-section--light {
    background: #ffffff;
}

.client-review-section.client-review-section--light .client-review-bg {
    background-image: radial-gradient(ellipse 60% 35% at 50% 100%, rgba(85, 134, 158, 0.10) 0%, transparent 55%);
}

.client-review-section.client-review-section--light .client-review-eyebrow {
    background: rgba(85, 134, 158, 0.10);
    border-color: rgba(85, 134, 158, 0.22);
}

.client-review-section.client-review-section--light .client-review-eyebrow span:last-child {
    color: rgba(0, 0, 0, 0.82);
}

.client-review-section.client-review-section--light .client-review-title {
    color: #0a0a0a;
}

.client-review-section.client-review-section--light .client-review-intro {
    color: rgba(0, 0, 0, 0.62);
}

.client-review-section.client-review-section--light .client-review-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.client-review-section.client-review-section--light .client-review-card:hover {
    background: #ffffff;
    border-color: rgba(85, 134, 158, 0.28);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(85, 134, 158, 0.12);
}

.client-review-section.client-review-section--light .client-review-quote {
    color: rgba(0, 0, 0, 0.78);
}

.client-review-section.client-review-section--light .client-review-name {
    color: #0a0a0a;
}

.client-review-section.client-review-section--light .client-review-role {
    color: rgba(0, 0, 0, 0.55);
}

.client-review-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.client-review-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 8px 18px;
    background: rgba(85, 134, 158, 0.15);
    border: 1px solid rgba(85, 134, 158, 0.3);
    border-radius: 50px;
}

.client-review-eyebrow-line {
    width: 24px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}

.client-review-eyebrow span:last-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: rgba(255, 255, 255, 0.95);
}

.client-review-title {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 14px 0;
    letter-spacing: -0.02em;
}

.client-review-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.client-review-card {
    height: 100%;
    padding: 36px 30px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.client-review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 26px;
    font-family: 'Aileron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.2;
    line-height: 1;
}

.client-review-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(85, 134, 158, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(85, 134, 158, 0.15);
}

.client-review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.client-review-stars .star {
    color: #e8b923;
    font-size: 1.125rem;
    letter-spacing: 2px;
}

.client-review-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 28px 0;
    position: relative;
    z-index: 1;
    font-style: normal;
    background-color: transparent;
}

.client-review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.client-review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), #4a7a8e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
    overflow: hidden;
}

.client-review-avatar img {
    height: 100%;
}

.client-review-name {
    display: block;
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    color: #FFFFFF;
    font-style: normal;
    margin-bottom: 4px;
}

.client-review-role {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .client-review-section {
        padding: 90px 0 80px;
    }
    .client-review-header {
        margin-bottom: 44px;
    }
}

@media (max-width: 576px) {
    .client-review-section {
        padding: 70px 0 60px;
    }
    .client-review-header {
        margin-bottom: 36px;
    }
    .client-review-card {
        padding: 28px 22px 26px;
    }
    .client-review-card::before {
        font-size: 3rem;
        top: 16px;
        left: 20px;
    }
}

/* ============================================
   DEFAULT WORDPRESS PAGES (page.php)
   ============================================ */
.page .services-hero-section.default-page-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.page .services-hero-section.default-page-hero .services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page .services-hero-section.default-page-hero .services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(85, 134, 158, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.page .services-hero-section.default-page-hero .container {
    position: relative;
    z-index: 10;
}

.page .services-hero-section.default-page-hero .services-hero-content .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #55869E;
    margin-bottom: 1.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(85, 134, 158, 0.1);
    border: 1px solid rgba(85, 134, 158, 0.25);
    border-radius: 50px;
}

.page .services-hero-section.default-page-hero .services-hero-content .hero-headline {
    font-family: 'Aileron', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0;
}

.default-page-section {
    padding: 90px 0 110px;
    background: #0d1820;
}

.default-page-article {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.25);
}

.default-page-thumbnail img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.default-page-section .entry-content {
    padding: 2rem 2rem 1.75rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.85;
}

.default-page-section .entry-content p {
    margin: 0 0 1.1rem;
}

.default-page-section .entry-content {
    font-family: 'Montserrat', sans-serif;
}

.default-page-section .entry-content h2,
.default-page-section .entry-content h3,
.default-page-section .entry-content h4 {
    color: #ffffff;
    font-family: 'Aileron', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 1.75rem 0 0.75rem;
    line-height: 1.25;
}

.default-page-section .entry-content h2 { font-size: 1.7rem; }
.default-page-section .entry-content h3 { font-size: 1.35rem; }
.default-page-section .entry-content h4 { font-size: 1.15rem; }

.default-page-section .entry-content a {
    color: #79a9c0;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.default-page-section .entry-content a:hover { color: #ffffff; }

.default-page-section .entry-content ul,
.default-page-section .entry-content ol {
    padding-left: 1.2rem;
    margin: 0 0 1.1rem;
}

.default-page-section .entry-content li { margin-bottom: 0.35rem; }

.default-page-section .wp-block-image {
    margin: 1.5rem 0;
}
.default-page-section .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.default-page-section .wp-block-image figcaption {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.default-page-section .wp-block-quote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(85, 134, 158, 0.25);
    background: rgba(85, 134, 158, 0.12);
}
.default-page-section .wp-block-quote p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}
.default-page-section .wp-block-quote cite {
    display: block;
    margin-top: 0.65rem;
    color: rgba(255, 255, 255, 0.65);
    font-style: normal;
    font-weight: 600;
}

.default-page-section .wp-block-separator {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    margin: 1.5rem 0;
}

/* Gutenberg buttons */
.default-page-section .wp-block-button .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}

.default-page-section .wp-block-button .wp-block-button__link:hover {
    background: #0a0a0a;
    border-color: #0a0a0a;
    transform: translateY(-2px);
}

.default-page-section .wp-block-buttons {
    margin: 1.25rem 0 0;
    gap: 12px;
}

.default-page-section .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.98rem;
}
.default-page-section .wp-block-table th,
.default-page-section .wp-block-table td {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 14px;
}
.default-page-section .wp-block-table th {
    background: rgba(255, 255, 255, 0.04);
    font-weight: 800;
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .default-page-section { padding: 70px 0 90px; }
    .default-page-section .entry-content { padding: 1.6rem 1.4rem 1.25rem; }
    .default-page-thumbnail img { height: 320px; }
    .page .services-hero-section.default-page-hero { min-height: auto; padding: 130px 0 70px; }
}

@media (max-width: 576px) {
    .default-page-section { padding: 60px 0 80px; }
    .default-page-section .entry-content { padding: 1.4rem 1.15rem 1.1rem; }
    .default-page-thumbnail img { height: 260px; }
    .page .services-hero-section.default-page-hero { padding: 120px 0 60px; }
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
    position: relative;
    padding: 120px 0 100px;
    background: #0d1820;
    overflow: hidden;
}

.blog-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(85, 134, 158, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

.blog-section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.blog-section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.blog-section-eyebrow-line {
    width: 48px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}

.blog-section-eyebrow span:last-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent);
}

.blog-section-title {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.blog-section-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.blog-card {
    height: 100%;
}

.blog-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(85, 134, 158, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(85, 134, 158, 0.15);
}

.blog-card-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card-link:hover .blog-card-image {
    transform: scale(1.06);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    background: rgba(85, 134, 158, 0.9);
    padding: 6px 12px;
    border-radius: 6px;
}

.blog-card-body {
    padding: 28px 24px 32px;
}

.blog-card-date {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.35;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.blog-card-link:hover .blog-card-title {
    color: var(--color-accent);
}

.blog-card-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.blog-card-link:hover .blog-card-cta {
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
}

.blog-card-cta::after {
    content: '→';
}

.blog-section-footer {
    text-align: center;
    margin-top: 48px;
}

/* ==========================================================================
   SEARCH PAGE - Empty results UI
   ========================================================================== */

.page-blog .no-results.not-found {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.25);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog .no-results.not-found p {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.page-blog .no-results.not-found .search-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.page-blog .no-results.not-found .search-form label {
    display: flex;
    flex: 1;
    margin: 0;
}

.page-blog .no-results.not-found .search-field {
    width: 100%;
    background-color: rgba(6, 12, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
}

.page-blog .no-results.not-found .search-field::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.page-blog .no-results.not-found .search-submit {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-radius: 0;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    border: none;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    min-height: 46px;
}

.page-blog .no-results.not-found .search-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(85, 134, 158, 0.35);
}

@media (max-width: 991.98px) {
    .page-blog .no-results.not-found .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .page-blog .no-results.not-found .search-form label {
        width: 100%;
        flex: unset;
    }
}

.blog-section-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: transparent;
    color: var(--color-accent);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(85, 134, 158, 0.5);
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.blog-section-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-accent);
    transition: width 0.4s ease;
    z-index: -1;
}

.blog-section-view-all:hover {
    color: #FFFFFF;
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(85, 134, 158, 0.3);
}

.blog-section-view-all:hover::before {
    width: 100%;
}

@media (max-width: 991px) {
    .blog-section {
        padding: 90px 0 80px;
    }
    .blog-section-header {
        margin-bottom: 44px;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 70px 0 60px;
    }
    .blog-section-header {
        margin-bottom: 36px;
    }
    .blog-card-body {
        padding: 22px 20px 28px;
    }
    .blog-card-title {
        font-size: 1.125rem;
    }
}

/* ============================================
   SITE FOOTER - DARK PREMIUM AGENCY
   ============================================ */

.main-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 50%, #000000 100%);
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(85, 134, 158, 0.5) 20%, rgba(85, 134, 158, 0.7) 50%, rgba(85, 134, 158, 0.5) 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(85, 134, 158, 0.3);
}

.main-footer a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

.footer-cta-strip {
    background: linear-gradient(135deg, rgba(85, 134, 158, 0.15) 0%, rgba(85, 134, 158, 0.08) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.footer-cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(85, 134, 158, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta-strip > .container {
    position: relative;
    z-index: 1;
}

.footer-cta-title {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: clamp(1.625rem, 2.8vw, 2rem);
    letter-spacing: -0.03em;
    color: #FFFFFF;
    line-height: 1.2;
}

.footer-cta-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    line-height: 1.6;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 0.9375rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, #4a7a8e 100%) !important;
    color: #FFFFFF !important;
    border: none;
    border-radius: 10px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(85, 134, 158, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-cta-btn:hover::before {
    left: 100%;
}

.footer-cta-btn:hover {
    background: linear-gradient(135deg, #4a7a8e 0%, var(--color-accent) 100%) !important;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(85, 134, 158, 0.4);
}

.footer-cta-btn:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

.footer-newsletter-strip {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 100%);
    position: relative;
}

.footer-newsletter-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(85, 134, 158, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-newsletter-strip > .container {
    position: relative;
    z-index: 1;
}

.footer-newsletter-strip .footer-heading {
    margin-bottom: 0.75rem;
}

.footer-newsletter-strip .footer-text {
    color: rgba(255, 255, 255, 0.8);
}

.footer-newsletter-strip .footer-newsletter-form .input-group {
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    display: block;
}

@media (max-width: 991px) {
    .footer-newsletter-strip .footer-newsletter-form .input-group {
        margin-left: auto;
        margin-right: auto;
    }
}

.footer-newsletter-heading::after {
    width: 40px;
}

.footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    padding: 0;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(85, 134, 158, 0.2) 50%, transparent 100%);
}

.footer-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 70% 50% at 15% 25%, rgba(85, 134, 158, 0.1) 0%, transparent 65%),
        radial-gradient(ellipse 60% 60% at 85% 75%, rgba(85, 134, 158, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.footer-main > .container {
    position: relative;
    z-index: 1;
}

.footer-heading {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: 1.3125rem;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.875rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--color-accent) 0%, rgba(85, 134, 158, 0.5) 100%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(85, 134, 158, 0.4);
}

.footer-text {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--color-accent);
    transform: translateX(2px);
}

.footer-newsletter {
    padding-right: 0;
}

.footer-newsletter-form {
    margin-top: 0;
}

.footer-newsletter-strip .footer-newsletter-form {
    margin-top: 0;
}

.footer-newsletter-form .input-group {
    max-width: 480px;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-newsletter-form .input-group:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-newsletter-form .input-group:focus-within {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(85, 134, 158, 0.25), 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-newsletter-input,
.footer-newsletter-form .input-group input[type="email"],
.footer-newsletter-form .input-group input[type="text"] {
    background: transparent !important;
    border: none !important;
    color: #FFFFFF !important;
    font-size: 0.9375rem;
    padding: 18px 22px;
    min-height: 58px;
    flex: 1;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.footer-newsletter-input:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
    background: transparent !important;
}

.footer-newsletter-input:focus-visible {
    outline: none;
}

.footer-newsletter-btn,
.footer-newsletter-form .input-group button,
.footer-newsletter-form .input-group .ff-btn-submit,
.footer-newsletter-form .input-group .ff_submit_btn {
    background: linear-gradient(135deg, var(--color-accent) 0%, #4a7a8e 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 18px 32px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(85, 134, 158, 0.35);
    position: relative;
    overflow: hidden;
}

.footer-newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.footer-newsletter-btn:hover::before {
    left: 100%;
}

.footer-newsletter-btn:hover {
    background: linear-gradient(135deg, #4a7a8e 0%, var(--color-accent) 100%) !important;
    color: #FFFFFF;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(85, 134, 158, 0.45);
}

.footer-newsletter-btn:active {
    transform: translateX(1px);
}

.footer-newsletter-btn:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

/* Fluent Forms overrides for newsletter form */
.footer-newsletter-form .fluentform .ff-el-group,
.footer-newsletter-form form.fluent_form_2 .wpf_has_custom_css.ff-btn-submit {
    margin-bottom: 0;
}
.footer-newsletter-form form.fluent_form_2 .wpf_has_custom_css.ff-btn-submit {
    min-width: 250px;
    max-width: 250px;
    margin-left: auto;
}
.footer-newsletter-form .fluentform .ff-el-is-error .text-danger {
    position: absolute;
    bottom: 0;
    left: 25px;
}

/* Global Fluent Forms label color tweaks */
.ff-default .ff-el-input--label label,
.ff-default .ff-el-form-check label.ff-el-form-check-label {
    color: #ffffff;
}

.footer-logo-img {
    max-height: 56px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo-link {
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
}

.footer-logo-link:hover .footer-logo-img {
    filter: brightness(0) invert(1) brightness(1.1);
    transform: scale(1.03);
}

.footer-brand .footer-text {
    margin-bottom: 2.5rem;
    max-width: 320px;
    font-size: 0.9375rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
}

.footer-social {
    gap: 12px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1875rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-accent);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.footer-social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social-link:hover::before {
    width: 100%;
    height: 100%;
}

.footer-social-link:hover {
    color: #FFFFFF;
    transform: translateY(-4px) scale(1.08);
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(85, 134, 158, 0.4);
}

.footer-social-link:hover i {
    transform: scale(1.1);
}

.footer-social-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.main-footer .menu-footer_menu .menu-item,
.main-footer .menu-copyright_menu .menu-item {
    margin-bottom: 1rem;
}

.main-footer .menu-footer_menu .menu-item:last-child,
.main-footer .menu-copyright_menu .menu-item:last-child {
    margin-bottom: 0;
}

.main-footer .menu-footer_menu a,
.main-footer .menu-copyright_menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.main-footer .menu-footer_menu a::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), rgba(85, 134, 158, 0.6));
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 1px;
}

.main-footer .menu-footer_menu a:hover::before {
    width: 10px;
}

.main-footer .menu-footer_menu a:hover,
.main-footer .menu-copyright_menu a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-contact address {
    font-style: normal;
    line-height: 2.2;
}

.footer-contact .footer-link {
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    padding: 4px 0;
    position: relative;
}

.footer-contact .footer-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.footer-contact .footer-link:hover::after {
    width: 100%;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links .footer-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 0;
}

.footer-links .footer-link::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), rgba(85, 134, 158, 0.6));
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 1px;
}

.footer-links .footer-link:hover::before {
    width: 10px;
}

.footer-bottom {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(85, 134, 158, 0.25) 50%, transparent 100%);
}

.footer-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 100% 30% at 50% 0%, rgba(85, 134, 158, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.footer-bottom > .container {
    position: relative;
    z-index: 1;
}

.footer-copyright,
.main-footer .menu-copyright_menu a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8125rem;
    transition: color 0.3s ease;
}

.main-footer .menu-copyright_menu a {
    position: relative;
    padding: 4px 0;
}

.main-footer .menu-copyright_menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.main-footer .menu-copyright_menu a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.main-footer .menu-copyright_menu a:hover::after {
    width: 100%;
}

@media (max-width: 991px) {
    .footer-cta-strip .row {
        text-align: center;
    }
    
    .footer-cta-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .footer-newsletter-strip {
        text-align: center;
    }
    
    .footer-newsletter-strip .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-newsletter-form .input-group {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .footer-main .row {
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
    
    .footer-brand .footer-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-nav .menu-footer_menu {
        text-align: center;
    }
    
    .footer-nav .menu-footer_menu a::before {
        display: none;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links .footer-link::before {
        display: none;
    }
    
    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-cta-strip .row {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .footer-cta-title {
        font-size: 1.375rem;
    }
    
    .footer-newsletter-strip .row {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .footer-main .row {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .footer-heading {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.625rem;
    }
    
    .footer-heading::after {
        width: 28px;
        left: 0;
        right: 0;
        margin: auto;
    }
    
    .footer-newsletter-input,
    .footer-newsletter-btn {
        min-height: 52px;
        padding: 16px 20px;
    }
    
    .footer-newsletter-btn {
        padding: 16px 24px;
    }
    
    .footer-bottom {
        padding: 28px 0;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-copyright {
        margin-bottom: 0.875rem;
    }
    
    .main-footer .menu-copyright_menu {
        justify-content: center;
    }
    
    .footer-social-link {
        width: 44px;
        height: 44px;
        font-size: 1.0625rem;
    }
    
    .footer-brand .footer-text {
        margin-bottom: 1.75rem;
    }
}

/* ==========================================================================
   INNER PAGES - HEADER LOGO WHITE
   ========================================================================== */

/* Inner page header - logo always white */
body.inner-page .main-header .logo-img,
.page-services .main-header .logo-img {
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   SERVICES PAGE STYLES (Scoped under .page-services)
   ========================================================================== */

/* --- Services Hero Section --- */
.page-services .services-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.page-services .services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(15, 20, 25, 0.9) 40%, rgba(10, 22, 40, 0.85) 100%),
                url('../img/services-hero-bg.jpg') center center / cover no-repeat;
    z-index: 0;
}

.page-services .services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(85, 134, 158, 0.1) 0%, transparent 40%);
    z-index: 1;
}

/* Floating Elements */
.page-services .hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.page-services .floating-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(85, 134, 158, 0.2);
    animation: servicesFloatCircle 20s ease-in-out infinite;
}

.page-services .floating-circle.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.page-services .floating-circle.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -50px;
    animation-delay: -5s;
}

.page-services .floating-circle.circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    border-color: rgba(85, 134, 158, 0.1);
    animation-delay: -10s;
}

.page-services .floating-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(85, 134, 158, 0.4), transparent);
    animation: servicesFloatLine 15s ease-in-out infinite;
}

.page-services .floating-line.line-1 {
    width: 300px;
    top: 30%;
    left: 5%;
    transform: rotate(45deg);
}

.page-services .floating-line.line-2 {
    width: 200px;
    bottom: 20%;
    right: 15%;
    transform: rotate(-30deg);
    animation-delay: -7s;
}

@keyframes servicesFloatCircle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(0, -30px) rotate(180deg); }
    75% { transform: translate(-20px, -10px) rotate(270deg); }
}

@keyframes servicesFloatLine {
    0%, 100% { opacity: 0.3; transform: translateX(0) rotate(45deg); }
    50% { opacity: 0.6; transform: translateX(50px) rotate(45deg); }
}

.page-services .services-hero-section .container {
    position: relative;
    z-index: 10;
}

.page-services .services-hero-content {
    text-align: left;
}

.page-services .services-hero-content .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #55869E;
    margin-bottom: 1.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(85, 134, 158, 0.1);
    border: 1px solid rgba(85, 134, 158, 0.25);
    border-radius: 50px;
}

.page-services .services-hero-content .hero-eyebrow i {
    font-size: 1rem;
}

.page-services .services-hero-content .hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.page-services .services-hero-content .hero-subheading {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* Hero CTA Row */
.page-services .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.page-services .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(85, 134, 158, 0.3);
}

.page-services .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(85, 134, 158, 0.5);
    color: #ffffff;
}

.page-services .btn-hero-primary i {
    transition: transform 0.3s ease;
}

.page-services .btn-hero-primary:hover i {
    transform: translateX(5px);
}

.page-services .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-services .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.page-services .btn-hero-secondary i {
    font-size: 1.25rem;
    color: #55869E;
}

/* --- Hero Stats Grid --- */
.page-services .services-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.page-services .stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.page-services .stat-card:hover {
    background: rgba(85, 134, 158, 0.1);
    border-color: rgba(85, 134, 158, 0.3);
    transform: translateY(-5px);
}

.page-services .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(85, 134, 158, 0.2) 0%, rgba(85, 134, 158, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.page-services .stat-icon i {
    font-size: 1.25rem;
    color: #55869E;
}

.page-services .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 5px;
}

.page-services .stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Services Listing Section --- */
.page-services .services-listing-section {
    padding: 100px 0 120px;
    background: #0a0a0a;
    position: relative;
}

.page-services .services-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.page-services .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #55869E;
    margin-bottom: 1rem;
}

.page-services .section-tag i {
    font-size: 1rem;
}

.page-services .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-services .section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Services Zig-Zag Layout --- */
.page-services .services-zigzag {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.page-services .service-zigzag-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    padding-bottom: 100px;
}

/* Service Item Separator */
.page-services .service-zigzag-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(85, 134, 158, 0.3) 20%, 
        rgba(85, 134, 158, 0.5) 50%, 
        rgba(85, 134, 158, 0.3) 80%, 
        transparent 100%);
}

/* Center dot on separator */
.page-services .service-zigzag-item::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #55869E;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px rgba(85, 134, 158, 0.5);
}

/* Remove separator from last item */
.page-services .service-zigzag-item:last-child {
    padding-bottom: 0;
}

.page-services .service-zigzag-item:last-child::after,
.page-services .service-zigzag-item:last-child::before {
    display: none;
}

.page-services .service-zigzag-item.reverse {
    direction: rtl;
}

.page-services .service-zigzag-item.reverse > * {
    direction: ltr;
}

/* Service Content */
.page-services .service-zigzag-content {
    position: relative;
}

.page-services .service-zigzag-number {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(85, 134, 158, 0.08);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    z-index: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.page-services .service-zigzag-item:hover .service-zigzag-number {
    color: rgba(85, 134, 158, 0.15);
    transform: scale(1.05);
}

.page-services .service-zigzag-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(85, 134, 158, 0.15) 0%, rgba(85, 134, 158, 0.05) 100%);
    border: 1px solid rgba(85, 134, 158, 0.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.page-services .service-zigzag-item:hover .service-zigzag-icon {
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    border-color: transparent;
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(85, 134, 158, 0.3);
}

.page-services .service-zigzag-icon i {
    font-size: 1.75rem;
    color: #55869E;
    transition: all 0.4s ease;
}

.page-services .service-zigzag-item:hover .service-zigzag-icon i {
    color: #ffffff;
}

.page-services .service-zigzag-title {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.page-services .service-zigzag-desc {
    position: relative;
    z-index: 2;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

/* Service Tags */
.page-services .service-zigzag-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.page-services .service-tag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.page-services .service-zigzag-item:hover .service-tag {
    background: rgba(85, 134, 158, 0.1);
    border-color: rgba(85, 134, 158, 0.3);
    color: #55869E;
}

/* Service Button */
.page-services .service-zigzag-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(85, 134, 158, 0.25);
}

.page-services .service-zigzag-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(85, 134, 158, 0.4);
    color: #ffffff;
}

.page-services .service-zigzag-btn i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.page-services .service-zigzag-btn:hover i {
    transform: translateX(5px);
}

/* Service Image */
.page-services .service-zigzag-image {
    position: relative;
}

.page-services .service-zigzag-image .image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.page-services .service-zigzag-item:hover .image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(85, 134, 158, 0.15);
}

.page-services .service-zigzag-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.page-services .service-zigzag-item:hover .service-zigzag-image img {
    transform: scale(1.08);
}

.page-services .service-zigzag-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(85, 134, 158, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.page-services .service-zigzag-item:hover .image-overlay {
    opacity: 1;
}

/* Decorative Elements */
.page-services .service-zigzag-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(85, 134, 158, 0.2);
    border-radius: 24px;
    z-index: -1;
    transition: all 0.4s ease;
}

.page-services .service-zigzag-item.reverse .service-zigzag-image::before {
    right: auto;
    left: -15px;
}

.page-services .service-zigzag-item:hover .service-zigzag-image::before {
    top: -20px;
    right: -20px;
    border-color: rgba(85, 134, 158, 0.4);
}

.page-services .service-zigzag-item.reverse:hover .service-zigzag-image::before {
    right: auto;
    left: -20px;
}

/* --- Why Choose Us Section --- */
.page-services .why-choose-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 100%);
    position: relative;
}

.page-services .why-choose-content .section-tag {
    display: inline-flex;
    margin-bottom: 1rem;
}

.page-services .why-choose-content .section-title {
    text-align: left;
    margin-bottom: 1.25rem;
}

.page-services .why-choose-content .section-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.page-services .why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.page-services .feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.page-services .feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(85, 134, 158, 0.15) 0%, rgba(85, 134, 158, 0.05) 100%);
    border: 1px solid rgba(85, 134, 158, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-services .feature-icon i {
    font-size: 1.25rem;
    color: #55869E;
}

.page-services .feature-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.375rem;
}

.page-services .feature-text p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Image */
.page-services .why-choose-image {
    position: relative;
    padding: 20px;
}

.page-services .why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.page-services .image-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(85, 134, 158, 0.3);
    border-radius: 20px;
    z-index: 1;
}

.page-services .floating-badge {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    padding: 20px 25px;
    border-radius: 16px;
    z-index: 3;
    box-shadow: 0 10px 40px rgba(85, 134, 158, 0.4);
}

.page-services .badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.page-services .badge-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Services CTA Section --- */
.page-services .services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1922 0%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.page-services .cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(85, 134, 158, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.page-services .cta-content {
    position: relative;
    z-index: 2;
}

.page-services .cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-services .cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.page-services .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-services .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    color: #ffffff;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(85, 134, 158, 0.35);
}

.page-services .btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(85, 134, 158, 0.5);
    color: #ffffff;
}

.page-services .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.0625rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-services .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.page-services .btn-cta-secondary i {
    color: #55869E;
}

/* ==========================================================================
   ABOUT PAGE - Hero, CTA, Values, Why Choose (reuse services hero/CTA styling)
   ========================================================================== */

/* About page hero: same as services hero */
.page-about .services-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.page-about .services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(15, 20, 25, 0.9) 40%, rgba(10, 22, 40, 0.85) 100%),
                url('../img/services-hero-bg.jpg') center center / cover no-repeat;
    z-index: 0;
}

.page-about .services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(85, 134, 158, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.page-about .hero-floating-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.page-about .floating-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(85, 134, 158, 0.2); animation: servicesFloatCircle 20s ease-in-out infinite; }
.page-about .floating-circle.circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.page-about .floating-circle.circle-2 { width: 300px; height: 300px; bottom: 10%; left: -50px; animation-delay: -5s; }
.page-about .floating-circle.circle-3 { width: 200px; height: 200px; top: 40%; right: 10%; border-color: rgba(85, 134, 158, 0.1); animation-delay: -10s; }
.page-about .floating-line { position: absolute; height: 2px; background: linear-gradient(90deg, transparent, rgba(85, 134, 158, 0.4), transparent); animation: servicesFloatLine 15s ease-in-out infinite; }
.page-about .floating-line.line-1 { width: 300px; top: 30%; left: 5%; transform: rotate(45deg); }
.page-about .floating-line.line-2 { width: 200px; bottom: 20%; right: 15%; transform: rotate(-30deg); animation-delay: -7s; }

.page-about .services-hero-section .container { position: relative; z-index: 10; }
.page-about .services-hero-content { text-align: left; }
.page-about .services-hero-content .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; color: #55869E; margin-bottom: 1.5rem; padding: 0.625rem 1.25rem;
    background: rgba(85, 134, 158, 0.1); border: 1px solid rgba(85, 134, 158, 0.25); border-radius: 50px;
}
.page-about .services-hero-content .hero-eyebrow i { font-size: 1rem; }
.page-about .services-hero-content .hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.15; color: #ffffff; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.page-about .services-hero-content .hero-subheading {
    font-size: 1.25rem; font-weight: 400; line-height: 1.8; color: rgba(255, 255, 255, 0.7); margin-bottom: 2.5rem; max-width: 540px;
}
.page-about .hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.page-about .btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%); color: #ffffff; font-size: 1rem; font-weight: 600;
    text-decoration: none; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(85, 134, 158, 0.3);
}
.page-about .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(85, 134, 158, 0.5); color: #ffffff; }
.page-about .btn-hero-primary i { transition: transform 0.3s ease; }
.page-about .btn-hero-primary:hover i { transform: translateX(5px); }
.page-about .btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; background: transparent; color: #ffffff;
    font-size: 1rem; font-weight: 500; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; transition: all 0.3s ease;
}
.page-about .btn-hero-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.4); color: #ffffff; }
.page-about .btn-hero-secondary i { font-size: 1.25rem; color: #55869E; }
.page-about .services-hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.page-about .stat-card {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 28px 24px;
    text-align: center; transition: all 0.3s ease;
}
.page-about .stat-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(85, 134, 158, 0.25); transform: translateY(-4px); }
.page-about .stat-icon { font-size: 1.75rem; color: #55869E; margin-bottom: 12px; }
.page-about .stat-number { font-size: 2rem; font-weight: 800; color: #ffffff; line-height: 1.1; margin-bottom: 4px; }
.page-about .stat-label { font-size: 0.875rem; font-weight: 500; color: rgba(255, 255, 255, 0.6); }

/* About page breadcrumb */
.page-about .hero-breadcrumb .breadcrumb { background: transparent; padding: 0; }
.page-about .hero-breadcrumb .breadcrumb-item a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.page-about .hero-breadcrumb .breadcrumb-item a:hover { color: #55869E; }
.page-about .hero-breadcrumb .breadcrumb-item.active { color: rgba(255, 255, 255, 0.5); }
.page-about .hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.4); }

/* About page CTA section */
.page-about .services-cta-section {
    padding: 100px 0; background: linear-gradient(135deg, #0f1922 0%, #0a1628 100%); position: relative; overflow: hidden;
}
.page-about .cta-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(85, 134, 158, 0.1) 0%, transparent 40%);
    pointer-events: none;
}
.page-about .cta-content { position: relative; z-index: 2; }
.page-about .cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #ffffff; margin-bottom: 1rem; letter-spacing: -0.02em; }
.page-about .cta-subtitle { font-size: 1.25rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 2.5rem; }
.page-about .cta-buttons { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.page-about .btn-cta-primary {
    display: inline-flex; align-items: center; gap: 12px; padding: 18px 36px;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%); color: #ffffff; font-size: 1.0625rem; font-weight: 600;
    text-decoration: none; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 4px 25px rgba(85, 134, 158, 0.35);
}
.page-about .btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(85, 134, 158, 0.5); color: #ffffff; }
.page-about .btn-cta-secondary {
    display: inline-flex; align-items: center; gap: 10px; padding: 18px 32px; background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15); color: #ffffff; font-size: 1.0625rem; font-weight: 500;
    text-decoration: none; border-radius: 50px; transition: all 0.3s ease;
}
.page-about .btn-cta-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); color: #ffffff; }
.page-about .btn-cta-secondary i { color: #55869E; }
.page-about .section-badge.light {
    display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; color: rgba(255, 255, 255, 0.8); padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50px;
}
.page-about .section-badge.light i { color: #55869E; }

/* About Values Section */
.about-values-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 100%);
    position: relative;
}

.about-values-header .section-tag {
    display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; color: #55869E; margin-bottom: 1rem;
}

.about-values-header .section-title { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; }

.about-value-card {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px;
    padding: 32px 28px; height: 100%; transition: all 0.3s ease;
}

.about-value-card:hover {
    background: rgba(255, 255, 255, 0.06); border-color: rgba(85, 134, 158, 0.2); transform: translateY(-4px);
}

.about-value-icon {
    width: 56px; height: 56px; min-width: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(85, 134, 158, 0.15) 0%, rgba(85, 134, 158, 0.05) 100%);
    border: 1px solid rgba(85, 134, 158, 0.2); margin-bottom: 1.25rem;
}

.about-value-icon i { font-size: 1.5rem; color: #55869E; }

.about-value-title { font-size: 1.25rem; font-weight: 700; color: #ffffff; margin-bottom: 0.75rem; }

.about-value-desc { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin: 0; }

/* About Why Section (mirror why-choose) */
.page-about .about-why-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1117 0%, #0a0a0a 100%);
}

.page-about .about-why-section .why-choose-content .section-tag {
    display: inline-flex; margin-bottom: 1rem; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px; color: #55869E;
}

.page-about .about-why-section .section-title { text-align: left; margin-bottom: 1.25rem; color: #ffffff; font-weight: 800; }

.page-about .about-why-section .section-desc {
    font-size: 1.0625rem; color: rgba(255, 255, 255, 0.65); line-height: 1.8; margin-bottom: 2.5rem;
}

.page-about .about-why-section .why-choose-features { display: flex; flex-direction: column; gap: 25px; }

.page-about .about-why-section .feature-item { display: flex; gap: 20px; align-items: flex-start; }

.page-about .about-why-section .feature-icon {
    width: 56px; height: 56px; min-width: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(85, 134, 158, 0.15) 0%, rgba(85, 134, 158, 0.05) 100%);
    border: 1px solid rgba(85, 134, 158, 0.2);
}

.page-about .about-why-section .feature-icon i { font-size: 1.25rem; color: #55869E; }

.page-about .about-why-section .feature-text h4 { font-size: 1.125rem; font-weight: 700; color: #ffffff; margin-bottom: 0.375rem; }

.page-about .about-why-section .feature-text p { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.6); line-height: 1.6; margin: 0; }

.page-about .about-why-section .why-choose-image { position: relative; padding: 20px; }

.page-about .about-why-section .why-choose-image img {
    width: 100%; height: auto; border-radius: 20px; position: relative; z-index: 2;
}

.page-about .about-why-section .image-accent {
    position: absolute; top: 0; right: 0; width: 80%; height: 80%;
    border: 2px solid rgba(85, 134, 158, 0.3); border-radius: 20px; z-index: 1;
}

.page-about .about-why-section .floating-badge {
    position: absolute; bottom: 40px; left: 0; background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    padding: 20px 25px; border-radius: 16px; z-index: 3; box-shadow: 0 10px 40px rgba(85, 134, 158, 0.4);
}

.page-about .about-why-section .badge-number { display: block; font-size: 2rem; font-weight: 800; color: #ffffff; line-height: 1; }

.page-about .about-why-section .badge-text {
    font-size: 0.8125rem; font-weight: 500; color: rgba(255, 255, 255, 0.85); text-transform: uppercase; letter-spacing: 1px;
}

/* About Images Section - about-img-1 & about-img-2 */
.about-images-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f5f5 0%, #fafafa 50%, #f5f5f5 100%);
    position: relative;
}

.about-images-header {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 3.5rem;
}

.about-images-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #55869E;
    margin-bottom: 1rem;
}

.about-images-tag i { font-size: 0.9rem; }

.about-images-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-images-subtitle {
    font-size: 1.0625rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.65;
    margin: 0;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    align-items: stretch;
}

.about-images-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-images-frame {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 20px;
    background: #e8e8e8;
}

.about-images-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-images-item:hover .about-images-frame img {
    transform: scale(1.03);
}

.about-images-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .about-images-section { padding: 70px 0; }
    .about-images-header { margin-bottom: 2.5rem; }
    .about-images-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .about-images-frame { padding-bottom: 70%; }
}

/* About Team Section - Digital marketing team */
.about-team-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #0a0a0a 0%, #0c0f14 30%, #0d1117 50%, #0c0f14 70%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.about-team-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(85, 134, 158, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 20% 100%, rgba(85, 134, 158, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 80% 100%, rgba(85, 134, 158, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Subtle "signal" accent - suggests data/performance */
.about-team-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(85, 134, 158, 0.15) 20%, rgba(85, 134, 158, 0.25) 50%, rgba(85, 134, 158, 0.15) 80%, transparent 100%);
    pointer-events: none;
    opacity: 0.8;
}

.about-team-section .container { position: relative; z-index: 1; }

.about-team-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.about-team-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #55869E;
    margin-bottom: 1.25rem;
    padding: 0.5rem 1.25rem;
    background: rgba(85, 134, 158, 0.1);
    border: 1px solid rgba(85, 134, 158, 0.25);
    border-radius: 50px;
}

.about-team-tag i { font-size: 0.85rem; opacity: 0.9; }

.about-team-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-team-title-accent {
    color: #55869E;
    background: linear-gradient(135deg, #55869E 0%, #6ba3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-team-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 0.75rem;
}

.about-team-trust {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(85, 134, 158, 0.95);
    letter-spacing: 0.5px;
    margin: 0;
}

/* Team grid: 3 cols desktop, 2 tablet, 1 mobile */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.75rem;
    align-items: stretch;
}

.about-team-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-team-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(85, 134, 158, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.about-team-photo-wrap {
    margin-bottom: 1.5rem;
}

.about-team-photo {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(85, 134, 158, 0.15) 0%, rgba(85, 134, 158, 0.04) 100%);
    border: 3px solid rgba(85, 134, 158, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.about-team-card:hover .about-team-photo {
    border-color: rgba(85, 134, 158, 0.4);
    box-shadow: 0 12px 40px rgba(85, 134, 158, 0.15);
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-team-placeholder {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #55869E 0%, #3d6a7e 100%);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.about-team-placeholder.visible {
    display: flex;
}

.about-team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.about-team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.about-team-role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #55869E;
    padding: 0.4rem 1rem;
    background: rgba(85, 134, 158, 0.12);
    border: 1px solid rgba(85, 134, 158, 0.2);
    border-radius: 50px;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
}

.about-team-cta-line {
    text-align: center;
    margin: 3rem 0 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.about-team-cta-link {
    color: #55869E;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease, gap 0.2s ease;
}

.about-team-cta-link:hover {
    color: #6ba3b8;
    gap: 0.65rem;
}

.about-team-cta-link i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.about-team-cta-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 991.98px) {
    .page-about .services-hero-section { min-height: auto; padding: 130px 0 70px; }
    .page-about .services-hero-content { text-align: center; margin-bottom: 50px; }
    .page-about .services-hero-content .hero-subheading { margin-left: auto; margin-right: auto; }
    .page-about .services-hero-stats { max-width: 400px; margin-left: auto; margin-right: auto; }
    .page-about .about-why-section .why-choose-content { margin-bottom: 50px; }
    .page-about .about-why-section .section-title,
    .page-about .about-why-section .section-tag { text-align: center; }
    .page-about .about-why-section .section-desc { text-align: center; }
    .page-about .cta-buttons { flex-direction: column; }
}

@media (max-width: 767.98px) {
    .page-about .services-hero-section { padding: 120px 0 60px; }
    .page-about .services-hero-content .hero-headline { font-size: 2rem; }
    .page-about .services-hero-stats { grid-template-columns: 1fr; gap: 15px; }
    .about-values-section { padding: 70px 0; }
    .about-value-card { padding: 24px 20px; }
    .about-team-section { padding: 70px 0 80px; }
    .about-team-header { margin-bottom: 3rem; }
    .about-team-tag { font-size: 0.7rem; letter-spacing: 2px; padding: 0.4rem 1rem; }
    .about-team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; }
    .about-team-photo { width: 140px; height: 140px; }
    .about-team-placeholder { font-size: 1.75rem; }
    .about-team-card { padding: 2rem 1.25rem; }
    .about-team-cta-line { margin-top: 2.5rem; font-size: 0.9375rem; }
}

@media (max-width: 575.98px) {
    .about-team-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 320px; margin: 0 auto; }
    .about-team-photo { width: 130px; height: 130px; }
    .about-team-placeholder { font-size: 1.5rem; }
    .about-team-tag { font-size: 0.65rem; letter-spacing: 1.5px; }
    .about-team-subtitle { font-size: 1rem; }
    .about-team-cta-line { margin-top: 2rem; }
}

/* ==========================================================================
   CASE STUDIES PAGE - Hero, List, CTA (reuse services hero/CTA styling)
   ========================================================================== */

.page-case-studies .services-hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 0 80px; overflow: hidden; }
.page-case-studies .services-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(15, 20, 25, 0.9) 40%, rgba(10, 22, 40, 0.85) 100%), url('../img/services-hero-bg.jpg') center center / cover no-repeat; z-index: 0; }
.page-case-studies .services-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(85, 134, 158, 0.1) 0%, transparent 40%); z-index: 1; }
.page-case-studies .hero-floating-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.page-case-studies .floating-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(85, 134, 158, 0.2); animation: servicesFloatCircle 20s ease-in-out infinite; }
.page-case-studies .floating-circle.circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.page-case-studies .floating-circle.circle-2 { width: 300px; height: 300px; bottom: 10%; left: -50px; animation-delay: -5s; }
.page-case-studies .floating-circle.circle-3 { width: 200px; height: 200px; top: 40%; right: 10%; border-color: rgba(85, 134, 158, 0.1); animation-delay: -10s; }
.page-case-studies .floating-line { position: absolute; height: 2px; background: linear-gradient(90deg, transparent, rgba(85, 134, 158, 0.4), transparent); animation: servicesFloatLine 15s ease-in-out infinite; }
.page-case-studies .floating-line.line-1 { width: 300px; top: 30%; left: 5%; transform: rotate(45deg); }
.page-case-studies .floating-line.line-2 { width: 200px; bottom: 20%; right: 15%; transform: rotate(-30deg); animation-delay: -7s; }
.page-case-studies .services-hero-section .container { position: relative; z-index: 10; }
.page-case-studies .services-hero-content { text-align: left; }
.page-case-studies .services-hero-content .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #55869E; margin-bottom: 1.5rem; padding: 0.625rem 1.25rem; background: rgba(85, 134, 158, 0.1); border: 1px solid rgba(85, 134, 158, 0.25); border-radius: 50px; }
.page-case-studies .services-hero-content .hero-headline { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.15; color: #ffffff; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.page-case-studies .services-hero-content .hero-subheading { font-size: 1.25rem; font-weight: 400; line-height: 1.8; color: rgba(255, 255, 255, 0.7); margin-bottom: 2.5rem; max-width: 540px; }
.page-case-studies .hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.page-case-studies .btn-hero-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%); color: #ffffff; font-size: 1rem; font-weight: 600; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(85, 134, 158, 0.3); }
.page-case-studies .btn-hero-primary:hover { transform: translateY(-3px); color: #ffffff; }
.page-case-studies .btn-hero-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; background: transparent; color: #ffffff; font-size: 1rem; font-weight: 500; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; transition: all 0.3s ease; }
.page-case-studies .btn-hero-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.4); color: #ffffff; }
.page-case-studies .services-hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.page-case-studies .stat-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 28px 24px; text-align: center; transition: all 0.3s ease; }
.page-case-studies .stat-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(85, 134, 158, 0.25); transform: translateY(-4px); }
.page-case-studies .stat-icon { font-size: 1.75rem; color: #55869E; margin-bottom: 12px; }
.page-case-studies .stat-number { font-size: 2rem; font-weight: 800; color: #ffffff; line-height: 1.1; margin-bottom: 4px; }
.page-case-studies .stat-label { font-size: 0.875rem; font-weight: 500; color: rgba(255, 255, 255, 0.6); }
.page-case-studies .hero-breadcrumb .breadcrumb { background: transparent; padding: 0; }
.page-case-studies .hero-breadcrumb .breadcrumb-item a { color: rgba(255, 255, 255, 0.7); }
.page-case-studies .hero-breadcrumb .breadcrumb-item.active { color: rgba(255, 255, 255, 0.5); }
.page-case-studies .services-cta-section { padding: 100px 0; background: linear-gradient(135deg, #0f1922 0%, #0a1628 100%); position: relative; overflow: hidden; }
.page-case-studies .cta-bg-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 40%), radial-gradient(circle at 80% 50%, rgba(85, 134, 158, 0.1) 0%, transparent 40%); pointer-events: none; }
.page-case-studies .cta-content { position: relative; z-index: 2; }
.page-case-studies .cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #ffffff; margin-bottom: 1rem; }
.page-case-studies .cta-subtitle { font-size: 1.25rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 2.5rem; }
.page-case-studies .cta-buttons { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.page-case-studies .btn-cta-primary { display: inline-flex; align-items: center; gap: 12px; padding: 18px 36px; background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%); color: #ffffff; font-size: 1.0625rem; font-weight: 600; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; }
.page-case-studies .btn-cta-primary:hover { transform: translateY(-3px); color: #ffffff; }
.page-case-studies .btn-cta-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 18px 32px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15); color: #ffffff; font-size: 1.0625rem; font-weight: 500; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; }
.page-case-studies .btn-cta-secondary:hover { background: rgba(255, 255, 255, 0.1); color: #ffffff; }
.page-case-studies .section-badge.light { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255, 255, 255, 0.8); padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50px; }
.page-case-studies .section-badge.light i { color: #55869E; }

/* Case Studies List Section */
.case-studies-list-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 50%, #0a0a0a 100%);
    position: relative;
}

.case-studies-list-header {
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.case-studies-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #55869E;
    margin-bottom: 1rem;
}

.case-studies-tag i { font-size: 0.9rem; }

.case-studies-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.case-studies-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.75rem;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.case-study-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(85, 134, 158, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.case-study-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.case-study-image {
    position: relative;
    width: 100%;
    padding-bottom: 56%;
    overflow: hidden;
    background: #1a1a1a;
}

.case-study-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.case-study-category {
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #55869E;
    padding: 0.35rem 0.85rem;
    background: rgba(85, 134, 158, 0.2);
    border: 1px solid rgba(85, 134, 158, 0.3);
    border-radius: 50px;
    z-index: 2;
}

.case-study-content {
    padding: 1.75rem 1.5rem;
}

.case-study-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.case-study-card:hover .case-study-title {
    color: #55869E;
}

.case-study-excerpt {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.case-study-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.case-study-stat {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #55869E;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.case-study-stat i { font-size: 0.9rem; }

.case-study-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: #55869E;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}

.case-study-card:hover .case-study-cta {
    gap: 0.65rem;
}

.case-study-cta i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.case-study-card:hover .case-study-cta i {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .page-case-studies .services-hero-section { min-height: auto; padding: 130px 0 70px; }
    .page-case-studies .services-hero-content { text-align: center; margin-bottom: 50px; }
    .page-case-studies .services-hero-content .hero-subheading { margin-left: auto; margin-right: auto; }
    .page-case-studies .services-hero-stats { max-width: 400px; margin-left: auto; margin-right: auto; }
    .page-case-studies .cta-buttons { flex-direction: column; }
    .case-studies-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .case-studies-list-section { padding: 80px 0 100px; }
}

@media (max-width: 767.98px) {
    .page-case-studies .services-hero-section { padding: 120px 0 60px; }
    .page-case-studies .services-hero-content .hero-headline { font-size: 2rem; }
    .page-case-studies .services-hero-stats { grid-template-columns: 1fr; gap: 15px; }
    .case-studies-list-section { padding: 70px 0 80px; }
    .case-study-content { padding: 1.5rem 1.25rem; }
    .case-study-title { font-size: 1.125rem; }
}

/* ==========================================================================
   CASE STUDY DETAILS PAGE - Hero, Sections, Results, Gallery
   ========================================================================== */

.page-case-study-details .services-hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 0 80px; overflow: hidden; }
.page-case-study-details .services-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(15, 20, 25, 0.9) 40%, rgba(10, 22, 40, 0.85) 100%), url('../img/services-hero-bg.jpg') center center / cover no-repeat; z-index: 0; }
.page-case-study-details .services-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(85, 134, 158, 0.1) 0%, transparent 40%); z-index: 1; }
.page-case-study-details .hero-floating-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.page-case-study-details .floating-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(85, 134, 158, 0.2); animation: servicesFloatCircle 20s ease-in-out infinite; }
.page-case-study-details .floating-circle.circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.page-case-study-details .floating-circle.circle-2 { width: 300px; height: 300px; bottom: 10%; left: -50px; animation-delay: -5s; }
.page-case-study-details .floating-circle.circle-3 { width: 200px; height: 200px; top: 40%; right: 10%; border-color: rgba(85, 134, 158, 0.1); animation-delay: -10s; }
.page-case-study-details .floating-line { position: absolute; height: 2px; background: linear-gradient(90deg, transparent, rgba(85, 134, 158, 0.4), transparent); animation: servicesFloatLine 15s ease-in-out infinite; }
.page-case-study-details .floating-line.line-1 { width: 300px; top: 30%; left: 5%; transform: rotate(45deg); }
.page-case-study-details .floating-line.line-2 { width: 200px; bottom: 20%; right: 15%; transform: rotate(-30deg); animation-delay: -7s; }
.page-case-study-details .services-hero-section .container { position: relative; z-index: 10; }
.page-case-study-details .services-hero-content { text-align: left; }
.page-case-study-details .services-hero-content .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #55869E; margin-bottom: 1.5rem; padding: 0.625rem 1.25rem; background: rgba(85, 134, 158, 0.1); border: 1px solid rgba(85, 134, 158, 0.25); border-radius: 50px; }
.page-case-study-details .services-hero-content .hero-headline { font-size: clamp(2.35rem, 4.6vw, 3.5rem); font-weight: 800; line-height: 1.15; color: #ffffff; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.page-case-study-details .services-hero-content .hero-subheading { font-size: 1.1875rem; font-weight: 400; line-height: 1.85; color: rgba(255, 255, 255, 0.7); margin-bottom: 2.25rem; max-width: 580px; }
.page-case-study-details .hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.page-case-study-details .btn-hero-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%); color: #ffffff; font-size: 1rem; font-weight: 600; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(85, 134, 158, 0.3); }
.page-case-study-details .btn-hero-primary:hover { transform: translateY(-3px); color: #ffffff; }
.page-case-study-details .btn-hero-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; background: transparent; color: #ffffff; font-size: 1rem; font-weight: 500; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; transition: all 0.3s ease; }
.page-case-study-details .btn-hero-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.4); color: #ffffff; }
.page-case-study-details .services-hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.page-case-study-details .stat-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 28px 24px; text-align: center; transition: all 0.3s ease; }
.page-case-study-details .stat-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(85, 134, 158, 0.25); transform: translateY(-4px); }
.page-case-study-details .stat-icon { font-size: 1.75rem; color: #55869E; margin-bottom: 12px; }
.page-case-study-details .stat-number { font-size: 2rem; font-weight: 800; color: #ffffff; line-height: 1.1; margin-bottom: 4px; }
.page-case-study-details .stat-label { font-size: 0.875rem; font-weight: 500; color: rgba(255, 255, 255, 0.6); }
.page-case-study-details .hero-breadcrumb .breadcrumb { background: transparent; padding: 0; }
.page-case-study-details .hero-breadcrumb .breadcrumb-item a { color: rgba(255, 255, 255, 0.7); }
.page-case-study-details .hero-breadcrumb .breadcrumb-item.active { color: rgba(255, 255, 255, 0.5); }

.page-case-study-details .case-study-detail-section { padding: 100px 0; background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 50%, #0a0a0a 100%); }
.page-case-study-details .case-study-story-section { padding: 90px 0 110px; background: #0a0a0a; }
.page-case-study-details .case-study-results-section { padding: 100px 0 120px; background: linear-gradient(135deg, #0f1922 0%, #0a1628 100%); }

.page-case-study-details .case-study-detail-header { max-width: 760px; margin: 0 auto 3.25rem; }
.page-case-study-details .case-study-detail-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #55869E; margin-bottom: 1rem; }
.page-case-study-details .case-study-detail-title { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: #ffffff; margin-bottom: 0.75rem; letter-spacing: -0.02em; line-height: 1.2; }
.page-case-study-details .case-study-detail-subtitle { font-size: 1.125rem; color: rgba(255, 255, 255, 0.65); line-height: 1.7; margin: 0; }

.page-case-study-details .case-study-detail-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 24px; padding: 2rem 1.75rem; box-shadow: 0 24px 56px rgba(0, 0, 0, 0.25); }
.page-case-study-details .case-study-detail-card-title { font-size: 1.25rem; font-weight: 800; color: #ffffff; margin-bottom: 0.85rem; }
.page-case-study-details .case-study-detail-text { color: rgba(255, 255, 255, 0.68); line-height: 1.8; margin-bottom: 1.25rem; }
.page-case-study-details .case-study-detail-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.page-case-study-details .case-study-detail-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255, 255, 255, 0.72); }
.page-case-study-details .case-study-detail-list i { margin-top: 0.25rem; color: #55869E; }

.page-case-study-details .case-study-detail-meta { display: grid; gap: 0.85rem; margin-top: 0.25rem; }
.page-case-study-details .meta-row { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 0.85rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.page-case-study-details .meta-row:last-child { border-bottom: none; padding-bottom: 0; }
.page-case-study-details .meta-label { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255, 255, 255, 0.5); }
.page-case-study-details .meta-value { font-size: 0.95rem; font-weight: 600; color: rgba(255, 255, 255, 0.82); text-align: right; }
.page-case-study-details .case-study-detail-thumb { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.02); }
.page-case-study-details .case-study-detail-thumb img { width: 100%; height: 220px; object-fit: cover; display: block; }

.page-case-study-details .case-study-story-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 24px; padding: 2rem 1.75rem; height: 100%; }
.page-case-study-details .story-badge { display: inline-flex; align-items: center; gap: 8px; padding: 0.45rem 0.95rem; border-radius: 50px; background: rgba(85, 134, 158, 0.12); border: 1px solid rgba(85, 134, 158, 0.25); color: #55869E; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.page-case-study-details .story-title { color: #ffffff; font-weight: 800; font-size: 1.25rem; margin-bottom: 0.75rem; }
.page-case-study-details .story-text { color: rgba(255, 255, 255, 0.68); line-height: 1.8; margin-bottom: 1rem; }
.page-case-study-details .story-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.page-case-study-details .story-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255, 255, 255, 0.72); }
.page-case-study-details .story-list i { margin-top: 0.25rem; color: #55869E; }

.page-case-study-details .deliverables-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 24px; padding: 2rem 1.75rem; }
.page-case-study-details .deliverables-title { color: #ffffff; font-weight: 800; font-size: 1.25rem; margin-bottom: 1.25rem; }
.page-case-study-details .deliverables-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.page-case-study-details .deliverable { display: flex; gap: 14px; padding: 1.1rem 1rem; border-radius: 18px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.06); }
.page-case-study-details .deliverable-icon { width: 44px; height: 44px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: rgba(85, 134, 158, 0.14); border: 1px solid rgba(85, 134, 158, 0.25); color: #55869E; flex: 0 0 auto; }
.page-case-study-details .deliverable-text h4 { margin: 0 0 0.25rem; font-size: 1rem; font-weight: 800; color: #ffffff; }
.page-case-study-details .deliverable-text p { margin: 0; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.65); line-height: 1.6; }

.page-case-study-details .results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.page-case-study-details .result-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 22px; padding: 1.75rem 1.5rem; text-align: center; transition: transform 0.25s ease, border-color 0.25s ease; }
.page-case-study-details .result-card:hover { transform: translateY(-6px); border-color: rgba(85, 134, 158, 0.3); }
.page-case-study-details .result-icon { font-size: 1.5rem; color: #55869E; margin-bottom: 0.75rem; }
.page-case-study-details .result-value { font-size: 2rem; font-weight: 900; color: #ffffff; line-height: 1.1; margin-bottom: 0.25rem; }
.page-case-study-details .result-label { font-size: 0.9rem; font-weight: 600; color: rgba(255, 255, 255, 0.65); }

.page-case-study-details .testimonial-card { position: relative; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 2rem 1.75rem; max-width: 900px; margin: 0 auto; }
.page-case-study-details .testimonial-quote { position: absolute; top: 18px; right: 18px; color: rgba(85, 134, 158, 0.35); font-size: 2rem; }
.page-case-study-details .testimonial-text { color: rgba(255, 255, 255, 0.78); font-size: 1.0625rem; line-height: 1.9; margin-bottom: 1.25rem; }
.page-case-study-details .testimonial-meta { display: flex; align-items: center; gap: 12px; }
.page-case-study-details .testimonial-avatar { width: 44px; height: 44px; border-radius: 14px; background: rgba(85, 134, 158, 0.18); border: 1px solid rgba(85, 134, 158, 0.3); color: #ffffff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; letter-spacing: 0.5px; }
.page-case-study-details .testimonial-name { font-weight: 800; color: #ffffff; line-height: 1.2; }
.page-case-study-details .testimonial-role { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }

.page-case-study-details .case-study-gallery { max-width: 1100px; margin: 0 auto; }
.page-case-study-details .gallery-header { text-align: center; margin-bottom: 1.5rem; }
.page-case-study-details .gallery-title { font-size: 1.35rem; font-weight: 900; color: #ffffff; margin-bottom: 0.35rem; }
.page-case-study-details .gallery-subtitle { color: rgba(255, 255, 255, 0.65); margin: 0; }
.page-case-study-details .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.page-case-study-details .gallery-item { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.03); }
.page-case-study-details .gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.page-case-study-details .gallery-item:hover img { transform: scale(1.04); }

.page-case-study-details .services-cta-section { padding: 100px 0; background: linear-gradient(135deg, #0f1922 0%, #0a1628 100%); position: relative; overflow: hidden; }
.page-case-study-details .cta-bg-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 40%), radial-gradient(circle at 80% 50%, rgba(85, 134, 158, 0.1) 0%, transparent 40%); pointer-events: none; }
.page-case-study-details .cta-content { position: relative; z-index: 2; }
.page-case-study-details .cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #ffffff; margin-bottom: 1rem; }
.page-case-study-details .cta-subtitle { font-size: 1.25rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 2.5rem; }
.page-case-study-details .cta-buttons { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.page-case-study-details .btn-cta-primary { display: inline-flex; align-items: center; gap: 12px; padding: 18px 36px; background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%); color: #ffffff; font-size: 1.0625rem; font-weight: 600; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; }
.page-case-study-details .btn-cta-primary:hover { transform: translateY(-3px); color: #ffffff; }
.page-case-study-details .btn-cta-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 18px 32px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15); color: #ffffff; font-size: 1.0625rem; font-weight: 500; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; }
.page-case-study-details .btn-cta-secondary:hover { background: rgba(255, 255, 255, 0.1); color: #ffffff; }
.page-case-study-details .section-badge.light { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255, 255, 255, 0.8); padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50px; }
.page-case-study-details .section-badge.light i { color: #55869E; }

@media (max-width: 991.98px) {
    .page-case-study-details .services-hero-section { min-height: auto; padding: 130px 0 70px; }
    .page-case-study-details .services-hero-content { text-align: center; margin-bottom: 50px; }
    .page-case-study-details .services-hero-content .hero-subheading { margin-left: auto; margin-right: auto; }
    .page-case-study-details .hero-cta-row { justify-content: center; }
    .page-case-study-details .services-hero-stats { max-width: 420px; margin-left: auto; margin-right: auto; }
    .page-case-study-details .deliverables-grid { grid-template-columns: 1fr; }
    .page-case-study-details .results-grid { grid-template-columns: repeat(2, 1fr); }
    .page-case-study-details .gallery-grid { grid-template-columns: 1fr; }
    .page-case-study-details .cta-buttons { flex-direction: column; }
}

@media (max-width: 767.98px) {
    .page-case-study-details .services-hero-section { padding: 120px 0 60px; }
    .page-case-study-details .services-hero-content .hero-headline { font-size: 2rem; }
    .page-case-study-details .services-hero-stats { grid-template-columns: 1fr; gap: 15px; }
    .page-case-study-details .case-study-detail-card { padding: 1.5rem 1.25rem; }
    .page-case-study-details .case-study-story-card { padding: 1.5rem 1.25rem; }
    .page-case-study-details .deliverables-card { padding: 1.5rem 1.25rem; }
    .page-case-study-details .results-grid { grid-template-columns: 1fr; }
    .page-case-study-details .result-card { padding: 1.5rem 1.25rem; }
    .page-case-study-details .testimonial-card { padding: 1.5rem 1.25rem; }
}

/* ==========================================================================
   BLOG LISTING PAGE - Hero + CTA (listing uses existing .blog-section styles)
   ========================================================================== */

.page-blog .services-hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 0 80px; overflow: hidden; }
.page-blog .services-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(15, 20, 25, 0.9) 40%, rgba(10, 22, 40, 0.85) 100%), url('../img/services-hero-bg.jpg') center center / cover no-repeat; z-index: 0; }
.page-blog .services-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(85, 134, 158, 0.1) 0%, transparent 40%); z-index: 1; }
.page-blog .hero-floating-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.page-blog .floating-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(85, 134, 158, 0.2); animation: servicesFloatCircle 20s ease-in-out infinite; }
.page-blog .floating-circle.circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.page-blog .floating-circle.circle-2 { width: 300px; height: 300px; bottom: 10%; left: -50px; animation-delay: -5s; }
.page-blog .floating-circle.circle-3 { width: 200px; height: 200px; top: 40%; right: 10%; border-color: rgba(85, 134, 158, 0.1); animation-delay: -10s; }
.page-blog .floating-line { position: absolute; height: 2px; background: linear-gradient(90deg, transparent, rgba(85, 134, 158, 0.4), transparent); animation: servicesFloatLine 15s ease-in-out infinite; }
.page-blog .floating-line.line-1 { width: 300px; top: 30%; left: 5%; transform: rotate(45deg); }
.page-blog .floating-line.line-2 { width: 200px; bottom: 20%; right: 15%; transform: rotate(-30deg); animation-delay: -7s; }
.page-blog .services-hero-section .container { position: relative; z-index: 10; }
.page-blog .services-hero-content { text-align: left; }
.page-blog .services-hero-content .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #55869E; margin-bottom: 1.5rem; padding: 0.625rem 1.25rem; background: rgba(85, 134, 158, 0.1); border: 1px solid rgba(85, 134, 158, 0.25); border-radius: 50px; }
.page-blog .services-hero-content .hero-headline { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.15; color: #ffffff; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.page-blog .services-hero-content .hero-subheading { font-size: 1.25rem; font-weight: 400; line-height: 1.8; color: rgba(255, 255, 255, 0.7); margin-bottom: 2.5rem; max-width: 560px; }
.page-blog .hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.page-blog .btn-hero-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%); color: #ffffff; font-size: 1rem; font-weight: 600; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(85, 134, 158, 0.3); }
.page-blog .btn-hero-primary:hover { transform: translateY(-3px); color: #ffffff; }
.page-blog .btn-hero-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; background: transparent; color: #ffffff; font-size: 1rem; font-weight: 500; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; transition: all 0.3s ease; }
.page-blog .btn-hero-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.4); color: #ffffff; }
.page-blog .services-hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.page-blog .stat-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 28px 24px; text-align: center; transition: all 0.3s ease; }
.page-blog .stat-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(85, 134, 158, 0.25); transform: translateY(-4px); }
.page-blog .stat-icon { font-size: 1.75rem; color: #55869E; margin-bottom: 12px; }
.page-blog .stat-number { font-size: 1.65rem; font-weight: 900; color: #ffffff; line-height: 1.1; margin-bottom: 4px; letter-spacing: -0.02em; }
.page-blog .stat-label { font-size: 0.875rem; font-weight: 500; color: rgba(255, 255, 255, 0.6); }

.page-blog .services-cta-section { padding: 100px 0; background: linear-gradient(135deg, #0f1922 0%, #0a1628 100%); position: relative; overflow: hidden; }
.page-blog .cta-bg-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 40%), radial-gradient(circle at 80% 50%, rgba(85, 134, 158, 0.1) 0%, transparent 40%); pointer-events: none; }
.page-blog .cta-content { position: relative; z-index: 2; }
.page-blog .cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #ffffff; margin-bottom: 1rem; }
.page-blog .cta-subtitle { font-size: 1.25rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 2.5rem; }
.page-blog .cta-buttons { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.page-blog .btn-cta-primary { display: inline-flex; align-items: center; gap: 12px; padding: 18px 36px; background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%); color: #ffffff; font-size: 1.0625rem; font-weight: 600; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; }
.page-blog .btn-cta-primary:hover { transform: translateY(-3px); color: #ffffff; }
.page-blog .btn-cta-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 18px 32px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15); color: #ffffff; font-size: 1.0625rem; font-weight: 500; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; }
.page-blog .btn-cta-secondary:hover { background: rgba(255, 255, 255, 0.1); color: #ffffff; }
.page-blog .section-badge.light { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255, 255, 255, 0.8); padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50px; }
.page-blog .section-badge.light i { color: #55869E; }

.page-blog .pagination .page-link { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.8); border-radius: 12px; padding: 0.6rem 0.9rem; }
.page-blog .pagination .page-link:hover { background: rgba(255, 255, 255, 0.08); color: #ffffff; border-color: rgba(85, 134, 158, 0.35); }
.page-blog .pagination .page-item.active .page-link { background: rgba(85, 134, 158, 0.35); border-color: rgba(85, 134, 158, 0.6); color: #ffffff; }
.page-blog .pagination .page-item.disabled .page-link { opacity: 0.55; }

.page-blog .blog-section-eyebrow span:nth-child(2) { color: rgba(255, 255, 255, 0.92); }

@media (max-width: 991.98px) {
    .page-blog .services-hero-section { min-height: auto; padding: 130px 0 70px; }
    .page-blog .services-hero-content { text-align: center; margin-bottom: 50px; }
    .page-blog .services-hero-content .hero-subheading { margin-left: auto; margin-right: auto; }
    .page-blog .hero-cta-row { justify-content: center; }
    .page-blog .services-hero-stats { max-width: 420px; margin-left: auto; margin-right: auto; }
    .page-blog .cta-buttons { flex-direction: column; }
}

@media (max-width: 767.98px) {
    .page-blog .services-hero-section { padding: 120px 0 60px; }
    .page-blog .services-hero-content .hero-headline { font-size: 2rem; }
    .page-blog .services-hero-stats { grid-template-columns: 1fr; gap: 15px; }
}

/* ==========================================================================
   THANK YOU PAGE — matches blog / inner-page CTA (services-cta-section)
   ========================================================================== */

.page-thank-you .thank-you-cta.services-cta-section {
    padding: clamp(120px, 22vh, 180px) 0 clamp(96px, 14vh, 140px);
    min-height: min(72vh, 880px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f1922 0%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.page-thank-you .thank-you-cta.services-cta-section > .container {
    width: 100%;
}

.page-thank-you .thank-you-cta .cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(85, 134, 158, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.page-thank-you .thank-you-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.page-thank-you .thank-you-cta .cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.page-thank-you .thank-you-cta .thank-you-message.cta-subtitle {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.page-thank-you .thank-you-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-thank-you .thank-you-cta .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    color: #ffffff;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-thank-you .thank-you-cta .btn-cta-primary:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.page-thank-you .thank-you-cta .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.0625rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-thank-you .thank-you-cta .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-thank-you .thank-you-cta .section-badge.light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
}

.page-thank-you .thank-you-cta .section-badge.light i {
    color: #55869E;
}

@media (max-width: 991.98px) {
    .page-thank-you .thank-you-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .page-thank-you .thank-you-cta .btn-cta-primary,
    .page-thank-you .thank-you-cta .btn-cta-secondary {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .page-thank-you .thank-you-cta.services-cta-section {
        min-height: auto;
        padding: 120px 0 96px;
    }

    .page-thank-you .thank-you-cta .cta-title {
        font-size: 1.85rem;
    }

    .page-thank-you .thank-you-cta .thank-you-message.cta-subtitle {
        font-size: 1.0625rem;
    }
}

/* ==========================================================================
   BLOG DETAIL PAGE - WordPress single post structure
   Targets both static preview and WP body class `.single-post`.
   ========================================================================== */

.page-blog-single .blog-post-hero,
.single-post .blog-post-hero {
    position: relative;
    padding: 140px 0 60px;
    overflow: hidden;
}

.page-blog-single .blog-post-hero-bg,
.single-post .blog-post-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(15, 20, 25, 0.92) 40%, rgba(10, 22, 40, 0.88) 100%),
        url('../img/services-hero-bg.jpg') center center / cover no-repeat;
    z-index: 0;
}

.page-blog-single .blog-post-hero .container,
.single-post .blog-post-hero .container {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.page-blog-single .blog-post-back-link,
.single-post .blog-post-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.2s ease, transform 0.2s ease;
}
.page-blog-single .blog-post-back-link:hover,
.single-post .blog-post-back-link:hover { color: #ffffff; transform: translateX(-2px); }
.page-blog-single .blog-post-back-link i,
.single-post .blog-post-back-link i { color: #55869E; }

.page-blog-single .post-cats,
.single-post .post-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }

.page-blog-single .post-cat-link,
.single-post .post-cat-link {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(85, 134, 158, 0.18);
    border: 1px solid rgba(85, 134, 158, 0.35);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
}
.page-blog-single .post-cat-link:hover,
.single-post .post-cat-link:hover { background: rgba(85, 134, 158, 0.28); color: #ffffff; }

.page-blog-single .blog-post-title,
.single-post .blog-post-title {
    color: #ffffff;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-size: clamp(2.1rem, 4.4vw, 3.25rem);
    margin: 0 0 16px;
}

.page-blog-single .blog-post-meta,
.single-post .blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}
.page-blog-single .blog-post-meta .meta-item i,
.single-post .blog-post-meta .meta-item i { color: #55869E; margin-right: 8px; }
.page-blog-single .blog-post-meta a,
.single-post .blog-post-meta a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.page-blog-single .blog-post-meta a:hover,
.single-post .blog-post-meta a:hover { color: #ffffff; }
.page-blog-single .meta-divider,
.single-post .meta-divider { opacity: 0.6; }

.page-blog-single .blog-post-section,
.single-post .blog-post-section {
    padding: 70px 0 110px;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 55%, #0a0a0a 100%);
}

.page-blog-single .blog-post-section .container,
.single-post .blog-post-section .container { max-width: 1140px; }

.page-blog-single article.post,
.single-post article.post {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.25);
}

.page-blog-single .post-thumbnail img,
.single-post .post-thumbnail img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.page-blog-single .entry-content,
.single-post .entry-content {
    padding: 2rem 2rem 1.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.85;
}

.page-blog-single .entry-content p,
.single-post .entry-content p { margin: 0 0 1.1rem; }

.page-blog-single .entry-content .is-style-lead,
.single-post .entry-content .is-style-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
}

.page-blog-single .entry-content h2,
.page-blog-single .entry-content h3,
.page-blog-single .entry-content h4,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 1.75rem 0 0.75rem;
    line-height: 1.25;
}

.page-blog-single .entry-content h2,
.single-post .entry-content h2 { font-size: 1.6rem; }
.page-blog-single .entry-content h3,
.single-post .entry-content h3 { font-size: 1.25rem; }

.page-blog-single .entry-content a,
.single-post .entry-content a { color: #79a9c0; }
.page-blog-single .entry-content a:hover,
.single-post .entry-content a:hover { color: #ffffff; }

.page-blog-single .entry-content ul,
.page-blog-single .entry-content ol,
.single-post .entry-content ul,
.single-post .entry-content ol { padding-left: 1.2rem; margin: 0 0 1.1rem; }

.page-blog-single .entry-content li,
.single-post .entry-content li { margin-bottom: 0.35rem; }

.page-blog-single .wp-block-image,
.single-post .wp-block-image { margin: 1.5rem 0; }
.page-blog-single .wp-block-image img,
.single-post .wp-block-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.page-blog-single .wp-block-image figcaption,
.single-post .wp-block-image figcaption {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.page-blog-single .wp-block-quote,
.single-post .wp-block-quote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(85, 134, 158, 0.25);
    background: rgba(85, 134, 158, 0.12);
}
.page-blog-single .wp-block-quote p,
.single-post .wp-block-quote p { margin: 0; font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); }
.page-blog-single .wp-block-quote cite,
.single-post .wp-block-quote cite { display: block; margin-top: 0.65rem; color: rgba(255, 255, 255, 0.65); font-style: normal; font-weight: 600; }

.page-blog-single .wp-block-separator,
.single-post .wp-block-separator { border-top: 1px solid rgba(255, 255, 255, 0.1); opacity: 1; margin: 1.5rem 0; }

.page-blog-single .entry-footer,
.single-post .entry-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-blog-single .post-tags,
.single-post .post-tags { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.page-blog-single .tags-label,
.single-post .tags-label { font-weight: 800; color: rgba(255, 255, 255, 0.75); display: inline-flex; gap: 10px; align-items: center; }
.page-blog-single .tags-label i,
.single-post .tags-label i { color: #55869E; }
.page-blog-single .post-tags a,
.single-post .post-tags a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
}
.page-blog-single .post-tags a:hover,
.single-post .post-tags a:hover { border-color: rgba(85, 134, 158, 0.35); color: #ffffff; }

.page-blog-single .post-share,
.single-post .post-share { display: flex; gap: 10px; align-items: center; }
.page-blog-single .share-label,
.single-post .share-label { font-weight: 800; color: rgba(255, 255, 255, 0.75); display: inline-flex; gap: 10px; align-items: center; }
.page-blog-single .share-label i,
.single-post .share-label i { color: #55869E; }
.page-blog-single .share-link,
.single-post .share-link {
    width: 38px; height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.page-blog-single .share-link:hover,
.single-post .share-link:hover { transform: translateY(-2px); border-color: rgba(85, 134, 158, 0.35); color: #ffffff; }

.page-blog-single .author-box,
.single-post .author-box {
    margin-top: 1.75rem;
    display: flex;
    gap: 14px;
    padding: 1.5rem 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.page-blog-single .author-avatar,
.single-post .author-avatar {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: rgba(85, 134, 158, 0.2);
    border: 1px solid rgba(85, 134, 158, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #ffffff;
    flex: 0 0 auto;
}
.page-blog-single .author-name,
.single-post .author-name { margin: 0 0 0.25rem; color: #ffffff; font-weight: 900; font-size: 1.15rem; }
.page-blog-single .author-bio,
.single-post .author-bio { margin: 0; color: rgba(255, 255, 255, 0.65); line-height: 1.7; }

.page-blog-single .post-nav,
.single-post .post-nav {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.page-blog-single .post-nav-link,
.single-post .post-nav-link {
    text-decoration: none;
    padding: 1.25rem 1.25rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
}
.page-blog-single .post-nav-link:hover,
.single-post .post-nav-link:hover { border-color: rgba(85, 134, 158, 0.28); color: #ffffff; }
.page-blog-single .nav-kicker,
.single-post .nav-kicker { display: block; font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #55869E; margin-bottom: 0.35rem; }
.page-blog-single .nav-title,
.single-post .nav-title { display: block; font-weight: 800; line-height: 1.35; }

.page-blog-single .comments-area,
.single-post .comments-area {
    margin-top: 1.25rem;
    padding: 1.5rem 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.page-blog-single .comments-title,
.single-post .comments-title { margin: 0 0 0.75rem; color: #ffffff; font-weight: 900; font-size: 1.15rem; }
.page-blog-single .comments-empty,
.single-post .comments-empty { margin: 0; color: rgba(255, 255, 255, 0.65); }

.page-blog-single .blog-related-section,
.single-post .blog-related-section { padding-top: 90px; }

@media (max-width: 991.98px) {
    .page-blog-single .post-thumbnail img,
    .single-post .post-thumbnail img { height: 340px; }
    .page-blog-single .entry-content,
    .single-post .entry-content { padding: 1.5rem 1.25rem 1rem; }
    .page-blog-single .entry-footer,
    .single-post .entry-footer { padding: 1.1rem 1.25rem 1.25rem; }
}

@media (max-width: 767.98px) {
    .page-blog-single .blog-post-hero,
    .single-post .blog-post-hero { padding: 120px 0 50px; }
    .page-blog-single .post-nav,
    .single-post .post-nav { grid-template-columns: 1fr; }
}

/* ==========================================================================
   GET STARTED PAGE - Form & Intro (reuses services hero)
   ========================================================================== */

.page-get-started .services-hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 0 80px; overflow: hidden; }
.page-get-started .services-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(15, 20, 25, 0.9) 40%, rgba(10, 22, 40, 0.85) 100%), url('../img/services-hero-bg.jpg') center center / cover no-repeat; z-index: 0; }
.page-get-started .services-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(85, 134, 158, 0.1) 0%, transparent 40%); z-index: 1; }
.page-get-started .hero-floating-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.page-get-started .floating-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(85, 134, 158, 0.2); animation: servicesFloatCircle 20s ease-in-out infinite; }
.page-get-started .floating-circle.circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.page-get-started .floating-circle.circle-2 { width: 300px; height: 300px; bottom: 10%; left: -50px; animation-delay: -5s; }
.page-get-started .floating-circle.circle-3 { width: 200px; height: 200px; top: 40%; right: 10%; border-color: rgba(85, 134, 158, 0.1); animation-delay: -10s; }
.page-get-started .floating-line { position: absolute; height: 2px; background: linear-gradient(90deg, transparent, rgba(85, 134, 158, 0.4), transparent); animation: servicesFloatLine 15s ease-in-out infinite; }
.page-get-started .floating-line.line-1 { width: 300px; top: 30%; left: 5%; transform: rotate(45deg); }
.page-get-started .floating-line.line-2 { width: 200px; bottom: 20%; right: 15%; transform: rotate(-30deg); animation-delay: -7s; }
.page-get-started .services-hero-section .container { position: relative; z-index: 10; }
.page-get-started .services-hero-content { text-align: left; }
.page-get-started .services-hero-content .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #55869E; margin-bottom: 1.5rem; padding: 0.625rem 1.25rem; background: rgba(85, 134, 158, 0.1); border: 1px solid rgba(85, 134, 158, 0.25); border-radius: 50px; }
.page-get-started .services-hero-content .hero-headline { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.15; color: #ffffff; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.page-get-started .services-hero-content .hero-subheading { font-size: 1.25rem; font-weight: 400; line-height: 1.8; color: rgba(255, 255, 255, 0.7); margin-bottom: 2.5rem; max-width: 560px; }
.page-get-started .hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.page-get-started .btn-hero-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%); color: #ffffff; font-size: 1rem; font-weight: 600; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(85, 134, 158, 0.3); }
.page-get-started .btn-hero-primary:hover { transform: translateY(-3px); color: #ffffff; }
.page-get-started .btn-hero-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; background: transparent; color: #ffffff; font-size: 1rem; font-weight: 500; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; transition: all 0.3s ease; }
.page-get-started .btn-hero-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.4); color: #ffffff; }
.page-get-started .services-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.page-get-started .stat-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 28px 24px; text-align: center; transition: all 0.3s ease; }
.page-get-started .stat-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(85, 134, 158, 0.25); transform: translateY(-4px); }
.page-get-started .stat-icon { font-size: 1.75rem; color: #55869E; margin-bottom: 12px; }
.page-get-started .stat-number { font-size: 2rem; font-weight: 800; color: #ffffff; line-height: 1.1; margin-bottom: 4px; }
.page-get-started .stat-label { font-size: 0.875rem; font-weight: 500; color: rgba(255, 255, 255, 0.6); }

.page-get-started .get-started-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 50%, #0a0a0a 100%);
}

.page-get-started .get-started-intro .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #55869E;
    margin-bottom: 1rem;
}

.page-get-started .get-started-intro .section-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.page-get-started .get-started-intro .section-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.75rem;
}

.page-get-started .get-started-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    gap: 0.75rem;
}
.page-get-started .get-started-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
}
.page-get-started .get-started-points i {
    color: #55869E;
    margin-top: 0.2rem;
}

.page-get-started .get-started-meta {
    display: grid;
    gap: 0.75rem;
}
.page-get-started .get-started-meta .meta-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.72);
}
.page-get-started .get-started-meta .meta-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}
.page-get-started .get-started-meta .meta-value {
    font-size: 0.95rem;
    font-weight: 600;
}

.page-get-started .get-started-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}
.page-get-started .get-started-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
}
.page-get-started .get-started-card-subtitle {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-get-started .get-started-form .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}
.page-get-started .get-started-form .required {
    color: #e57373;
    margin-left: 2px;
}

.page-get-started .get-started-form .form-control,
.page-get-started .get-started-form .form-select {
    background-color: rgba(6, 12, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-radius: 12px;
}

/* Ensure placeholder text is visible on dark inputs */
.page-get-started .get-started-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1; /* Firefox */
}
.page-get-started .get-started-form .form-control::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.55); }
.page-get-started .get-started-form .form-control::-ms-input-placeholder { color: rgba(255, 255, 255, 0.55); }

.page-get-started .get-started-form textarea.form-control::placeholder {
    color: rgba(255, 255, 255, 0.55);
}
.page-get-started .get-started-form .form-control:focus,
.page-get-started .get-started-form .form-select:focus {
    border-color: rgba(85, 134, 158, 0.8);
    box-shadow: 0 0 0 0.15rem rgba(85, 134, 158, 0.4);
    background-color: rgba(6, 12, 18, 0.95);
}

.page-get-started .get-started-check {
    padding: 0.4rem 0.5rem;
}
.page-get-started .get-started-check .form-check-input {
    background-color: transparent;
    border-radius: 0.45rem;
    border-color: rgba(255, 255, 255, 0.5);
}
.page-get-started .get-started-check .form-check-input:checked {
    background-color: #55869E;
    border-color: #55869E;
}
.page-get-started .get-started-check .form-check-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.page-get-started .get-started-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    border: none;
    font-weight: 600;
}
.page-get-started .get-started-submit i { font-size: 0.95rem; }

/* Subtle variant for secondary lead-form CTA */
.page-get-started .get-started-submit.get-started-submit-subtle {
    background: rgba(85, 134, 158, 0.12);
    border: 1px solid rgba(85, 134, 158, 0.45);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.page-get-started .get-started-submit.get-started-submit-subtle:hover {
    background: rgba(85, 134, 158, 0.2);
    border-color: rgba(85, 134, 158, 0.7);
    color: #ffffff;
}

.page-get-started .get-started-privacy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Fluent Forms styling inside Get Started form */
.page-get-started .get-started-form .fluentform .ff-el-group {
    margin-bottom: 1rem;
}

.page-get-started .get-started-form .fluentform .ff-el-input--content input[type="text"],
.page-get-started .get-started-form .fluentform .ff-el-input--content input[type="email"],
.page-get-started .get-started-form .fluentform .ff-el-input--content input[type="tel"],
.page-get-started .get-started-form .fluentform .ff-el-input--content input[type="url"],
.page-get-started .get-started-form .fluentform .ff-el-input--content select,
.page-get-started .get-started-form .fluentform .ff-el-input--content textarea {
    width: 100%;
    background-color: rgba(6, 12, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font-size: 0.95rem;
}

.page-get-started .get-started-form .fluentform .ff-el-input--content input::placeholder,
.page-get-started .get-started-form .fluentform .ff-el-input--content textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.page-get-started .get-started-form .fluentform .ff-el-input--content input:focus,
.page-get-started .get-started-form .fluentform .ff-el-input--content select:focus,
.page-get-started .get-started-form .fluentform .ff-el-input--content textarea:focus {
    border-color: rgba(85, 134, 158, 0.8);
    box-shadow: 0 0 0 0.15rem rgba(85, 134, 158, 0.4);
    background-color: rgba(6, 12, 18, 0.95);
}

.page-get-started .get-started-form .fluentform .ff-el-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.35rem;
}

.page-get-started .get-started-form .fluentform .ff-el-is-error .text-danger {
    font-size: 0.8rem;
    color: #e57373;
}

/* Fluent Forms checkbox / radio styling to match get-started design */
.page-get-started .get-started-form .fluentform .ff-el-form-check {
    padding: 0.4rem 0.5rem;
}

.page-get-started .get-started-form .fluentform .ff-el-form-check input[type="checkbox"],
.page-get-started .get-started-form .fluentform .ff-el-form-check .ff-el-form-check-input {
    background-color: transparent;
    border-radius: 0.45rem;
    border-color: rgba(255, 255, 255, 0.5);
}

.page-get-started .get-started-form .fluentform .ff-el-form-check input[type="checkbox"]:checked,
.page-get-started .get-started-form .fluentform .ff-el-form-check .ff-el-form-check-input:checked {
    background-color: #55869E;
    border-color: #55869E;
}

.page-get-started .get-started-form .fluentform .ff-el-form-check label.ff-el-form-check-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.page-get-started .get-started-form .fluentform .ff_submit_btn_wrapper .ff-btn-submit,
.page-get-started .get-started-form .fluentform .ff-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(85, 134, 158, 0.35);
}

.page-get-started .get-started-form .fluentform .ff_submit_btn_wrapper .ff-btn-submit:hover,
.page-get-started .get-started-form .fluentform .ff-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(85, 134, 158, 0.45);
}

@media (max-width: 991.98px) {
    .page-get-started .services-hero-section { min-height: auto; padding: 130px 0 70px; }
    .page-get-started .services-hero-content { text-align: center; margin-bottom: 50px; }
    .page-get-started .services-hero-content .hero-subheading { margin-left: auto; margin-right: auto; }
    .page-get-started .hero-cta-row { justify-content: center; }
    .page-get-started .services-hero-stats { max-width: 420px; margin-left: auto; margin-right: auto; }
    .page-get-started .get-started-section { padding: 90px 0 100px; }
    .page-get-started .get-started-card { margin-top: 1rem; }
}

@media (max-width: 767.98px) {
    .page-get-started .services-hero-section { padding: 120px 0 60px; }
    .page-get-started .services-hero-content .hero-headline { font-size: 2rem; }
    .page-get-started .services-hero-stats { grid-template-columns: 1fr; gap: 15px; }
    .page-get-started .get-started-section { padding: 80px 0 90px; }
    .page-get-started .get-started-card { padding: 1.6rem 1.4rem 1.5rem; }
}

/* ==========================================================================
   FAQ PAGE (Scoped under .page-faq)
   ========================================================================== */
.page-faq .services-hero-section { position: relative; min-height: 70vh; display: flex; align-items: center; padding: 140px 0 80px; overflow: hidden; }
.page-faq .services-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.page-faq .services-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(85, 134, 158, 0.1) 0%, transparent 40%); z-index: 1; }
.page-faq .services-hero-section .container { position: relative; z-index: 10; }
.page-faq .services-hero-content { text-align: center; }
.page-faq .services-hero-content .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #55869E; margin-bottom: 1.5rem; padding: 0.625rem 1.25rem; background: rgba(85, 134, 158, 0.1); border: 1px solid rgba(85, 134, 158, 0.25); border-radius: 50px; }
.page-faq .services-hero-content .hero-headline { font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 800; color: #ffffff; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.page-faq .services-hero-content .hero-subheading { font-size: 1.125rem; color: rgba(255, 255, 255, 0.7); line-height: 1.7; max-width: 780px; margin: 0 auto; }

.page-faq .faq-section { padding: 100px 0; background: #0a0a0a; }
.page-faq .faq-header { margin-bottom: 60px; }
.page-faq .faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.page-faq .faq-item { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 14px; overflow: hidden; transition: all 0.3s ease; }
.page-faq .faq-item:hover { border-color: rgba(85, 134, 158, 0.2); }
.page-faq .faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; cursor: pointer; transition: background 0.3s ease; }
.page-faq .faq-question:hover { background: rgba(255, 255, 255, 0.02); }
.page-faq .faq-question h4 { font-size: 1rem; font-weight: 600; color: #ffffff; margin: 0; padding-right: 20px; }
.page-faq .faq-toggle { width: 28px; height: 28px; min-width: 28px; background: rgba(85, 134, 158, 0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.page-faq .faq-toggle i { font-size: 0.75rem; color: #55869E; transition: transform 0.3s ease; }
.page-faq .faq-item.active .faq-toggle { background: #55869E; }
.page-faq .faq-item.active .faq-toggle i { color: #ffffff; transform: rotate(45deg); }
.page-faq .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.page-faq .faq-item.active .faq-answer { max-height: 380px; }
.page-faq .faq-answer p { padding: 0 24px 22px; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin: 0; }

@media (max-width: 991.98px) {
  .page-faq .services-hero-section { min-height: auto; padding: 130px 0 70px; }
  .page-faq .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  .page-faq .services-hero-section { padding: 120px 0 60px; }
  .page-faq .services-hero-content .hero-headline { font-size: 2rem; }
  .page-faq .faq-section { padding: 80px 0; }
}

/* ==========================================================================
   SERVICES PAGE RESPONSIVE STYLES (Scoped under .page-services)
   ========================================================================== */

@media (max-width: 1199.98px) {
    .page-services .services-zigzag {
        gap: 80px;
    }
    
    .page-services .service-zigzag-item {
        gap: 50px;
    }
    
    .page-services .service-zigzag-number {
        font-size: 6rem;
    }
    
    .page-services .service-zigzag-title {
        font-size: 1.75rem;
    }
    
    .page-services .service-zigzag-image img {
        height: 350px;
    }
}

@media (max-width: 991.98px) {
    .page-services .services-hero-section {
        min-height: auto;
        padding: 130px 0 70px;
    }
    
    .page-services .services-hero-content {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .page-services .services-hero-content .hero-subheading {
        margin-left: auto;
        margin-right: auto;
    }
    
    .page-services .hero-cta-row {
        justify-content: center;
    }
    
    .page-services .services-hero-stats {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .page-services .services-listing-section {
        padding: 80px 0 100px;
    }
    
    .page-services .services-zigzag {
        gap: 70px;
    }
    
    .page-services .service-zigzag-item {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 70px;
    }
    
    .page-services .service-zigzag-item::after {
        width: 80%;
    }
    
    .page-services .service-zigzag-item.reverse {
        direction: ltr;
    }
    
    .page-services .service-zigzag-number {
        font-size: 5rem;
        top: -10px;
        left: -10px;
    }
    
    .page-services .service-zigzag-image {
        order: -1;
    }
    
    .page-services .service-zigzag-image img {
        height: 320px;
    }
    
    .page-services .service-zigzag-image::before {
        display: none;
    }
    
    .page-services .why-choose-section {
        padding: 80px 0;
    }
    
    .page-services .why-choose-content {
        margin-bottom: 50px;
    }
    
    .page-services .why-choose-content .section-title,
    .page-services .why-choose-content .section-tag {
        text-align: center;
    }
    
    .page-services .why-choose-content .section-desc {
        text-align: center;
    }
    
    .page-services .why-choose-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .page-services .services-hero-section {
        padding: 120px 0 60px;
    }
    
    .page-services .services-hero-content .hero-headline {
        font-size: 2rem;
    }
    
    .page-services .services-hero-content .hero-subheading {
        font-size: 1.0625rem;
    }
    
    .page-services .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }
    
    .page-services .btn-hero-primary,
    .page-services .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .page-services .services-hero-stats {
        gap: 15px;
    }
    
    .page-services .stat-card {
        padding: 20px 15px;
    }
    
    .page-services .stat-number {
        font-size: 1.75rem;
    }
    
    .page-services .services-section-header {
        margin-bottom: 40px;
    }
    
    .page-services .services-zigzag {
        gap: 60px;
    }
    
    .page-services .service-zigzag-item {
        gap: 30px;
        padding-bottom: 60px;
    }
    
    .page-services .service-zigzag-item::after {
        width: 90%;
    }
    
    .page-services .service-zigzag-item::before {
        width: 8px;
        height: 8px;
        bottom: -4px;
    }
    
    .page-services .service-zigzag-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .page-services .service-zigzag-icon i {
        font-size: 1.5rem;
    }
    
    .page-services .service-zigzag-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .page-services .service-zigzag-desc {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .page-services .service-zigzag-tags {
        margin-bottom: 1.5rem;
    }
    
    .page-services .service-tag {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    
    .page-services .service-zigzag-image img {
        height: 280px;
    }
    
    .page-services .service-zigzag-btn {
        width: 100%;
        justify-content: center;
    }
    
    .page-services .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .page-services .services-cta-section {
        padding: 70px 0;
    }
    
    .page-services .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-services .btn-cta-primary,
    .page-services .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .page-services .services-hero-section {
        padding: 110px 0 50px;
    }
    
    .page-services .services-hero-content .hero-eyebrow {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .page-services .services-hero-content .hero-headline {
        font-size: 1.75rem;
    }
    
    .page-services .stat-card {
        padding: 18px 12px;
    }
    
    .page-services .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .page-services .stat-icon i {
        font-size: 1rem;
    }
    
    .page-services .stat-number {
        font-size: 1.5rem;
    }
    
    .page-services .stat-label {
        font-size: 0.6875rem;
    }
    
    .page-services .section-title {
        font-size: 1.75rem;
    }
    
    .page-services .services-zigzag {
        gap: 50px;
    }
    
    .page-services .service-zigzag-item {
        padding-bottom: 50px;
    }
    
    .page-services .service-zigzag-item::after {
        width: 100%;
    }
    
    .page-services .service-zigzag-item::before {
        width: 6px;
        height: 6px;
        bottom: -3px;
    }
    
    .page-services .service-zigzag-number {
        font-size: 4rem;
    }
    
    .page-services .service-zigzag-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 18px;
    }
    
    .page-services .service-zigzag-icon i {
        font-size: 1.25rem;
    }
    
    .page-services .service-zigzag-title {
        font-size: 1.375rem;
    }
    
    .page-services .service-zigzag-desc {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    .page-services .service-zigzag-tags {
        gap: 8px;
        margin-bottom: 1.25rem;
    }
    
    .page-services .service-tag {
        padding: 6px 12px;
        font-size: 0.6875rem;
    }
    
    .page-services .service-zigzag-image img {
        height: 240px;
    }
    
    .page-services .service-zigzag-btn {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }
    
    .page-services .floating-badge {
        padding: 15px 20px;
        bottom: 30px;
    }
    
    .page-services .badge-number {
        font-size: 1.5rem;
    }
    
    .page-services .cta-title {
        font-size: 1.75rem;
    }
    
    .page-services .cta-subtitle {
        font-size: 1rem;
    }
}

/* ==========================================================================
   SERVICE DETAIL PAGE STYLES (Scoped under .page-service-detail)
   ========================================================================== */

/* Inner page header - logo white for service detail pages */
.page-service-detail .main-header .logo-img {
    filter: brightness(0) invert(1);
}

/* --- Service Detail Hero Section --- */
.page-service-detail .service-detail-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.page-service-detail .service-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(15, 25, 35, 0.92) 50%, rgba(10, 22, 40, 0.9) 100%),
                url('../img/ppc-hero-bg.jpg') center center / cover no-repeat;
    z-index: 0;
}

.page-service-detail .service-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(85, 134, 158, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(85, 134, 158, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.page-service-detail .service-detail-hero .container {
    position: relative;
    z-index: 10;
}

/* Breadcrumb */
.page-service-detail .hero-breadcrumb {
    margin-bottom: 1.5rem;
}

.page-service-detail .hero-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-service-detail .hero-breadcrumb .breadcrumb-item {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.page-service-detail .hero-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-service-detail .hero-breadcrumb .breadcrumb-item a:hover {
    color: #55869E;
}

.page-service-detail .hero-breadcrumb .breadcrumb-item.active {
    color: #55869E;
}

.page-service-detail .hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* Hero Badge */
.page-service-detail .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #55869E;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(85, 134, 158, 0.1);
    border: 1px solid rgba(85, 134, 158, 0.25);
    border-radius: 50px;
}

.page-service-detail .hero-badge i {
    font-size: 1rem;
}

/* Hero Title */
.page-service-detail .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.page-service-detail .hero-title .text-gradient {
    background: linear-gradient(135deg, #55869E 0%, #7ab5cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.page-service-detail .hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

/* Hero CTA Group */
.page-service-detail .hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.page-service-detail .btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(85, 134, 158, 0.3);
}

.page-service-detail .btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(85, 134, 158, 0.5);
    color: #ffffff;
}

.page-service-detail .btn-primary-cta i {
    transition: transform 0.3s ease;
}

.page-service-detail .btn-primary-cta:hover i {
    transform: translateX(5px);
}

.page-service-detail .btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-service-detail .btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.page-service-detail .btn-secondary-cta i {
    font-size: 1.25rem;
    color: #55869E;
}

/* Hero Stats Grid */
.page-service-detail .hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.page-service-detail .hero-lead-form.get-started-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.page-service-detail .hero-lead-form .get-started-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.page-service-detail .hero-lead-form .get-started-card-subtitle {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-service-detail .hero-lead-form .get-started-privacy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Fluent Forms styling inside Service Detail hero form (match SEO Location / Get Started) */
.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-group {
    margin-bottom: 1rem;
}

.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-input--content input[type="text"],
.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-input--content input[type="email"],
.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-input--content input[type="tel"],
.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-input--content input[type="url"],
.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-input--content select,
.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-input--content textarea {
    width: 100%;
    background-color: rgba(6, 12, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font-size: 0.95rem;
}

.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-input--content input::placeholder,
.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-input--content textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-input--content input:focus,
.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-input--content select:focus,
.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-input--content textarea:focus {
    border-color: rgba(85, 134, 158, 0.8);
    box-shadow: 0 0 0 0.15rem rgba(85, 134, 158, 0.4);
    background-color: rgba(6, 12, 18, 0.95);
}

.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.35rem;
}

.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-el-is-error .text-danger {
    font-size: 0.8rem;
    color: #e57373;
}

.page-service-detail .hero-lead-form.get-started-form .fluentform .ff_submit_btn_wrapper .ff-btn-submit,
.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(85, 134, 158, 0.35);
}

.page-service-detail .hero-lead-form.get-started-form .fluentform .ff_submit_btn_wrapper .ff-btn-submit:hover,
.page-service-detail .hero-lead-form.get-started-form .fluentform .ff-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(85, 134, 158, 0.45);
}

.page-service-detail .hero-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.page-service-detail .hero-stat-card:hover {
    background: rgba(85, 134, 158, 0.1);
    border-color: rgba(85, 134, 158, 0.3);
    transform: translateY(-5px);
}

.page-service-detail .hero-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(85, 134, 158, 0.2) 0%, rgba(85, 134, 158, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.page-service-detail .hero-stat-card .stat-icon i {
    font-size: 1.25rem;
    color: #55869E;
}

.page-service-detail .hero-stat-card .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 5px;
}

.page-service-detail .hero-stat-card .stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Section Badge (Shared) --- */
.page-service-detail .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #55869E;
    margin-bottom: 1rem;
}

.page-service-detail .section-badge i {
    font-size: 1rem;
}

.page-service-detail .section-badge.light {
    color: rgba(255, 255, 255, 0.8);
}

.page-service-detail .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-service-detail .section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.page-service-detail .section-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* --- About Service Section --- */
.page-service-detail .about-service-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1117 0%, #0a0a0a 100%);
}

.page-service-detail .about-service-image {
    position: relative;
    padding: 20px;
}

.page-service-detail .about-service-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.page-service-detail .about-service-image .image-accent-border {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 2px solid rgba(85, 134, 158, 0.3);
    border-radius: 20px;
    z-index: 1;
}

.page-service-detail .about-service-content {
    padding-left: 40px;
}

.page-service-detail .about-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.page-service-detail .about-text:last-of-type {
    margin-bottom: 2rem;
}

.page-service-detail .about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.page-service-detail .highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(85, 134, 158, 0.08);
    border: 1px solid rgba(85, 134, 158, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.page-service-detail .highlight-item:hover {
    background: rgba(85, 134, 158, 0.15);
    border-color: rgba(85, 134, 158, 0.3);
}

.page-service-detail .highlight-item i {
    font-size: 1rem;
    color: #55869E;
}

.page-service-detail .highlight-item span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
}

/* --- Platforms Section --- */
.page-service-detail .platforms-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.page-service-detail .platforms-header {
    margin-bottom: 60px;
}

.page-service-detail .platforms-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.page-service-detail .platform-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.page-service-detail .platform-card:hover {
    background: rgba(85, 134, 158, 0.1);
    border-color: rgba(85, 134, 158, 0.3);
    transform: translateY(-8px);
}

.page-service-detail .platform-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(85, 134, 158, 0.15) 0%, rgba(85, 134, 158, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.4s ease;
}

.page-service-detail .platform-card:hover .platform-icon {
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    transform: scale(1.1);
}

.page-service-detail .platform-icon i {
    font-size: 1.75rem;
    color: #55869E;
    transition: color 0.4s ease;
}

.page-service-detail .platform-card:hover .platform-icon i {
    color: #ffffff;
}

.page-service-detail .platform-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-service-detail .platform-card p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}

/* --- Services Included Section --- */
.page-service-detail .services-included-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 100%);
}

.page-service-detail .services-included-content {
    padding-right: 40px;
}

.page-service-detail .services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page-service-detail .service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.page-service-detail .service-item:hover {
    background: rgba(85, 134, 158, 0.08);
    border-color: rgba(85, 134, 158, 0.2);
}

.page-service-detail .service-item .service-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(85, 134, 158, 0.15) 0%, rgba(85, 134, 158, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-service-detail .service-item .service-icon i {
    font-size: 1.25rem;
    color: #55869E;
}

.page-service-detail .service-info h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.page-service-detail .service-info p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

/* Services Included Image */
.page-service-detail .services-included-image {
    position: relative;
}

.page-service-detail .services-included-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.page-service-detail .floating-metrics {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.page-service-detail .metric-card {
    position: absolute;
    background: rgba(15, 20, 30, 0.95);
    border: 1px solid rgba(85, 134, 158, 0.3);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: floatMetric 4s ease-in-out infinite;
}

.page-service-detail .metric-card.metric-1 {
    top: 20%;
    right: -30px;
}

.page-service-detail .metric-card.metric-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: -2s;
}

@keyframes floatMetric {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.page-service-detail .metric-icon {
    width: 36px;
    height: 36px;
    background: rgba(85, 134, 158, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-service-detail .metric-card.metric-1 .metric-icon {
    background: rgba(34, 197, 94, 0.2);
}

.page-service-detail .metric-card.metric-1 .metric-icon i {
    color: #22c55e;
}

.page-service-detail .metric-card.metric-2 .metric-icon {
    background: rgba(34, 197, 94, 0.2);
}

.page-service-detail .metric-card.metric-2 .metric-icon i {
    color: #22c55e;
}

.page-service-detail .metric-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
}

.page-service-detail .metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Process Section --- */
.page-service-detail .process-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.page-service-detail .process-header {
    margin-bottom: 70px;
}

.page-service-detail .process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.page-service-detail .process-step {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
}

.page-service-detail .process-step:hover {
    background: rgba(85, 134, 158, 0.08);
    border-color: rgba(85, 134, 158, 0.25);
    transform: translateY(-8px);
}

.page-service-detail .step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(85, 134, 158, 0.15);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.page-service-detail .step-content {
    position: relative;
    z-index: 2;
}

.page-service-detail .step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(85, 134, 158, 0.15) 0%, rgba(85, 134, 158, 0.05) 100%);
    border: 1px solid rgba(85, 134, 158, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.page-service-detail .process-step:hover .step-icon {
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    border-color: transparent;
}

.page-service-detail .step-icon i {
    font-size: 1.5rem;
    color: #55869E;
    transition: color 0.4s ease;
}

.page-service-detail .process-step:hover .step-icon i {
    color: #ffffff;
}

.page-service-detail .step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.page-service-detail .step-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* --- Benefits Section --- */
.page-service-detail .benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1117 0%, #0a0a0a 100%);
}

.page-service-detail .benefits-content {
    padding-right: 40px;
}

.page-service-detail .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.page-service-detail .benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.page-service-detail .benefit-card:hover {
    background: rgba(85, 134, 158, 0.08);
    border-color: rgba(85, 134, 158, 0.2);
    transform: translateY(-5px);
}

.page-service-detail .benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(85, 134, 158, 0.15) 0%, rgba(85, 134, 158, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.page-service-detail .benefit-icon i {
    font-size: 1.25rem;
    color: #55869E;
}

.page-service-detail .benefit-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-service-detail .benefit-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.6;
}

/* --- FAQ Section --- */
.page-service-detail .faq-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.page-service-detail .faq-header {
    margin-bottom: 60px;
}

.page-service-detail .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-service-detail .faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-service-detail .faq-item:hover {
    border-color: rgba(85, 134, 158, 0.2);
}

.page-service-detail .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.page-service-detail .faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.page-service-detail .faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    padding-right: 20px;
}

.page-service-detail .faq-toggle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(85, 134, 158, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-service-detail .faq-toggle i {
    font-size: 0.75rem;
    color: #55869E;
    transition: transform 0.3s ease;
}

.page-service-detail .faq-item.active .faq-toggle {
    background: #55869E;
}

.page-service-detail .faq-item.active .faq-toggle i {
    color: #ffffff;
    transform: rotate(45deg);
}

.page-service-detail .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.page-service-detail .faq-item.active .faq-answer {
    max-height: 300px;
}

.page-service-detail .faq-answer p {
    padding: 0 24px 22px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* --- Service CTA Section --- */
.page-service-detail .service-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1922 0%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.page-service-detail .service-cta-section .cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(85, 134, 158, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.page-service-detail .service-cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.page-service-detail .service-cta-section .cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-service-detail .service-cta-section .cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.page-service-detail .service-cta-section .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.page-service-detail .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    color: #ffffff;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(85, 134, 158, 0.35);
}

.page-service-detail .btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(85, 134, 158, 0.5);
    color: #ffffff;
}

.page-service-detail .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.0625rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-service-detail .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.page-service-detail .btn-cta-secondary i {
    color: #55869E;
}

.page-service-detail .cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ==========================================================================
   SERVICE DETAIL PAGE RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1199.98px) {
    .page-service-detail .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .page-service-detail .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .page-service-detail .service-detail-hero {
        min-height: auto;
        padding: 130px 0 80px;
    }
    
    .page-service-detail .service-detail-hero-content {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .page-service-detail .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .page-service-detail .hero-cta-group {
        justify-content: center;
    }
    
    .page-service-detail .hero-stats-grid {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .page-service-detail .about-service-section {
        padding: 80px 0;
    }
    
    .page-service-detail .about-service-image {
        margin-bottom: 50px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .page-service-detail .about-service-content {
        padding-left: 0;
        text-align: center;
    }
    
    .page-service-detail .about-highlights {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .page-service-detail .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-service-detail .services-included-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .page-service-detail .services-included-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .page-service-detail .metric-card.metric-1 {
        right: 10px;
    }
    
    .page-service-detail .metric-card.metric-2 {
        left: 10px;
    }
    
    .page-service-detail .process-timeline {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .page-service-detail .benefits-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .page-service-detail .benefits-content .btn-primary-cta {
        margin: 0 auto;
    }
    
    .page-service-detail .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .page-service-detail .service-detail-hero {
        padding: 120px 0 60px;
    }
    
    .page-service-detail .hero-title {
        font-size: 2rem;
    }
    
    .page-service-detail .hero-description {
        font-size: 1.0625rem;
    }
    
    .page-service-detail .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .page-service-detail .btn-primary-cta,
    .page-service-detail .btn-secondary-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .page-service-detail .hero-stats-grid {
        gap: 15px;
    }
    
    .page-service-detail .hero-stat-card {
        padding: 20px;
    }
    
    .page-service-detail .hero-stat-card .stat-value {
        font-size: 1.75rem;
    }
    
    .page-service-detail .about-service-section,
    .page-service-detail .platforms-section,
    .page-service-detail .services-included-section,
    .page-service-detail .process-section,
    .page-service-detail .benefits-section,
    .page-service-detail .faq-section,
    .page-service-detail .service-cta-section {
        padding: 70px 0;
    }
    
    .page-service-detail .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .page-service-detail .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .page-service-detail .platform-card {
        padding: 24px 16px;
    }
    
    .page-service-detail .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .page-service-detail .service-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-service-detail .btn-cta-primary,
    .page-service-detail .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .page-service-detail .service-detail-hero {
        padding: 110px 0 50px;
    }
    
    .page-service-detail .hero-badge {
        font-size: 0.75rem;
        padding: 0.625rem 1.125rem;
    }
    
    .page-service-detail .hero-title {
        font-size: 1.75rem;
    }
    
    .page-service-detail .hero-stat-card {
        padding: 18px 14px;
    }
    
    .page-service-detail .hero-stat-card .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .page-service-detail .hero-stat-card .stat-value {
        font-size: 1.5rem;
    }
    
    .page-service-detail .hero-stat-card .stat-label {
        font-size: 0.6875rem;
    }
    
    .page-service-detail .section-title {
        font-size: 1.75rem;
    }
    
    .page-service-detail .platforms-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .page-service-detail .platform-card {
        padding: 20px 12px;
    }
    
    .page-service-detail .platform-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .page-service-detail .platform-icon i {
        font-size: 1.5rem;
    }
    
    .page-service-detail .platform-card h3 {
        font-size: 0.875rem;
    }
    
    .page-service-detail .platform-card p {
        font-size: 0.75rem;
    }
    
    .page-service-detail .service-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .page-service-detail .metric-card {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .page-service-detail .metric-value {
        font-size: 1rem;
    }
    
    .page-service-detail .process-step {
        padding: 35px 24px;
    }
    
    .page-service-detail .step-number {
        font-size: 2.5rem;
        left: 24px;
    }
    
    .page-service-detail .benefit-card {
        padding: 22px;
    }
    
    .page-service-detail .faq-question {
        padding: 18px 20px;
    }
    
    .page-service-detail .faq-question h4 {
        font-size: 0.9375rem;
    }
    
    .page-service-detail .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.875rem;
    }
    
    .page-service-detail .service-cta-section .cta-title {
        font-size: 1.75rem;
    }
    
    .page-service-detail .service-cta-section .cta-subtitle {
        font-size: 1rem;
    }
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.page-404 .services-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.page-404 .services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(15, 20, 25, 0.9) 40%, rgba(10, 22, 40, 0.85) 100%), url('../img/services-hero-bg.jpg') center center / cover no-repeat;
    z-index: 0;
}

.page-404 .services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(85, 134, 158, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(85, 134, 158, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.page-404 .hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.page-404 .floating-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(85, 134, 158, 0.2);
    animation: servicesFloatCircle 20s ease-in-out infinite;
}

.page-404 .floating-circle.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.page-404 .floating-circle.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -50px;
    animation-delay: -5s;
}

.page-404 .floating-circle.circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    border-color: rgba(85, 134, 158, 0.1);
    animation-delay: -10s;
}

.page-404 .floating-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(85, 134, 158, 0.4), transparent);
    animation: servicesFloatLine 15s ease-in-out infinite;
}

.page-404 .floating-line.line-1 {
    width: 300px;
    top: 30%;
    left: 5%;
    transform: rotate(45deg);
}

.page-404 .floating-line.line-2 {
    width: 200px;
    bottom: 20%;
    right: 15%;
    transform: rotate(-30deg);
    animation-delay: -7s;
}

.page-404 .services-hero-section .container {
    position: relative;
    z-index: 10;
}

.page-404 .services-hero-content {
    text-align: left;
}

.page-404 .services-hero-content .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #55869E;
    margin-bottom: 1.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(85, 134, 158, 0.1);
    border: 1px solid rgba(85, 134, 158, 0.25);
    border-radius: 50px;
}

.page-404 .services-hero-content .hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.page-404 .services-hero-content .hero-subheading {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.page-404 .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.page-404 .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #55869E 0%, #3d6a7e 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(85, 134, 158, 0.3);
}

.page-404 .btn-hero-primary:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.page-404 .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-404 .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.page-404 .error-404-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.25);
}

.page-404 .error-404-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.9rem;
}

.page-404 .error-404-search {
    display: flex;
    gap: 12px;
    align-items: center;
}

.page-404 .error-404-search input[type="search"] {
    width: 100%;
    background-color: rgba(6, 12, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
}

.page-404 .error-404-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.page-404 .error-404-help {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

@media (max-width: 991.98px) {
    .page-404 .services-hero-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .page-404 .hero-cta-row {
        justify-content: center;
    }

    .page-404 .error-404-search {
        flex-direction: column;
        align-items: stretch;
    }
}
