/* ============================================================
   RevTechSquare â€” RevTechSquare, LLC
   Master Stylesheet v3.0
   
   TABLE OF CONTENTS
   ------------------
   1.  CSS Custom Properties (Variables)
   2.  Reset & Normalize
   3.  Base & Typography
   4.  Layout & Grid Utilities
   5.  Utility Classes
   6.  Skip Link (Accessibility)
   7.  Preloader
   8.  Cookie Consent Banner
   9.  Announcement Bar
   10. Navbar
   11. Hero Section
   12. Stats Bar
   13. Services Overview Section
   14. About / Why Choose Us Section
   15. How It Works / Process Section
   16. Testimonials Section
   17. Other Services Preview Section
   18. CTA Banner Section
   19. Newsletter Section
   20. Footer
   21. Scroll-to-Top Button
   22. Mobile Floating CTA
   23. Inner Page Hero Banner
   24. Services Page (services.html)
   25. Other Services Page
   26. About Page
   27. Contact Page
   28. Thank-You Page
   29. 404 Page
   30. Privacy / Terms Pages
   31. Form Component Styles
   32. Card Component Styles
   33. Breadcrumb Component
   34. FAQ / Accordion
   35. Badges & Tags
   36. Animation Keyframes
   37. Scroll-Reveal Animation Classes
   38. Responsive â€” Mobile-First Overrides
   39. Print Styles
   40. Accessibility Focus & Reduced Motion
   ============================================================ */

/* =============================================================
   1. CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================================= */
:root {
    /* ---- Color Palette ---- */
    --color-primary: #193441;
    --color-primary-rgb: 25, 52, 65;
    --color-secondary: #ecf4f7;
    --color-secondary-rgb: 236, 244, 247;
    --color-accent: #2a8fa8;
    --color-accent-rgb: 42, 143, 168;
    --color-accent-hover: #1e7a91;
    --color-accent-light: #e8f4f8;
    --color-white: #ffffff;
    --color-text-dark: #1a1a2e;
    --color-text-medium: #4a5568;
    --color-text-light: #6b7a8d;
    --color-border: #d1dce6;
    --color-success: #28a745;
    --color-error: #dc3545;
    --color-warning: #ffc107;
    --color-overlay: rgba(25, 52, 65, 0.92);
    --wrapper-bg: #0b0d14;
    --cube-color: #0000;
    --highlight-color: #00cc44;

    /* ---- Gradients ---- */
    --gradient-hero: linear-gradient(135deg, #193441 0%, #1e4d5e 50%, #2a8fa8 100%);
    --gradient-cta: linear-gradient(135deg, #2a8fa8 0%, #193441 100%);
    --gradient-card-hover: linear-gradient(180deg, #ffffff 0%, #ecf4f7 100%);
    --gradient-section-alt: linear-gradient(180deg, #ecf4f7 0%, #ffffff 100%);
    --gradient-footer: linear-gradient(180deg, #0f2129 0%, #193441 100%);

    /* ---- Typography ---- */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Inter', sans-serif;
    --fs-hero: clamp(2.5rem, 5vw, 4rem);
    --fs-h1: clamp(2rem, 4vw, 3rem);
    --fs-h2: clamp(1.6rem, 3.5vw, 2.4rem);
    --fs-h3: clamp(1.2rem, 2vw, 1.6rem);
    --fs-h4: clamp(1rem, 1.5vw, 1.25rem);
    --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
    --fs-small: clamp(0.8rem, 1vw, 0.9rem);
    --fs-button: clamp(0.9rem, 1.1vw, 1rem);

    /* ---- Spacing (8px grid) ---- */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* ---- Shadows ---- */
    --shadow-sm: 0 1px 3px rgba(25, 52, 65, 0.06);
    --shadow-md: 0 4px 12px rgba(25, 52, 65, 0.08);
    --shadow-lg: 0 8px 30px rgba(25, 52, 65, 0.12);
    --shadow-xl: 0 20px 60px rgba(25, 52, 65, 0.15);
    --shadow-hover: 0 12px 40px rgba(42, 143, 168, 0.2);
    --shadow-card: 0 2px 8px rgba(25, 52, 65, 0.06),
        0 8px 24px rgba(25, 52, 65, 0.04);

    /* ---- Border Radius ---- */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    --radius-round: 50%;

    /* ---- Transitions ---- */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* ---- Container Widths ---- */
    --container-default: 1200px;
    --container-wide: 1400px;
    --container-narrow: 800px;

    /* ---- Navbar Height ---- */
    --navbar-height: 76px;
    --navbar-height-sm: 54px;
}

/* =============================================================
   2. RESET & NORMALIZE
   ============================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-dark);

    /* Global Initial Background with Gradient Blur Grid */
    background-color: #ffffff;
    background-image:
        linear-gradient(to right, rgba(42, 143, 168, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(42, 143, 168, 0.08) 1px, transparent 1px),
        radial-gradient(circle 600px at 0% 200px, rgba(42, 143, 168, 0.12), transparent),
        radial-gradient(circle 600px at 100% 200px, rgba(42, 143, 168, 0.12), transparent);
    background-size: 20px 20px, 20px 20px, 100% 100%, 100% 100%;
    background-position: center top;
    background-repeat: repeat, repeat, no-repeat, no-repeat;
    background-attachment: fixed;

    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sections below the hero restore white bg automatically via section styles */
.section,
.section--alt,
footer {
    background-color: transparent;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-accent-hover);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* =============================================================
   3. BASE & TYPOGRAPHY
   ============================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-dark);
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-medium);
}

p:last-child {
    margin-bottom: 0;
}

strong,
b {
    font-weight: 600;
}

/* =============================================================
   4. LAYOUT & GRID UTILITIES
   ============================================================= */
.container-custom {
    width: 100%;
    max-width: var(--container-default);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-wide {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    width: 100%;
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Section base padding */
.section {
    padding: var(--space-5xl) 0;
}

.section--alt {
    background-color: var(--color-secondary);
}

.section--dark {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.section--gradient-alt {
    background: var(--gradient-section-alt);
}

/* Section headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl) auto;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section--dark .section-eyebrow {
    color: var(--color-accent-light);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section--dark .section-header h2 {
    color: var(--color-white);
}

.section-header p {
    color: var(--color-text-medium);
    font-size: var(--fs-body);
}

.section--dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* Decorative underline beneath section headings */
.section-underline {
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: var(--space-md) auto 0 auto;
    border-radius: 2px;
}

/* =============================================================
   5. UTILITY CLASSES
   ============================================================= */
.text-accent {
    color: var(--color-accent) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-dark {
    color: var(--color-text-dark) !important;
}

.text-medium {
    color: var(--color-text-medium) !important;
}

.text-light {
    color: var(--color-text-light) !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-sm {
    margin-bottom: var(--space-sm) !important;
}

.mb-md {
    margin-bottom: var(--space-md) !important;
}

.mb-lg {
    margin-bottom: var(--space-lg) !important;
}

.mb-xl {
    margin-bottom: var(--space-xl) !important;
}

.mb-2xl {
    margin-bottom: var(--space-2xl) !important;
}

.mt-md {
    margin-top: var(--space-md) !important;
}

.mt-lg {
    margin-top: var(--space-lg) !important;
}

.mt-xl {
    margin-top: var(--space-xl) !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.gap-sm {
    gap: var(--space-sm) !important;
}

.gap-md {
    gap: var(--space-md) !important;
}

.gap-lg {
    gap: var(--space-lg) !important;
}

.align-center {
    align-items: center !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-between {
    justify-content: space-between !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

/* Screen-reader only (visually hidden) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* =============================================================
   6. SKIP LINK (ACCESSIBILITY)
   ============================================================= */
.skip-link {
    position: absolute;
    top: -100px;
    left: var(--space-md);
    z-index: 10000;
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--color-accent);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    color: var(--color-white);
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

/* =============================================================
   7. PRELOADER
   ============================================================= */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #d4eaf7;
    perspective: 1000px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =============================================================
   7. PRELOADER
   ============================================================= */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #d4eaf7;
    perspective: 1000px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pl {
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 14em;
    height: 14em;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    color: #0a1628;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.pl__dot {
    position: absolute;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: linear-gradient(135deg, #1b6b93, #2a8fa8);
    box-shadow: 0 0.15em 0.5em rgba(27, 107, 147, 0.3), inset 0 0 0.2em rgba(255, 255, 255, 0.4);
    animation: pushInOut1724 2.4s ease-in-out infinite, shadow724 2.4s ease-in-out infinite;
    z-index: 5;
}

.pl__dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: inset 0.1em 0.1em 0.2em rgba(255, 255, 255, 0.8), 0.15em 0.15em 0.4em rgba(0, 0, 0, 0.15);
    animation: pushInOut2724 2.4s ease-in-out infinite;
    z-index: -1;
}

.pl__dot:nth-child(1) {
    left: 11.25em;
    top: 6.25em;
    animation-delay: 0.0s;
}

.pl__dot:nth-child(1)::before {
    animation-delay: 0.0s;
}

.pl__dot:nth-child(2) {
    left: 10.58em;
    top: 8.75em;
    animation-delay: 0.2s;
}

.pl__dot:nth-child(2)::before {
    animation-delay: 0.2s;
}

.pl__dot:nth-child(3) {
    left: 8.75em;
    top: 10.58em;
    animation-delay: 0.4s;
}

.pl__dot:nth-child(3)::before {
    animation-delay: 0.4s;
}

.pl__dot:nth-child(4) {
    left: 6.25em;
    top: 11.25em;
    animation-delay: 0.6s;
}

.pl__dot:nth-child(4)::before {
    animation-delay: 0.6s;
}

.pl__dot:nth-child(5) {
    left: 3.75em;
    top: 10.58em;
    animation-delay: 0.8s;
}

.pl__dot:nth-child(5)::before {
    animation-delay: 0.8s;
}

.pl__dot:nth-child(6) {
    left: 1.92em;
    top: 8.75em;
    animation-delay: 1.0s;
}

.pl__dot:nth-child(6)::before {
    animation-delay: 1.0s;
}

.pl__dot:nth-child(7) {
    left: 1.25em;
    top: 6.25em;
    animation-delay: 1.2s;
}

.pl__dot:nth-child(7)::before {
    animation-delay: 1.2s;
}

.pl__dot:nth-child(8) {
    left: 1.92em;
    top: 3.75em;
    animation-delay: 1.4s;
}

.pl__dot:nth-child(8)::before {
    animation-delay: 1.4s;
}

.pl__dot:nth-child(9) {
    left: 3.75em;
    top: 1.92em;
    animation-delay: 1.6s;
}

.pl__dot:nth-child(9)::before {
    animation-delay: 1.6s;
}

.pl__dot:nth-child(10) {
    left: 6.25em;
    top: 1.25em;
    animation-delay: 1.8s;
}

.pl__dot:nth-child(10)::before {
    animation-delay: 1.8s;
}

.pl__dot:nth-child(11) {
    left: 8.75em;
    top: 1.92em;
    animation-delay: 2.0s;
}

.pl__dot:nth-child(11)::before {
    animation-delay: 2.0s;
}

.pl__dot:nth-child(12) {
    left: 10.58em;
    top: 3.75em;
    animation-delay: 2.2s;
}

.pl__dot:nth-child(12)::before {
    animation-delay: 2.2s;
}

.pl__text {
    font-size: 1.1em;
    font-weight: 700;
    color: #ffffff;
    z-index: 10;
}

@keyframes shadow724 {
    from {
        box-shadow: 0 0.1em 0.3em rgba(27, 107, 147, 0.25);
    }

    15% {
        box-shadow: 0 0.5em 1.2em rgba(0, 210, 196, 0.55);
    }

    30%,
    to {
        box-shadow: 0 0.1em 0.3em rgba(27, 107, 147, 0.25);
    }
}

@keyframes pushInOut1724 {
    from {
        background-color: #1b6b93;
        transform: translate(0, 0);
    }

    15% {
        background-color: #00d2c4;
        transform: translate(-30%, -30%);
    }

    30%,
    to {
        background-color: #1b6b93;
        transform: translate(0, 0);
    }
}

@keyframes pushInOut2724 {
    from {
        background-color: #2a8fa8;
        transform: translate(0, 0);
    }

    15% {
        background-color: #ffffff;
        transform: translate(30%, 30%);
    }

    30%,
    to {
        background-color: #2a8fa8;
        transform: translate(0, 0);
    }
}

/* =============================================================
   8. COOKIE CONSENT BANNER
   ============================================================= */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: var(--space-lg) var(--space-xl);
    background-color: var(--color-overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent.hide {
    transform: translateY(100%);
}

.cookie-consent__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-small);
    max-width: 600px;
    margin: 0;
}

.cookie-consent__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

/* =============================================================
   9. ANNOUNCEMENT BAR
   ============================================================= */
.announcement-bar {
    display: none;
    background-color: #c8e3f3;
    color: #0a1628;
    font-size: 0.8rem;
    height: 36px;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.announcement-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.announcement-bar__info {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.announcement-bar__info a {
    color: #0a1628;
    transition: var(--transition-fast);
}

.announcement-bar__info a:hover {
    color: #1b6b93;
}

.announcement-bar__info span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.announcement-bar__social {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.announcement-bar__social a {
    color: #0a1628;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.announcement-bar__social a:hover {
    color: #1b6b93;
}

/* =============================================================
   10. NAVBAR
   ============================================================= */
header.header--home {
    position: relative;
    z-index: 1000;
    margin-bottom: 0;
}

.navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.4s ease, height 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

/* Transparent variant for homepage hero */
.navbar-main--transparent {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.navbar-main--transparent.scrolled {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Scrolled state: frosted glass */
.navbar-main.scrolled {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: var(--navbar-height-sm);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.navbar-main__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%; /* Push to the corners of the screen */
    margin: 0 auto;
    padding: 0 16px; /* Breathing room from the very edge */
}

/* ---- Logo ---- */
.navbar-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
    flex-shrink: 0;
}

.navbar-brand img {
    height: 54px !important;
    width: auto !important;
    margin-top: 0;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-main.scrolled .navbar-brand img {
    height: 38px !important;
    width: auto !important;
}

.navbar-brand__name {
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.navbar-brand__tagline {
    display: none;
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* ---- Nav Links ---- */
.navbar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    transform: translateY(0);
}

.navbar-nav__item {
    position: relative;
}

.navbar-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.28rem 0.7rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.77rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    white-space: nowrap;
}

/* ---- Inner Page Padding ---- */
body.page-inner {
    padding-top: calc(var(--navbar-height) + 16px);
}

/* White text for transparent header ONLY on home page */
.page-home .navbar-main,
.page-home .navbar-main--transparent,
.page-home .navbar-main--transparent.scrolled,
.page-home .navbar-main.scrolled {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.page-home .navbar-main__container {
    padding: 0 16px;
}

.page-home .navbar-brand img {
    height: 54px !important;
}

.page-home .navbar-main.scrolled .navbar-brand img {
    height: 38px !important;
}

.page-home .navbar-nav__link {
    color: #ffffff !important;
}

.page-home .navbar-main:not(.scrolled) .navbar-nav__link {
    color: #ffffff !important;
    text-shadow: none !important;
}
.page-home .navbar-main:not(.scrolled) .navbar-nav__link:hover,
.page-home .navbar-main:not(.scrolled) .navbar-nav__link:focus-visible {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
}
.page-home .navbar-main:not(.scrolled) .navbar-nav__link--active {
    color: #ffffff !important;
}
.page-home .navbar-main:not(.scrolled) .navbar-nav__link--active::after {
    background-color: #ffffff !important;
}

.page-home .navbar-nav__link .fa-chevron-down {
    color: currentColor;
}

.page-home .navbar-toggler__bar {
    background-color: #ffffff;
}

.page-home .mega-dropdown,
.page-home .simple-dropdown {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .mega-dropdown__col-title,
.page-home .mega-dropdown__link-title,
.page-home .mega-dropdown__link-desc {
    color: rgba(255, 255, 255, 0.88);
}

.page-home .mega-dropdown__link-icon {
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.page-home .mega-dropdown__link:hover .mega-dropdown__link-icon {
    background-color: rgba(255, 255, 255, 0.08);
}

.page-home .mega-dropdown__link:hover .mega-dropdown__link-desc {
    color: #ffffff;
}

.navbar-nav__link:hover,
.navbar-nav__link:focus-visible {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

.navbar-nav__link--active {
    color: #ffffff;
    position: relative;
}

.navbar-nav__link--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--space-md);
    right: var(--space-md);
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
}

.navbar-nav__link .fa-chevron-down {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.navbar-nav__item:hover .navbar-nav__link .fa-chevron-down,
.navbar-nav__item.open .navbar-nav__link .fa-chevron-down {
    transform: rotate(180deg);
}

/* ---- Mega Dropdown ---- */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: max-content;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 1050;
}

.navbar-nav__item:hover .mega-dropdown,
.navbar-nav__item.open .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

.mega-dropdown__grid {
    display: flex;
    gap: 36px;
}

.mega-dropdown__col-title {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: #cccccc;
    text-transform: capitalize;
    margin-bottom: 1rem;
    border: none;
    padding-bottom: 0;
}

.mega-dropdown__link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    transition: var(--transition-fast);
}

.mega-dropdown__link-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #ffffff;
    background-color: transparent;
    font-size: 1.1rem;
    transition: background-color 0.3s, color 0.3s;
}

.mega-dropdown__link-content {
    display: flex;
    flex-direction: column;
}

.mega-dropdown__link-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25rem;
    margin: 0;
}

.mega-dropdown__link-desc {
    font-size: 0.75rem;
    color: #aaaaaa;
    line-height: 1rem;
    margin: 2px 0 0 0;
    transition: color 0.3s;
}

.mega-dropdown__link:hover {
    background: transparent;
    border: none;
    padding-left: 0;
}

.mega-dropdown__link:hover .mega-dropdown__link-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.mega-dropdown__link:hover .mega-dropdown__link-desc {
    color: #ffffff;
}

.mega-dropdown__footer {
    display: none;
}

/* ---- Simple Dropdown (Other Services) ---- */
.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: max-content;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 1050;
    display: flex;
    flex-direction: column;
}

.navbar-nav__item:hover .simple-dropdown,
.navbar-nav__item.open .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

/* ---- Navbar CTA Button ---- */
.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 20px;
    transform: translateY(0);
    background-color: #1b6b93;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 1px solid #1b6b93;
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(42, 143, 168, 0.25);
}

.navbar-cta:hover {
    background-color: #145374;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(25, 52, 65, 0.16);
}

.navbar-cta:active {
    transform: scale(0.97);
}

/* ---- Mobile Menu Toggle (Hamburger) ---- */
.navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.navbar-toggler__bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

/* Animated hamburger â†’ X */
.navbar-toggler.active .navbar-toggler__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.active .navbar-toggler__bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .navbar-toggler__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Overlay ---- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ---- Mobile Menu Panel ---- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1005;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #000000;
    padding: var(--space-3xl) var(--space-xl) var(--space-xl);
    overflow-y: auto;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-round);
    transition: var(--transition-fast);
}

.mobile-menu__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu__nav {
    margin-top: var(--space-xl);
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    min-height: 48px;
    transition: var(--transition-fast);
}

.mobile-menu__link:hover {
    color: #ffffff;
}

.mobile-menu__link--active {
    color: #ffffff;
}

/* Mobile accordion sub-items */
.mobile-menu__sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: var(--space-lg);
}

.mobile-menu__sub.open {
    max-height: 1000px;
}

.mobile-menu__sub-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    text-decoration: none;
    min-height: 44px;
    transition: var(--transition-fast);
}

.mobile-menu__sub-link:hover {
    color: var(--color-accent);
}

.mobile-menu__sub-link i {
    width: 20px;
    text-align: center;
    color: var(--color-accent);
    font-size: 0.8rem;
}

.mobile-menu__cta {
    display: block;
    text-align: center;
    margin-top: var(--space-xl);
    padding: 14px var(--space-xl);
    background-color: var(--color-accent);
    color: var(--color-white);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition-base);
}

.mobile-menu__cta:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
}

/* =============================================================
   11. HERO SECTION
   ============================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #193441 0%, #1e4d5e 55%, #0f2f3d 100%);
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* â”€â”€ Paths-specific background â”€â”€ */
.hero__background--paths {
    background: transparent;
    /* colour is on .hero already */
}

.hero__background--paths svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hero__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 10, 12, 0.56) 0%, rgba(5, 10, 12, 0.30) 55%, rgba(5, 10, 12, 0.58) 100%);
    z-index: 1;
}

/* Lighter overlay so paths remain visible */
.hero__overlay--paths {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(25, 52, 65, 0.20) 0%,
            rgba(15, 38, 50, 0.10) 60%,
            rgba(42, 143, 168, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero content is visible by default â€” no blink animations */

/* Subtle dot grid pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 2;
    pointer-events: none;
}



.hero__container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
}

/* ---- Hero Content (Left) ---- */
.hero__content {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.hero__trust {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
    justify-content: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
}

.hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.hero__title {
    font-size: var(--fs-hero);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: 600;
    color: var(--color-accent-light);
    margin-bottom: var(--space-lg);
}

.hero__description {
    font-size: var(--fs-body);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: var(--space-xl);
}

.hero__buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero__trust {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-small);
    font-weight: 500;
}

.hero__trust-item i {
    color: var(--color-accent);
    font-size: 1rem;
}

/* ---- Hero Visual (Right) ---- */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

/* Large decorative circle */
.hero__circle {
    width: 380px;
    height: 380px;
    border-radius: var(--radius-round);
    background: linear-gradient(135deg, rgba(42, 143, 168, 0.3) 0%, rgba(25, 52, 65, 0.5) 100%);
    position: relative;
}

/* Floating glass cards */
.hero__float-card {
    position: absolute;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero__float-card--1 {
    top: 10%;
    right: -10%;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero__float-card--2 {
    bottom: 25%;
    left: -15%;
    animation: heroFloat 6s ease-in-out infinite 2s;
}

.hero__float-card--3 {
    bottom: 5%;
    right: 5%;
    animation: heroFloat 6s ease-in-out infinite 4s;
}

.hero__float-card i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.hero__float-card-content {
    display: flex;
    flex-direction: column;
}

.hero__float-card-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.hero__float-card-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* New hero layout override */
.hero {
    align-items: flex-end;
    isolation: isolate;
    background: linear-gradient(135deg, #061015 0%, #0a1f29 100%);
}

.hero::before {
    background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.55;
    z-index: 1;
}

.hero__container {
    z-index: 2;
    padding: clamp(5rem, 9vw, 8rem) var(--space-lg) clamp(3rem, 6vw, 4.75rem);
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.84fr);
    gap: clamp(1.5rem, 3.7vw, 4rem);
    align-items: end;
}

.hero__content {
    max-width: 48rem;
    align-items: flex-start;
}

.hero__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    max-width: 22ch;
    font-size: clamp(2.15rem, 4.6vw, 4.55rem);
    line-height: 0.88;
    letter-spacing: -0.045em;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
    text-wrap: normal;
}

.hero__accent {
    color: var(--color-hero-accent, #dff66b);
}

.hero__line {
    display: block;
    color: var(--color-white);
}

.hero__line--main,
.hero__line--deal {
    white-space: nowrap;
}

.hero__buttons {
    margin-top: clamp(1.75rem, 3vw, 2.5rem);
    justify-content: flex-start;
}

.hero__cta {
    display: inline-flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 3.5rem;
    background: var(--color-hero-accent, #dff66b);
    color: #08110d;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(223, 246, 107, 0.22);
    transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.hero__cta span {
    display: inline-flex;
    align-items: center;
    padding: 0.95rem 1.3rem;
}

.hero__cta i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    border-left: 1px solid rgba(8, 17, 13, 0.18);
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.14);
}

.hero__cta:hover {
    transform: translateY(-2px);
    background: #ebff84;
    box-shadow: 0 24px 52px rgba(223, 246, 107, 0.28);
}

.hero__cta:focus-visible {
    outline-color: #ebff84;
}

.hero__aside {
    max-width: 31rem;
    justify-self: end;
    align-self: center;
    padding-top: clamp(1.5rem, 5.2vw, 4.5rem);
}

.hero__aside p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.25vw, 1.48rem);
    line-height: 1.44;
    font-style: italic;
    font-weight: 400;
    color: var(--color-hero-accent, #dff66b);
    text-align: right;
    text-wrap: balance;
    text-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

/* =============================================================
   12. STATS BAR
   ============================================================= */
.stats-bar {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.stats-bar__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-2xl);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stats-bar__item {
    text-align: center;
    padding: var(--space-md);
    position: relative;
}

/* Divider between stats */
.stats-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--color-border);
}

.stats-bar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-round);
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.stats-bar__number {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.stats-bar__label {
    font-size: var(--fs-small);
    color: var(--color-text-light);
    margin-top: var(--space-xs);
}

/* =============================================================
   13. SERVICES OVERVIEW SECTION
   ============================================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

/* =============================================================
   14. ABOUT / WHY CHOOSE US SECTION
   ============================================================= */
.about-section {
    position: relative;
}

.about-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-section__image-wrapper {
    position: relative;
}

/* Decorative accent rectangle behind image */
.about-section__image-wrapper::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-section__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-section__content .section-eyebrow {
    text-align: left;
}

.about-section__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.about-feature {
    display: flex;
    gap: var(--space-md);
}

.about-feature__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    font-size: 0.9rem;
}

.about-feature__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-xs);
}

.about-feature__text {
    font-size: var(--fs-small);
    color: var(--color-text-medium);
    margin: 0;
}

/* =============================================================
   15. HOW IT WORKS / PROCESS SECTION
   ============================================================= */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
}

/* Connecting line behind steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: repeating-linear-gradient(90deg,
            var(--color-accent) 0,
            var(--color-accent) 8px,
            transparent 8px,
            transparent 16px);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-round);
    background-color: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto var(--space-lg);
    box-shadow: 0 4px 15px rgba(42, 143, 168, 0.3);
    position: relative;
}

.process-step__icon {
    display: block;
    font-size: 1.6rem;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.process-step__title {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.process-step__text {
    font-size: var(--fs-small);
    color: var(--color-text-medium);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

/* =============================================================
   16. TESTIMONIALS SECTION
   ============================================================= */
.testimonials-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative element */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 460px;
    height: 460px;
    border-radius: var(--radius-round);
    background: radial-gradient(circle, rgba(42, 143, 168, 0.08) 0%, rgba(42, 143, 168, 0.03) 50%, transparent 72%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    gap: var(--space-5xl);
    margin-top: var(--space-3xl);
}

.testimonial-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.75rem, 4vw, 4rem);
    align-items: center;
}

.testimonial-card--reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.testimonial-card__media {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card__symbol {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.testimonial-card__symbol--premier {
    max-width: 480px;
}

.testimonial-card__symbol--mlb {
    max-width: 300px;
}

.testimonial-card__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    text-align: center;
    max-width: 420px;
}

.testimonial-card__logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #d89a33 0%, #c88623 55%, #b7761d 100%);
    border: 8px solid #179868;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 40px rgba(25, 52, 65, 0.12);
}

.testimonial-card__logo-mark--mlb {
    width: 140px;
    height: 140px;
    border: 0;
    border-radius: 24px;
    clip-path: polygon(50% 0%, 89% 22%, 89% 78%, 50% 100%, 11% 78%, 11% 22%);
    background: linear-gradient(135deg, #66d3c6 0%, #5ab5bb 18%, #4e4cd0 48%, #5f2f82 68%, #d84a9d 100%);
}

.testimonial-card__brand-name {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.2vw, 2.45rem);
    font-weight: 600;
    line-height: 1.05;
    color: #243a4b;
    letter-spacing: -0.03em;
}

.testimonial-card__brand-tag {
    font-family: var(--font-body);
    font-size: clamp(0.98rem, 1.2vw, 1.25rem);
    font-style: italic;
    color: #2f2f2f;
    line-height: 1.25;
}

.testimonial-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.testimonial-card__quote {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(1.12rem, 1.3vw, 1.55rem);
    line-height: 1.52;
    color: #31485a;
    text-wrap: balance;
}

.testimonial-card__author {
    display: block;
    margin-top: var(--space-xl);
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.15vw, 1.3rem);
    font-weight: 500;
    color: #2f4458;
}

.testimonial-card__stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-top: var(--space-lg);
}

.testimonial-card__stars i {
    color: #223e63;
    font-size: 1.05rem;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-carousel__track {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

.testimonial-slide__quote-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    line-height: 1;
}

.testimonial-slide__stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-lg);
    justify-content: center;
}

.testimonial-slide__stars i {
    color: var(--color-warning);
    font-size: 1rem;
}

.testimonial-slide__text {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: var(--space-xl);
}

.testimonial-slide__author {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.testimonial-slide__location {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-xs);
}

/* Carousel arrows */
.testimonial-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-carousel__arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-carousel__arrow--prev {
    left: -60px;
}

.testimonial-carousel__arrow--next {
    right: -60px;
}

/* Carousel dots */
.testimonial-carousel__dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.testimonial-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-round);
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    padding: 0;
}

.testimonial-carousel__dot.active {
    background: var(--color-accent);
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 991px) {

    .testimonial-card,
    .testimonial-card--reverse {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .testimonial-card__media {
        min-height: 0;
    }

    .testimonial-card__body {
        max-width: 720px;
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        gap: var(--space-4xl);
        margin-top: var(--space-2xl);
    }

    .testimonial-card__logo-mark {
        width: 110px;
        height: 110px;
        font-size: 1.55rem;
        border-width: 6px;
    }

    .testimonial-card__logo-mark--mlb {
        width: 118px;
        height: 118px;
    }

    .testimonial-card__brand-name {
        font-size: 1.35rem;
    }

    .testimonial-card__quote {
        font-size: 1.02rem;
    }

    .testimonial-card__symbol--premier {
        max-width: 360px;
    }

    .testimonial-card__symbol--mlb {
        max-width: 240px;
    }

    .testimonial-card__author {
        font-size: 0.98rem;
    }
}

/* =============================================================
   17. OTHER SERVICES PREVIEW SECTION
   ============================================================= */
.other-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

/* "Coming Soon" variant card */
.service-card--coming-soon {
    border-style: dashed !important;
    opacity: 0.65;
}

.service-card--coming-soon .service-card__icon-wrap {
    background-color: #f0f0f0 !important;
    color: var(--color-text-light) !important;
}

.service-card__badge {
    display: inline-block;
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

/* =============================================================
   17A. BLOG PREVIEW SECTION
   ============================================================= */
.blog-preview-section {
    position: relative;
    overflow: hidden;
    padding-top: var(--space-5xl);
    padding-bottom: var(--space-5xl);
}

.blog-preview-section.section--dark {
    background-color: #0b0b0b;
}

.blog-preview-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(42, 143, 168, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 28%);
    pointer-events: none;
}

.blog-preview-section .container-custom {
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-xl);
}

.blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
    backdrop-filter: blur(8px);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.blog-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0b0b0b;
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.05);
}

.blog-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.8rem;
    border-radius: 999px;
    background: rgba(25, 52, 65, 0.92);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-xl);
}

.blog-card__title {
    color: var(--color-white);
    font-size: 1.35rem;
    line-height: 1.35;
}

.blog-card__text {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
}

.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    margin-top: auto;
    flex-wrap: wrap;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-accent-light);
    font-weight: 600;
}

.blog-card__link:hover {
    color: var(--color-white);
}

.blog-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(42, 143, 168, 0.18);
}

.blog-card__date {
    color: rgba(255, 255, 255, 0.55);
    font-size: var(--fs-small);
}

.blog-preview__actions {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

/* =============================================================
   17B. BLOG HERO / ARCHIVE
   ============================================================= */
.blog-hero {
    padding: calc(var(--space-4xl) + 1rem) 0 var(--space-3xl);
    background: linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
    color: var(--color-white);
}

.blog-hero__inner {
    max-width: 860px;
}

.blog-hero__eyebrow {
    margin-bottom: var(--space-sm);
    color: var(--color-accent-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.blog-hero__title {
    margin-bottom: var(--space-md);
    color: var(--color-white);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.05;
}

.blog-hero__lead {
    max-width: 740px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.blog-hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.blog-featured-section,
.blog-archive-section {
    background: var(--color-white);
}

.blog-archive-section {
    padding-top: 0;
}

.blog-archive-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.blog-article {
    background: var(--color-white);
    border: 1px solid #e9eef2;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: var(--space-xl);
    scroll-margin-top: 120px;
}

.blog-article__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr);
    gap: var(--space-2xl);
    align-items: start;
}

.blog-article--reverse .blog-article__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.95fr);
}

.blog-article--reverse .blog-article__figure {
    order: 2;
}

.blog-article--reverse .blog-article__body {
    order: 1;
}

.blog-article__figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #0b0b0b;
    box-shadow: var(--shadow-lg);
}

.blog-article__image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.blog-article__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.8rem;
    border-radius: 999px;
    background: rgba(25, 52, 65, 0.92);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-article__meta {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text-medium);
    font-size: 0.78rem;
    font-weight: 600;
}

.blog-article__meta-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-accent);
}

.blog-article__body {
    display: flex;
    flex-direction: column;
}

.blog-article__eyebrow {
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.blog-article__title {
    margin-bottom: var(--space-md);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.blog-article__lead,
.blog-article__help {
    color: var(--color-text-medium);
    font-size: 1rem;
}

.blog-article__insights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.blog-insight {
    padding: var(--space-lg);
    background: var(--color-secondary);
    border: 1px solid rgba(25, 52, 65, 0.08);
    border-radius: var(--radius-lg);
}

.blog-insight h3 {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    color: var(--color-primary);
}

.blog-insight p {
    margin-bottom: 0;
    color: var(--color-text-medium);
    font-size: 0.93rem;
}

.blog-article__subheading {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    font-size: 1.15rem;
}

.blog-article__list {
    display: grid;
    gap: var(--space-sm);
    margin: 0;
    padding: 0;
}

.blog-article__list li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--color-text-medium);
}

.blog-article__list li::before {
    content: '';
    position: absolute;
    top: 0.78em;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--color-accent);
}

.blog-article__faqs {
    display: grid;
    gap: var(--space-md);
}

.blog-faq {
    padding: var(--space-md) var(--space-lg);
    background: #f8fbfd;
    border: 1px solid #e3ebf0;
    border-radius: var(--radius-lg);
}

.blog-faq summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--color-primary);
}

.blog-faq summary::-webkit-details-marker {
    display: none;
}

.blog-faq p {
    margin-top: var(--space-sm);
    margin-bottom: 0;
    color: var(--color-text-medium);
}

.blog-article__cta {
    margin-top: var(--space-xl);
}

/* =============================================================
   17C. BLOG SECTION COMPONENT
   ============================================================= */
.blog-section {
    position: relative;
    padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 5.5rem);
    background: #090909;
    color: var(--color-white);
    overflow: hidden;
}

.blog-section--preview {
    padding-top: clamp(3rem, 5vw, 4.25rem);
    padding-bottom: clamp(3.5rem, 6vw, 4.75rem);
}

.blog-section__shell {
    position: relative;
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
}

.blog-section__background {
    position: absolute;
    inset: 0;
    isolation: isolate;
    contain: strict;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.blog-section__blob {
    position: absolute;
    border-radius: 999px;
    transform: rotate(-45deg);
}

.blog-section__blob--one {
    top: -40px;
    left: -120px;
    width: 420px;
    height: 220px;
    background: radial-gradient(68.54% 68.72% at 55.02% 31.46%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.01) 80%);
}

.blog-section__blob--two {
    top: 10px;
    left: 32px;
    width: 240px;
    height: 220px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.02) 80%, transparent 100%);
    opacity: 0.9;
}

.blog-section__blob--three {
    top: -20px;
    left: 126px;
    width: 240px;
    height: 220px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.02) 80%, transparent 100%);
    opacity: 0.9;
}

.blog-section__header {
    position: relative;
    z-index: 1;
    padding: 0.9rem 0 1.5rem;
}

.blog-section__title {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-mono);
    font-size: clamp(2.35rem, 5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.blog-section__description {
    max-width: 880px;
    margin: 0.7rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.98rem, 1.3vw, 1.15rem);
    line-height: 1.55;
}

.blog-section__divider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    margin: 0.75rem 0 1.6rem;
}

.blog-section__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.blog-section__grid--preview {
    margin-top: 0;
}

.blog-section__articles {
    position: relative;
    z-index: 1;
    margin-top: clamp(2rem, 5vw, 3rem);
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-width: 0;
    padding: 0.25rem;
    border-radius: 1rem;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.blog-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 16 / 9;
    background: #161616;
}

.blog-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.2s ease;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.05);
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0 0.2rem 0.35rem;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    line-height: 1.3;
}

.blog-card__dot {
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.48);
    flex: 0 0 auto;
}

.blog-card__title {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(1.05rem, 1.45vw, 1.38rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.blog-card__description {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-card__description,
.blog-card__meta {
    text-wrap: pretty;
}

.blog-section__meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.blog-section__meta-strip span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-story-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.blog-story {
    overflow: hidden;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.blog-story:hover {
    border-color: rgba(42, 143, 168, 0.26);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}

.blog-story[open] {
    border-color: rgba(42, 143, 168, 0.34);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.blog-story__summary {
    list-style: none;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    cursor: pointer;
}

.blog-story__summary::-webkit-details-marker {
    display: none;
}

.blog-story__media {
    position: relative;
    min-height: 100%;
    aspect-ratio: 16 / 10;
    background: #111;
    overflow: hidden;
}

.blog-story__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.blog-story:hover .blog-story__image {
    transform: scale(1.04);
}

.blog-story__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    background: rgba(25, 52, 65, 0.9);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-story__media-meta {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
    font-weight: 600;
}

.blog-story__dot {
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.blog-story__summary-body {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.4rem 1.5rem 1.35rem;
}

.blog-story__eyebrow {
    margin: 0;
    color: var(--color-accent-light);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.blog-story__title {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(1.25rem, 2vw, 1.95rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.blog-story__excerpt {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.97rem;
    line-height: 1.65;
}

.blog-story__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-story__chips span {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-story__summary-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 600;
}

.blog-story__toggle {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(42, 143, 168, 0.18);
    transition: transform 0.24s ease;
}

.blog-story[open] .blog-story__toggle {
    transform: rotate(45deg);
}

.blog-story__content {
    display: grid;
    gap: 1.2rem;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.blog-story__content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 1rem;
    align-items: start;
}

.blog-story__callout {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(42, 143, 168, 0.11);
    border: 1px solid rgba(42, 143, 168, 0.2);
}

.blog-story__callout p {
    margin: 0;
    color: var(--color-white);
    line-height: 1.7;
    font-weight: 500;
}

.blog-story__copy {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.blog-story__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.97rem;
    line-height: 1.76;
}

.blog-story__panel {
    display: grid;
    gap: 0.75rem;
}

.blog-story__panel-card {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-story__panel-card h3 {
    margin: 0 0 0.35rem;
    color: var(--color-white);
    font-size: 0.95rem;
}

.blog-story__panel-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.65;
}

.blog-story__panel-card--accent {
    background: linear-gradient(180deg, rgba(42, 143, 168, 0.2), rgba(25, 52, 65, 0.35));
    border-color: rgba(42, 143, 168, 0.22);
}

.blog-story__bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.blog-story__block {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-story__block h3 {
    margin: 0 0 0.8rem;
    color: var(--color-white);
    font-size: 1rem;
}

.blog-story__block ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.blog-story__block li {
    list-style: none;
    position: relative;
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
    line-height: 1.65;
}

.blog-story__block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--color-accent);
}

.blog-story__faqs {
    display: grid;
    gap: 0.6rem;
}

.blog-story__faq {
    padding: 0.85rem 0.95rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-story__faq summary {
    cursor: pointer;
    list-style: none;
    color: var(--color-white);
    font-weight: 600;
}

.blog-story__faq summary::-webkit-details-marker {
    display: none;
}

.blog-story__faq p {
    margin: 0.55rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.66;
}

.blog-story__cta {
    display: flex;
    justify-content: flex-start;
}

/* =============================================================
   18. CTA BANNER SECTION
   ============================================================= */
.cta-banner {
    position: relative;
    background: var(--gradient-cta);
    padding: var(--space-4xl) 0;
    text-align: center;
    overflow: hidden;
}

/* Wave SVG at top */
.cta-banner__wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.cta-banner__wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.cta-banner h2 {
    color: var(--color-white);
    font-size: var(--fs-h2);
    margin-bottom: var(--space-md);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-body);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.cta-banner__checks {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.cta-banner__checks span {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-small);
    font-weight: 500;
}

/* =============================================================
   19. NEWSLETTER SECTION
   ============================================================= */
.newsletter-section {
    padding: var(--space-3xl) 0;
}

.newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.newsletter__content {
    max-width: 480px;
}

.newsletter__content h3 {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-sm);
}

.newsletter__content p {
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.newsletter__form {
    display: flex;
    gap: var(--space-sm);
    flex: 1;
    max-width: 440px;
}

.newsletter__input {
    flex: 1;
    padding: 12px 20px;
    background-color: var(--color-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--fs-button);
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.newsletter__input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(42, 143, 168, 0.15);
}

.newsletter__input::placeholder {
    color: var(--color-text-light);
}

.newsletter__privacy {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: var(--space-sm);
}

.newsletter__success {
    display: none;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-success);
    font-weight: 500;
}

.newsletter__success.show {
    display: flex;
}

/* =============================================================
   20. FOOTER
   ============================================================= */
.footer {
    background: var(--gradient-footer);
    color: rgba(255, 255, 255, 0.75);
    padding-top: var(--space-4xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
}

/* Column 1: Brand */
.footer__brand-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.footer__brand-text {
    font-size: var(--fs-small);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.6);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer__social-link:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Column headings */
.footer__heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

/* Footer links */
.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
    transition: var(--transition-fast);
    text-decoration: none;
    padding: 2px 0;
}

.footer__link:hover {
    color: var(--color-accent);
    padding-left: var(--space-sm);
}

/* Contact info in footer */
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer__contact-item i {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-top: 4px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer__contact-item span,
.footer__contact-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer__contact-item a:hover {
    color: var(--color-accent);
}

/* Footer bottom bar */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding: var(--space-xl) 0;
    margin-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--fs-small);
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer__bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer__bottom-links a:hover {
    color: var(--color-accent);
}

/* =============================================================
   21. SCROLL-TO-TOP BUTTON
   ============================================================= */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-round);
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--color-accent-hover);
    transform: scale(1.1) translateY(0);
}

@media (max-width: 767px) {
    .scroll-top {
        display: none !important;
    }
}

/* Optional progress ring (SVG-based â€” handled in JS) */
.scroll-top__progress {
    position: absolute;
    inset: -3px;
    transform: rotate(-90deg);
}

.scroll-top__progress circle {
    fill: none;
    stroke: var(--color-accent-hover);
    stroke-width: 2;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    transition: stroke-dashoffset 0.1s linear;
}

/* =============================================================
   22. MOBILE FLOATING CTA
   ============================================================= */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: var(--space-sm);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.mobile-cta.show {
    transform: translateY(0);
}

.mobile-cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.mobile-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px;
    font-size: var(--fs-button);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-cta__btn--call {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.mobile-cta__btn--quote {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* =============================================================
   23. INNER PAGE HERO BANNER
   ============================================================= */
.page-hero {
    background-color: var(--color-primary);
    background: var(--gradient-hero);
    padding: var(--space-3xl) 0 var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.page-hero h1 {
    color: var(--color-white);
    font-size: var(--fs-h1);
    margin-bottom: var(--space-md);
    position: relative;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-body);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* =============================================================
   24. SERVICES PAGE (services.html)
   ============================================================= */
/* Service jump navigation */
.services-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    padding: var(--space-xl) 0;
}

.services-jump-nav__link {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background-color: var(--color-secondary);
    color: var(--color-text-medium);
    font-size: var(--fs-small);
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.services-jump-nav__link:hover,
.services-jump-nav__link.active {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Detailed service sections (alternating layout) */
.service-detail {
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-detail:nth-child(even) {
    background-color: var(--color-secondary);
}

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

/* Reverse grid for even services */
.service-detail:nth-child(even) .service-detail__grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail__grid>* {
    direction: ltr;
}

.service-detail__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-round);
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.service-detail__title {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-md);
}

.service-detail__text {
    font-size: var(--fs-body);
    color: var(--color-text-medium);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.service-detail__benefits {
    margin-bottom: var(--space-xl);
}

.service-detail__benefits li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--color-text-medium);
    font-size: var(--fs-body);
}

.service-detail__benefits li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-detail__image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background-color: var(--color-secondary);
}

/* =============================================================
   25. OTHER SERVICES PAGE
   ============================================================= */
.other-service-detail-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    text-align: center;
    transition: var(--transition-base);
}

.other-service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-top: 3px solid var(--color-accent);
}

/* =============================================================
   26. ABOUT PAGE
   ============================================================= */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-story__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Mission, Vision, Values cards */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.mvv-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    border-top: 4px solid var(--color-accent);
    transition: var(--transition-base);
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.mvv-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-round);
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.mvv-card__title {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-md);
}

.mvv-card__text {
    font-size: var(--fs-body);
    color: var(--color-text-medium);
}

/* Certifications strip */
.cert-strip {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    padding: var(--space-2xl);
    background-color: var(--color-secondary);
    border-radius: var(--radius-lg);
}

.cert-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-align: left;
}

.cert-item__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background-color: var(--color-white);
    color: var(--color-accent);
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.cert-item__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.cert-item__text {
    font-size: var(--fs-small);
    color: var(--color-text-medium);
    margin: 0;
}

/* =============================================================
   27. CONTACT PAGE
   ============================================================= */
.contact-section__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    align-items: flex-start;
}

.contact-info {
    background-color: var(--color-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.contact-info h3 {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-sm);
}

.contact-info>p {
    font-size: var(--fs-body);
    margin-bottom: var(--space-xl);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-info__item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-info__item-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.contact-info__item-value {
    font-size: var(--fs-body);
    color: var(--color-text-dark);
    font-weight: 500;
}

.contact-info__item-value a {
    color: var(--color-text-dark);
    text-decoration: none;
}

.contact-info__item-value a:hover {
    color: var(--color-accent);
}

.contact-info__social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.contact-info__social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.contact-info__social a:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

.contact-info__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.contact-info__trust span {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Google Maps */
.contact-map {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 0;
    filter: grayscale(30%);
}

/* =============================================================
   28. THANK-YOU PAGE
   ============================================================= */
.thankyou {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
}

.thankyou__checkmark {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-round);
    background-color: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    animation: checkmarkPop 0.6s ease;
}

.thankyou__checkmark i {
    color: var(--color-white);
    font-size: 2rem;
}

.thankyou h1 {
    margin-bottom: var(--space-sm);
}

.thankyou h2 {
    font-weight: 500;
    color: var(--color-text-medium);
    margin-bottom: var(--space-lg);
}

.thankyou p {
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

.thankyou__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================================
   29. 404 PAGE
   ============================================================= */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
}

.error-page__number {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.error-page h1 {
    margin-bottom: var(--space-md);
}

.error-page p {
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

.error-page__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================================
   30. PRIVACY / TERMS PAGES
   ============================================================= */
.legal-page {
    padding: var(--space-3xl) 0;
}

.legal-page h1 {
    margin-bottom: var(--space-sm);
}

.legal-page__date {
    color: var(--color-text-light);
    font-size: var(--fs-small);
    margin-bottom: var(--space-2xl);
}

.legal-page h2 {
    font-size: var(--fs-h3);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.legal-page h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-page p,
.legal-page li {
    font-size: var(--fs-body);
    color: var(--color-text-medium);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-page ul {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.legal-page ul li {
    list-style: disc;
    margin-bottom: var(--space-sm);
}

/* Table of contents */
.legal-toc {
    background-color: var(--color-secondary);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.legal-toc__title {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-md);
}

.legal-toc ol {
    padding-left: var(--space-xl);
}

.legal-toc ol li {
    list-style: decimal;
    margin-bottom: var(--space-sm);
}

.legal-toc ol li a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: var(--fs-body);
}

.legal-toc ol li a:hover {
    text-decoration: underline;
}

/* =============================================================
   31. FORM COMPONENT STYLES
   ============================================================= */
.form-group {
    position: relative;
    margin-bottom: var(--space-lg);
}

/* Floating label */
.form-group label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: var(--fs-body);
    color: var(--color-text-light);
    pointer-events: none;
    transition: var(--transition-fast);
    background-color: transparent;
    padding: 0 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: var(--fs-body);
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* Float label up on focus or when input has value */
.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:valid+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group .has-value+label {
    top: -8px;
    left: 12px;
    font-size: 0.75rem;
    color: var(--color-accent);
    background-color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(42, 143, 168, 0.12);
    outline: none;
}

/* Validation states */
.form-group--valid input,
.form-group--valid select,
.form-group--valid textarea {
    border-color: var(--color-success);
}

.form-group--invalid input,
.form-group--invalid select,
.form-group--invalid textarea {
    border-color: var(--color-error);
}

.form-group__icon {
    position: absolute;
    right: 14px;
    top: 14px;
    font-size: 1rem;
}

.form-group__icon--valid {
    color: var(--color-success);
}

.form-group__icon--invalid {
    color: var(--color-error);
}

.form-group__error {
    display: none;
    font-size: 0.8rem;
    color: var(--color-error);
    margin-top: var(--space-xs);
    padding-left: 4px;
}

.form-group--invalid .form-group__error {
    display: block;
}

/* Honeypot â€” visually hidden trap field */
.form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Select dropdown custom appearance */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7a8d' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Form-level error/success messages */
.form-alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-sm);
    font-size: var(--fs-small);
    font-weight: 500;
    margin-bottom: var(--space-lg);
    display: none;
}

.form-alert.show {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.form-alert--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-alert--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Shake animation on invalid submit */
.form-shake {
    animation: formShake 0.5s ease;
}

/* Form security note */
.form-security {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.form-security i {
    color: var(--color-accent);
}

/* =============================================================
   32. CARD COMPONENT STYLES (REUSABLE)
   ============================================================= */
.service-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    border-top: 3px solid transparent;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--color-accent);
}

.service-card__icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
    transition: var(--transition-base);
}

.service-card:hover .service-card__icon-wrap {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.service-card__text {
    font-size: var(--fs-small);
    color: var(--color-text-medium);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-fast);
}

.service-card__link i {
    transition: transform 0.3s ease;
}

.service-card__link:hover {
    color: var(--color-accent-hover);
}

.service-card__link:hover i {
    transform: translateX(4px);
}

/* =============================================================
   33. BREADCRUMB COMPONENT
   ============================================================= */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    position: relative;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--fs-small);
    transition: var(--transition-fast);
}

.breadcrumb-custom a:hover {
    color: var(--color-white);
}

.breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

.breadcrumb-custom .current {
    color: var(--color-accent);
    font-size: var(--fs-small);
    font-weight: 500;
}

/* =============================================================
   34. FAQ / ACCORDION
   ============================================================= */
.faq-section {
    padding: var(--space-3xl) 0;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    background-color: var(--color-white);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: 600;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
    gap: var(--space-md);
}

.faq-item__question:hover {
    color: var(--color-accent);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background-color: var(--color-secondary);
    color: var(--color-accent);
    font-size: 0.8rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item.open .faq-item__icon {
    transform: rotate(45deg);
    background-color: var(--color-accent);
    color: var(--color-white);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-item__answer {
    max-height: 600px;
}

.faq-item__answer-inner {
    padding: 0 var(--space-xl) var(--space-xl);
    font-size: var(--fs-body);
    color: var(--color-text-medium);
    line-height: 1.8;
}

/* =============================================================
   35. BADGES & TAGS
   ============================================================= */
.badge-hipaa {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* =============================================================
   36. BUTTON COMPONENT STYLES
   ============================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: var(--fs-button);
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.btn:hover {
    transform: translateY(-2px) scale(1.03);
}

.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn--primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-white);
    box-shadow: var(--shadow-hover);
}

.btn--secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn--secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.btn--ghost {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn--outline:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn--dark {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn--dark:hover {
    background-color: #0f2129;
    border-color: #0f2129;
    color: var(--color-white);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn--sm {
    padding: 8px 20px;
    font-size: var(--fs-small);
}

.btn--full {
    width: 100%;
}

/* Loading spinner inside button */
.btn__spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-white);
    border-radius: var(--radius-round);
    animation: spin 0.6s linear infinite;
}

.btn.loading .btn__spinner {
    display: inline-block;
}

.btn.loading .btn__text {
    display: none;
}

/* =============================================================
   37. ANIMATION KEYFRAMES
   ============================================================= */

/* Preloader pulse */
/* @keyframes preloaderPulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
} */
/* Disabled to avoid blinking */

@keyframes floatSoft {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Preloader bouncing dots */
@keyframes preloaderBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes translate-z {

    0%,
    40%,
    100% {
        transform: translateZ(-2px);
    }

    30% {
        transform: translateZ(16px) translateY(-1px);
    }
}

@keyframes face-color {

    0%,
    50%,
    100% {
        background-color: var(--cube-color);
    }

    10% {
        background-color: var(--highlight-color);
    }
}

@keyframes face-glow {

    0%,
    50%,
    100% {
        color: #fff0;
        filter: none;
    }

    30% {
        color: #fff;
        filter: drop-shadow(0 14px 10px var(--highlight-color));
    }
}

@keyframes edge-glow {

    0%,
    40%,
    100% {
        box-shadow: inset 0 0 2px 1px #0001,
            inset 0 0 12px 1px #fff1;
    }

    30% {
        box-shadow: 0 0 2px 0px var(--highlight-color);
    }
}

/* Hero gradient shift */
@keyframes heroGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hero floating cards bob */
@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(0);
    }
}

/* Spin (for loading spinners) */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Checkmark pop animation */
@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Form shake */
@keyframes formShake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    50%,
    90% {
        transform: translateX(-6px);
    }

    30%,
    70% {
        transform: translateX(6px);
    }
}

/* Fade in up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale up */
@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* CSS animated check drawing */
@keyframes drawCheck {
    0% {
        stroke-dashoffset: 30;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* ---- PREMIUM ANIMATION KEYFRAMES ---- */

/* Pulse glow on CTA buttons */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(42, 143, 168, 0.2), 0 0 20px rgba(42, 143, 168, 0);
    }

    50% {
        box-shadow: 0 0 10px rgba(42, 143, 168, 0.4), 0 0 40px rgba(42, 143, 168, 0.15);
    }
}

/* Shimmer sweep across cards */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Subtle breathing scale */
@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* Gentle rotate for decorative elements */
@keyframes gentleRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Slide in from bottom with bounce */
@keyframes slideInBounce {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    60% {
        opacity: 1;
        transform: translateY(-8px);
    }

    80% {
        transform: translateY(3px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient border animation */
@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Icon pop on hover */
@keyframes iconPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3) rotate(10deg);
    }

    100% {
        transform: scale(1.15) rotate(0deg);
    }
}

/* ---- PREMIUM MICRO-INTERACTIONS ---- */

/* Navbar CTA breathing glow */
.navbar-cta {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Service cards: magnetic hover with shimmer */
.service-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        border-color 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(42, 143, 168, 0.06) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: none;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::before {
    animation: shimmer 0.8s ease-out forwards;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(42, 143, 168, 0.18),
        0 8px 20px rgba(25, 52, 65, 0.08) !important;
    border-color: var(--color-accent) !important;
}

.service-card:hover .service-card__icon {
    animation: iconPop 0.5s ease forwards;
    color: var(--color-white) !important;
    background-color: var(--color-accent) !important;
}

/* Button press interaction */
.btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 10px 30px rgba(42, 143, 168, 0.35) !important;
}

.btn--ghost:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1) !important;
}

/* Stats bar number glow on count */
.stats-bar__number {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.stats-bar__item:hover .stats-bar__number {
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(42, 143, 168, 0.3);
}

.stats-bar__item:hover .stats-bar__icon {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(42, 143, 168, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Process step hover */
.process-step {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.process-step:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 40px rgba(25, 52, 65, 0.12) !important;
}

/* Testimonial card hover */
.testimonial-card {
    /* Animation removed */
}

/* Hero circle gentle breathing */
.hero__circle {
    animation: breathe 8s ease-in-out infinite;
}

/* Hero circle decorative ring */
.hero__circle::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(42, 143, 168, 0.2);
    animation: breathe 8s ease-in-out infinite 1s;
}

/* Footer links hover */
.footer__link:hover {
    transform: translateX(6px);
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Section eyebrow animated underline */
.section-eyebrow {
    position: relative;
}

.section-eyebrow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.6s ease;
}

.revealed .section-eyebrow::after,
.section-eyebrow:hover::after {
    width: 100%;
}

/* About feature items stagger & interaction */
.about-section__feature {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.about-section__feature:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 24px rgba(25, 52, 65, 0.1) !important;
}

/* Newsletter input focus glow */
.newsletter__input:focus {
    box-shadow: 0 0 0 4px rgba(42, 143, 168, 0.15),
        0 2px 8px rgba(42, 143, 168, 0.1) !important;
    border-color: var(--color-accent) !important;
}

/* Cookie consent smooth slide */
.cookie-consent {
    animation: slideInBounce 0.6s ease-out 2s both;
}

/* Scroll to top button hover */
.scroll-top:hover {
    transform: translateY(-4px) scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(42, 143, 168, 0.4) !important;
}

/* Other services card hover depth */
.other-services-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.other-services-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 40px rgba(25, 52, 65, 0.12) !important;
}

/* CTA banner animated gradient border */
.cta-banner {
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, #2a8fa8, #193441, #2a8fa8, #1e4d5e);
    background-size: 300% 300%;
    animation: gradientBorder 6s ease infinite;
    z-index: -1;
    opacity: 0.5;
    filter: blur(30px);
}

/* MVV card interaction */
.mvv-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.mvv-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 40px rgba(25, 52, 65, 0.12) !important;
}

/* FAQ item smooth interaction */
.faq-item__question:hover {
    background-color: rgba(42, 143, 168, 0.03) !important;
}

/* =============================================================
   38. SCROLL-REVEAL ANIMATION CLASSES (DISABLED TO PREVENT BLINKING)
   ============================================================= */

/* Elements start immediately visible to prevent blinking on scroll */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: none;
}

/* Stagger children delays disabled */
.stagger-1,
.stagger-2,
.stagger-3,
.stagger-4,
.stagger-5,
.stagger-6,
.stagger-7,
.stagger-8,
.stagger-9,
.stagger-10,
.stagger-11,
.stagger-12 {
    transition-delay: 0ms;
}

/* Hero-specific stagger disabled */
.hero-stagger-1,
.hero-stagger-2,
.hero-stagger-3,
.hero-stagger-4,
.hero-stagger-5,
.hero-stagger-6,
.hero-card-stagger-1,
.hero-card-stagger-2,
.hero-card-stagger-3 {
    animation: none;
    opacity: 1;
}

/* =============================================================
   39. RESPONSIVE â€” MOBILE-FIRST OVERRIDES
   ============================================================= */

/* ---- Small phones (max: 375px) ---- */
@media (max-width: 375px) {
    .hero__buttons {
        flex-direction: column;
    }

    .hero__cta {
        width: 100%;
    }

    .hero__aside p {
        text-align: center;
    }

    .stats-bar__inner {
        grid-template-columns: 1fr;
        padding: var(--space-lg);
    }

    .stats-bar__item:not(:last-child)::after {
        display: none;
    }
}

/* ---- Mobile (max: 576px) ---- */
@media (max-width: 576px) {
    .section {
        padding: var(--space-2xl) 0;
    }

    .container-custom,
    .container-wide,
    .container-narrow {
        padding: 0 var(--space-md);
    }

    .services-grid,
    .other-services-grid {
        grid-template-columns: 1fr;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .process-steps::before {
        display: none;
    }

    .blog-section {
        padding-top: clamp(2.75rem, 8vw, 4rem);
        padding-bottom: clamp(3rem, 8vw, 4rem);
    }

    .blog-section__header {
        padding-top: 0.4rem;
    }

    .blog-card {
        padding: 0.15rem;
    }

    .blog-card__description {
        font-size: 0.92rem;
    }

    .blog-card {
        padding: 0.1rem;
    }

    .blog-card__body {
        padding: 0 0.15rem 0.2rem;
    }

    .blog-card__description {
        font-size: 0.9rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__bottom-links {
        justify-content: center;
    }

    .cta-banner__checks {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .newsletter__inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter__form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter__content {
        text-align: center;
    }

    .contact-section__grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }

    .cert-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---- Mobile large (max: 767px) ---- */
@media (max-width: 767px) {

    /* Announcement bar hidden on mobile */
    .announcement-bar {
        display: none;
    }

    /* Show mobile floating CTA */
    .mobile-cta {
        display: block;
    }

    /* Use the desktop-style header on mobile too */
    .navbar-main,
    .navbar-main.scrolled,
    .navbar-main--transparent,
    .navbar-main--transparent.scrolled {
        height: 68px;
    }

    .navbar-brand img {
        height: 46px !important;
        margin-top: 0;
    }

    .navbar-main.scrolled .navbar-brand img {
        height: 42px !important;
    }

    .hero__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100svh;
        padding: clamp(4rem, 15vw, 5rem) var(--space-lg) clamp(2rem, 8vw, 3rem);
        gap: 1rem;
    }

    .hero {
        min-height: 100svh;
        padding: 0;
    }

    .hero__title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.1rem;
        font-size: clamp(1.5rem, 6.8vw, 2.1rem);
        max-width: none;
        text-align: center;
        margin-inline: auto;
        line-height: 1.04;
        margin-bottom: 0.35rem;
    }

    .hero__line {
        display: block;
    }

    .hero__line--main,
    .hero__line--deal {
        white-space: normal;
    }

    .hero__content {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .hero__buttons {
        justify-content: center;
        margin-top: 0.6rem;
        margin-bottom: 0.3rem;
    }

    .hero__aside {
        justify-self: center;
        padding-top: 0;
        max-width: 24rem;
    }

    .hero__aside p {
        text-align: center;
        font-size: clamp(0.9rem, 3.8vw, 1.05rem);
        line-height: 1.5;
    }

    .blog-section__shell {
        width: calc(100% - 1.5rem);
    }

    .blog-section__title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .blog-section__description {
        font-size: 0.96rem;
    }

    .blog-section__meta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-story__summary-body {
        padding: 1.05rem 1rem 1rem;
    }

    .blog-story__content {
        padding: 0 1rem 1rem;
    }

    .blog-story__bottom-grid {
        grid-template-columns: 1fr;
    }

    /* Stats bar */
    .stats-bar__inner {
        grid-template-columns: 1fr 1fr;
        padding: var(--space-lg);
    }

    .stats-bar__item:nth-child(2)::after {
        display: none;
    }

    /* Services grid */
    .services-grid,
    .other-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* About section stacked */
    .about-section__grid,
    .about-story {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-section__image-wrapper::before {
        bottom: -10px;
        right: -10px;
    }

    .about-section__features {
        grid-template-columns: 1fr;
    }

    /* Service detail stacked */
    .service-detail__grid {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) .service-detail__grid {
        direction: ltr;
    }

    /* Page hero reduced */
    .page-hero {
        padding: var(--space-2xl) 0 var(--space-xl);
    }

    /* Testimonial arrows hidden on small screens */
    .testimonial-carousel__arrow {
        display: none;
    }

    /* Footer 2-column on tablets, 1-col on mobile handled above */
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Add bottom padding for mobile floating CTA */
    body {
        padding-bottom: 72px;
    }
}

/* ---- Tablet (max: 991px) ---- */
@media (max-width: 991px) {
    .section {
        padding: var(--space-3xl) 0;
    }

    .navbar-toggler {
        display: flex;
    }

    .navbar-nav,
    .navbar-cta {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .other-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .blog-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-story-grid {
        grid-template-columns: 1fr;
    }

    .blog-story__summary,
    .blog-story__content-grid,
    .blog-story__bottom-grid {
        grid-template-columns: 1fr;
    }

    .hero__container {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        display: none;
    }

    .blog-grid,
    .blog-article__grid,
    .blog-article__insights {
        grid-template-columns: 1fr;
    }

    .blog-article--reverse .blog-article__figure,
    .blog-article--reverse .blog-article__body {
        order: initial;
    }

    .testimonial-carousel__arrow--prev {
        left: 0;
    }

    .testimonial-carousel__arrow--next {
        right: 0;
    }
}

/* ---- Desktop (max: 1199px) ---- */
@media (max-width: 1199px) {
    .mega-dropdown {
        min-width: 600px;
    }
}

/* ---- Desktop large (min: 992px) ---- */
@media (min-width: 992px) {

    /* Ensure desktop nav shows */
    .navbar-nav {
        display: flex !important;
    }

    .navbar-cta {
        display: inline-flex !important;
    }

    .navbar-toggler {
        display: none !important;
    }

    /* Mobile menu never visible on desktop */
    .mobile-menu,
    .mobile-overlay {
        display: none !important;
    }

    /* Mobile CTA never visible on desktop */
    .mobile-cta {
        display: none !important;
    }
}

/* ---- Desktop XL (min: 1400px) ---- */
@media (min-width: 1400px) {
    .container-custom {
        max-width: var(--container-default);
    }

    .container-wide {
        max-width: var(--container-wide);
    }
}

/* =============================================================
   40. PRINT STYLES
   ============================================================= */
@media print {

    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 12pt;
        line-height: 1.5;
        padding: 0;
        margin: 0;
    }

    /* Hide non-essential elements */
    .navbar-main,
    .announcement-bar,
    .preloader,
    .cookie-consent,
    .scroll-top,
    .mobile-cta,
    .mobile-menu,
    .mobile-overlay,
    .cta-banner,
    .newsletter-section,
    .footer,
    .testimonial-carousel__arrow,
    .testimonial-carousel__dots,
    .contact-map,
    video,
    iframe,
    .btn,
    .hero__visual {
        display: none !important;
    }

    /* Show all content */
    .faq-item__answer {
        max-height: none !important;
    }

    /* Display links */
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
        color: #555;
    }

    a[href^="#"]::after,
    a[href^="javascript"]::after {
        content: "";
    }

    /* Page breaks */
    h2,
    h3 {
        page-break-after: avoid;
    }

    .service-card,
    .mvv-card,
    .process-step {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    /* Print header */
    .hero::before {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 20pt 0;
    }

    .hero__title {
        font-size: 24pt;
        color: #000 !important;
    }
}

/* =============================================================
   41. ACCESSIBILITY â€” FOCUS & REDUCED MOTION
   ============================================================= */

/* Visible focus indicators */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Remove outline for mouse clicks (keep for keyboard) */
:focus:not(:focus-visible) {
    outline: none;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero {
        animation: none;
        background-size: 100% 100%;
    }

    .hero__float-card {
        animation: none;
    }

    .preloader__dot {
        animation: none;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }

    .hero-stagger-1,
    .hero-stagger-2,
    .hero-stagger-3,
    .hero-stagger-4,
    .hero-stagger-5,
    .hero-stagger-6,
    .hero-card-stagger-1,
    .hero-card-stagger-2,
    .hero-card-stagger-3 {
        animation: none;
        opacity: 1;
    }
}

/* High contrast mode support */
@media (forced-colors: active) {
    .btn {
        border: 2px solid ButtonText;
    }

    .service-card {
        border: 1px solid ButtonText;
    }
}

/* =============================================================
   PREMIUM BLOG SECTION UI
   ============================================================= */
.premium-blog-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    color: #111827;
}

.premium-blog-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 3.5rem;
    color: #ffffff !important;
    letter-spacing: -0.02em;
}

.premium-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.premium-blog-card {
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.premium-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.premium-blog-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.premium-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-blog-card:hover .premium-blog-card__media img {
    transform: scale(1.05);
}

.premium-blog-card__badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ef4444;
    color: #fff;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.premium-blog-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.premium-blog-card__title {
    color: #111827;
    font-family: var(--font-display, 'Poppins', sans-serif);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.premium-blog-card__excerpt {
    color: #6b7280;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =============================================================
   PREMIUM SERVICE CARDS (IMAGE-RICH)
   ============================================================= */
.premium-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.premium-service-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.premium-service-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #f1f5f9;
}

.premium-service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-service-card:hover .premium-service-card__media img {
    transform: scale(1.05);
}

.premium-service-card__icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.premium-service-card__body {
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.premium-service-card__title {
    color: var(--color-text-dark);
    font-family: var(--font-display, 'Poppins', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.premium-service-card__text {
    color: var(--color-text-light);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.premium-service-card__link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease, color 0.3s ease;
}

.premium-service-card:hover .premium-service-card__link {
    gap: 0.75rem;
    color: var(--color-primary-dark);
}

/* =============================================================
   CUSTOM CUBE LOADER
   ============================================================= */
:root {
    --cube-color: #0000;
    --highlight-color: var(--color-primary, #0d6efd);
}

.wrapper-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.cube {
    position: relative;
    width: 40px;
    height: 40px;
    transform-style: preserve-3d;
    animation: loader-bounce 1.5s infinite ease-in-out alternate;
}

.cube:nth-child(1) {
    animation-delay: 0.0s;
}

.cube:nth-child(2) {
    animation-delay: 0.1s;
}

.cube:nth-child(3) {
    animation-delay: 0.2s;
}

.cube:nth-child(4) {
    animation-delay: 0.3s;
}

.cube:nth-child(5) {
    animation-delay: 0.4s;
}

.cube:nth-child(6) {
    animation-delay: 0.5s;
}

.cube:nth-child(7) {
    animation-delay: 0.6s;
}

.face {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--cube-color);
    border: 1px solid var(--highlight-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display, sans-serif);
    font-weight: 700;
    font-size: 24px;
    color: #fff0;
    animation: face-color 3s infinite, edge-glow 3s infinite;
}

.face-front {
    transform: translateZ(20px);
    animation: face-color 3s infinite, edge-glow 3s infinite, face-glow 3s infinite;
}

.face-back {
    transform: rotateY(180deg) translateZ(20px);
}

.face-right {
    transform: rotateY(90deg) translateZ(20px);
}

.face-left {
    transform: rotateY(-90deg) translateZ(20px);
}

.face-top {
    transform: rotateX(90deg) translateZ(20px);
}

.face-bottom {
    transform: rotateX(-90deg) translateZ(20px);
}

@keyframes loader-bounce {
    0% {
        transform: rotateX(-20deg) rotateY(-20deg) translateY(0);
    }

    100% {
        transform: rotateX(-20deg) rotateY(-20deg) translateY(-20px);
    }
}

@keyframes translate-z {

    0%,
    40%,
    100% {
        transform: translateZ(-2px);
    }

    30% {
        transform: translateZ(16px) translateY(-1px);
    }
}

@keyframes face-color {

    0%,
    50%,
    100% {
        background-color: var(--cube-color);
    }

    10% {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

@keyframes face-glow {

    0%,
    50%,
    100% {
        color: #fff0;
        filter: none;
    }

    30% {
        color: var(--highlight-color);
        filter: drop-shadow(0 0 10px var(--highlight-color));
    }
}

@keyframes edge-glow {

    0%,
    40%,
    100% {
        box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.1), inset 0 0 12px 1px rgba(255, 255, 255, 0.1);
    }

    30% {
        box-shadow: 0 0 10px 0px var(--highlight-color);
    }
}


/* ==========================================================================
   DARK PREMIUM CONTACT SECTION
   ========================================================================== */
.contact-premium {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #0c0c0c;
    display: flex;
    align-items: center;
    padding-top: var(--header-height, 100px);
}

.contact-premium__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1742273330004-ef9c9d228530?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHx0b3BpYy1mZWVkfDY0fENEd3V3WEpBYkV3fHxlbnwwfHx8fHw%3D&auto=format&fit=crop&q=60&w=900');
    transition: all 0.5s ease-in-out;
    opacity: 0.15;
}

.contact-premium__bubbles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatBubble 15s ease-in-out infinite forwards;
    opacity: 0;
}

/* Hardcode a few bubbles to match the React dynamic generation roughly */
.bubble-1 {
    width: 20px;
    height: 20px;
    left: 10%;
    top: 90%;
    animation-delay: 0s;
    --rand-x: 1;
}

.bubble-2 {
    width: 30px;
    height: 30px;
    left: 30%;
    top: 80%;
    animation-delay: 2s;
    --rand-x: -1;
    animation-duration: 18s;
}

.bubble-3 {
    width: 15px;
    height: 15px;
    left: 50%;
    top: 95%;
    animation-delay: 5s;
    --rand-x: 1;
}

.bubble-4 {
    width: 25px;
    height: 25px;
    left: 70%;
    top: 85%;
    animation-delay: 1s;
    --rand-x: -1;
}

.bubble-5 {
    width: 18px;
    height: 18px;
    left: 85%;
    top: 92%;
    animation-delay: 4s;
    --rand-x: 1;
    animation-duration: 12s;
}

.bubble-6 {
    width: 22px;
    height: 22px;
    left: 20%;
    top: 75%;
    animation-delay: 7s;
    --rand-x: -1;
}

.bubble-7 {
    width: 28px;
    height: 28px;
    left: 60%;
    top: 88%;
    animation-delay: 3s;
    --rand-x: 1;
    animation-duration: 20s;
}

.bubble-8 {
    width: 12px;
    height: 12px;
    left: 90%;
    top: 90%;
    animation-delay: 6s;
    --rand-x: -1;
}

@keyframes floatBubble {
    0% {
        transform: translateY(0) translateX(0) scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(calc(var(--rand-x) * 10vw)) scale(1.2);
        opacity: 0;
    }
}

.contact-premium__container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
    padding: 2rem 1rem;
}

@media (min-width: 992px) {
    .contact-premium__container {
        grid-template-columns: 1fr 1fr;
        padding: 3rem;
    }
}

.contact-premium__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-premium__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fafafa;
    line-height: 1.1;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

.contact-premium__card {
    background: rgba(12, 12, 12, 0.9);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #1e293b;
    backdrop-filter: blur(10px);
}

.contact-premium__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fafafa;
    margin-bottom: 1.5rem;
}

.contact-premium__info .hover-underline:hover {
    text-decoration: underline;
}

.contact-premium__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon.outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #1e293b;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    color: #fafafa;
}

.btn-icon.outline:hover {
    background: #27272a;
}

.contact-premium__divider {
    margin: 1.5rem 0;
    border-top: 1px solid #1e293b;
    opacity: 0.5;
}

.contact-premium__form-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .contact-premium__form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group-dark {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-dark label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fafafa;
}

.form-group-dark input,
.form-group-dark textarea {
    width: 100%;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #fafafa;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.form-group-dark input:focus,
.form-group-dark textarea:focus {
    outline: none;
    border-color: #3b82f6;
    /* primary ring */
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.contact-premium__checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    margin-top: 4px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #fafafa;
    font-size: 0.875rem;
}

.custom-checkbox input[type="radio"],
.custom-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
    /* Use theme accent */
    background: #09090b;
    border: 1px solid #27272a;
}


/* ==========================================================================
   ANIMATED FOOTER (Global Replacement)
   ========================================================================== */
.animated-footer-wrapper {
    position: relative;
    width: 100%;
}

.animated-footer {
    border-top: 1px solid #1e293b;
    background-color: #09090b;
    position: relative;
    padding-bottom: 2rem;
    overflow: hidden;
}

.animated-footer__container {
    max-width: 80rem;
    min-height: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 20;
}

.animated-footer__bg-text {
    position: absolute;
    left: 50%;
    bottom: 8rem;
    transform: translateX(-50%);
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    text-align: center;
    pointer-events: none;
    user-select: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05), transparent);
    -webkit-background-clip: text;
    color: transparent;
    width: 95vw;
}

.animated-footer__logo-bubble {
    position: absolute;
    left: 50%;
    bottom: 5rem;
    transform: translateX(-50%);
    backdrop-filter: blur(4px);
    background: rgba(9, 9, 11, 0.6);
    border: 2px solid #1e293b;
    border-radius: 1.5rem;
    padding: 0.75rem;
    z-index: 10;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.animated-footer__logo-bubble:hover {
    border-color: #fafafa;
}

.animated-footer__logo-inner {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    font-size: 1.5rem;
    color: #09090b;
}
    padding: clamp(4rem, 6vw, 6rem) 0;
.animated-footer__glow-line {
    position: absolute;
    left: 50%;
    bottom: 8.5rem;
    transform: translateX(-50%);
    height: 2px;
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(to right, transparent, #1e293b, transparent);
    backdrop-filter: blur(4px);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.animated-footer__bottom-shadow {
    position: absolute;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    height: 6rem;
    background: linear-gradient(to top, #09090b, rgba(9, 9, 11, 0.8), rgba(9, 9, 11, 0.4));
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    pointer-events: none;
    z-index: 9;
}

@media (min-width: 768px) {
    border-radius: 18px;
        min-height: 40rem;
    }

    .animated-footer__logo-inner {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        font-size: 2.5rem;
    }

    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
    }

    .animated-footer__logo-bubble {
        bottom: 5rem;
    }
    aspect-ratio: 16 / 10;

/* Base utility overrides */
.text-foreground {
    color: #fafafa !important;
}

.text-muted-foreground {
    color: #a1a1aa !important;
}

.hover\:text-foreground:hover {
    color: #fafafa !important;
}

.bg-background {
    background-color: #09090b !important;
}

/* Custom link utilities */
.animated-footer__nav-link {
    color: #a1a1aa;
    transition: all 0.3s ease;
}
    padding: 1.35rem 1.35rem 1.5rem;
.animated-footer__nav-link:hover {
    color: #fafafa;
    font-weight: 600;
}

.animated-footer__social-link {
    color: #a1a1aa;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    width: 24px;
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    align-items: center;
    margin: 0;
    line-height: 1.25;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
.animated-footer__social-link:hover {
    color: #fafafa;
    transform: scale(1.1);
}

    font-size: 0.92rem;
    line-height: 1.55;
   HOVER FOOTER (Global Replacement) - Utility Classes for Layout
   ========================================================================== */
    -webkit-line-clamp: 2;
/* Grid */
.hover-footer .grid {
    display: grid;
}

.hover-footer .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.hover-footer .gap-12 {
    gap: 3rem;
}

.hover-footer .pb-12 {
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .hover-footer .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hover-footer .md\:gap-8 {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .hover-footer .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hover-footer .lg\:gap-16 {
        gap: 4rem;
    }
}

/* Flexbox */
.hover-footer .flex {
    display: flex;
}

.hover-footer .flex-col {
    flex-direction: column;
}

.hover-footer .items-center {
    align-items: center;
}

.hover-footer .items-start {
    align-items: flex-start;
}

.hover-footer .justify-between {
    justify-content: space-between;
}

@media (min-width: 768px) {
    .hover-footer .md\:flex-row {
        flex-direction: row;
    }
}

/* Spacing */
.hover-footer .space-y-4>*+* {
    margin-top: 1rem;
}

.hover-footer .space-y-3>*+* {
    margin-top: 0.75rem;
}

.hover-footer .space-x-2>*+* {
    margin-left: 0.5rem;
}

.hover-footer .space-x-3>*+* {
    margin-left: 0.75rem;
}

.hover-footer .space-x-6>*+* {
    margin-left: 1.5rem;
}

.hover-footer .mb-6 {
    margin-bottom: 1.5rem;
}

.hover-footer .mt-1 {
    margin-top: 0.25rem;
}

.hover-footer .my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Colors & Typography */
.hover-footer .text-\[\#3ca2fa\] {
    color: #3ca2fa;
}

.hover-footer .text-white {
    color: #ffffff;
}

.hover-footer .text-gray-300 {
    color: #d1d5db;
}

.hover-footer .text-gray-400 {
    color: #9ca3af;
}

.hover-footer .text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.hover-footer .text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.hover-footer .text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.hover-footer .text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.hover-footer .font-extrabold {
    font-weight: 800;
}

.hover-footer .font-bold {
    font-weight: 700;
}

.hover-footer .font-semibold {
    font-weight: 600;
}

.hover-footer .leading-relaxed {
    line-height: 1.625;
}

.hover-footer .text-center {
    text-align: center;
}

@media (min-width: 768px) {
    .hover-footer .md\:text-left {
        text-align: left;
    }
}

/* Sizing & Positioning */
.hover-footer .max-w-7xl {
    max-width: 80rem;
}

.hover-footer .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.hover-footer .mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.hover-footer .my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hover-footer .p-8 {
    padding: 2rem;
}

@media (min-width: 1024px) {
    .hover-footer .lg\:p-14 {
        padding: 3.5rem;
    }
}

.hover-footer .relative {
    position: relative;
}

.hover-footer .absolute {
    position: absolute;
}

.hover-footer .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hover-footer .top-0 {
    top: 0;
}

.hover-footer .right-\[-14px\] {
    right: -14px;
}

.hover-footer .w-fit {
    width: fit-content;
}

.hover-footer .w-full {
    width: 100%;
}

.hover-footer .w-2 {
    width: 0.5rem;
}

.hover-footer .h-2 {
    height: 0.5rem;
}

.hover-footer .z-40 {
    z-index: 40;
}

.hover-footer .z-50 {
    z-index: 50;
}

.hover-footer .z-0 {
    z-index: 0;
}

.hover-footer .border-t {
    border-top-width: 1px;
    border-style: solid;
}

.hover-footer .border-gray-700\/50 {
    border-color: rgba(55, 65, 81, 0.5);
}

/* Effects & State */
.hover-footer .rounded-\[2rem\] {
    border-radius: 2rem;
}

.hover-footer .rounded-full {
    border-radius: 9999px;
}

.hover-footer .overflow-hidden {
    overflow: hidden;
}

.hover-footer .bg-\[\#3ca2fa\] {
    background-color: #3ca2fa;
}

.hover-footer .transition-colors {
    transition-property: color, background-color, border-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.hover-footer .hover\:text-\[\#3ca2fa\]:hover {
    color: #3ca2fa;
}

.hover-footer .cursor-default {
    cursor: default;
}

.hover-footer .pointer-events-none {
    pointer-events: none;
}

.hover-footer .select-none {
    user-select: none;
}

.hover-footer .uppercase {
    text-transform: uppercase;
}

.hover-footer .fill-transparent {
    fill: transparent;
}

.hover-footer .stroke-gray-700\/40 {
    stroke: rgba(55, 65, 81, 0.4);
}

.hover-footer .stroke-\[\#3ca2fa\]\/50 {
    stroke: rgba(60, 162, 250, 0.5);
}

/* Custom SVG Text Effect specific */
.hover-footer .hidden {
    display: none;
}

@media (min-width: 1024px) {
    .hover-footer .lg\:flex {
        display: flex;
    }
}

.hover-footer .h-\[30rem\] {
    height: 30rem;
}

.hover-footer .-mt-52 {
    margin-top: -13rem;
}

.hover-footer .-mb-36 {
    margin-bottom: -9rem;
}

.hover-footer .font-\[helvetica\] {
    font-family: Helvetica, Arial, sans-serif;
}

.hover-footer a:hover {
    text-decoration: none;
}

@keyframes anim-stroke {
    to {
        stroke-dashoffset: 0;
    }
}

.anim-stroke {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: anim-stroke 4s ease-in-out forwards;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.5);
    }
}

.animate-pulse {
    animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}


/* ==========================================================================
   PREMIUM BENTO BOX SERVICES GRID
   ========================================================================== */
.premium-bento-section {
    background-color: #09090b;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.premium-bento-section::before {
    content: '';
    position: absolute;
    top: 5%;
    left: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(60, 162, 250, 0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.premium-bento-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.premium-bento-section .container-custom {
    position: relative;
    z-index: 10;
}

.bento-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: min-content;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-flow: dense;
    }
}

.bento-card {
    background-color: rgba(30, 30, 35, 0.4);
    border-radius: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.25rem;
    overflow: hidden;
    text-decoration: none !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

.bento-card--large {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-card--medium {
    grid-column: span 1;
    grid-row: span 1;
}

@media (min-width: 640px) {

    .bento-card--large,
    .bento-card--medium {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .bento-card--large {
        grid-row: span 2;
    }
}

/* Mouse proximity glow */
.bento-card::before {
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.05),
            transparent 40%);
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    opacity: 0;
    transition: opacity 500ms;
    pointer-events: none;
}

.bento-glow {
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(60, 162, 250, 0.3),
            transparent 40%);
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 500ms;
    pointer-events: none;
}

.bento-grid:hover .bento-card::before,
.bento-grid:hover .bento-glow {
    opacity: 1;
}

.bento-card__inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bento-card__icon-wrapper {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}

.bento-card--large .bento-card__icon-wrapper {
    width: 5rem;
    height: 5rem;
}

.bento-card:hover .bento-card__icon-wrapper {
    transform: scale(1.08) rotate(-4deg);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(60, 162, 250, 0.4);
}

.bento-card__title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.bento-card--large .bento-card__title {
    font-size: 1.85rem;
}

.bento-card__text {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bento-card--large .bento-card__text {
    font-size: 1.1rem;
}

.bento-card__link {
    display: inline-flex;
    align-items: center;
    color: #3ca2fa;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s, color 0.3s;
}

.bento-card__link i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.bento-card:hover .bento-card__link {
    opacity: 1;
    color: #eab308;
}

.bento-card:hover .bento-card__link i {
    transform: translateX(6px);
}

/* ==========================================================================
   SERVICES.HTML FULL PAGE UPGRADE (Dark Mode & Glassmorphism)
   ========================================================================== */
body:has(.page-hero) {
    background-color: #09090b !important;
}

.page-hero {
    background: radial-gradient(circle at 50% 100%, rgba(60, 162, 250, 0.15) 0%, #09090b 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
}

.page-hero p {
    color: #a1a1aa;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 1.5rem auto 0;
}

.breadcrumb-custom {
    color: #3ca2fa;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.breadcrumb-custom a {
    color: #a1a1aa;
}

.breadcrumb-custom .current {
    color: #3ca2fa;
}

/* Jump Nav */
.services-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.services-jump-nav__link {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none !important;
    backdrop-filter: blur(8px);
}

.services-jump-nav__link:hover {
    background: rgba(60, 162, 250, 0.15);
    border-color: #3ca2fa;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Service Detail Alternating Blocks */
.service-detail {
    background-color: #09090b;
    padding: 8rem 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

/* Add subtle ambient glows behind alternating sections */
.service-detail:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(60, 162, 250, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.service-detail:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .service-detail__grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 6rem;
    }

    .service-detail:nth-child(even) .service-detail__grid {
        grid-template-columns: 1fr 1.2fr;
    }

    .service-detail:nth-child(even) .reveal-left {
        order: 2;
    }

    .service-detail:nth-child(even) .reveal-right {
        order: 1;
    }
}

.service-detail__icon {
    width: 5rem;
    height: 5rem;
    background: rgba(60, 162, 250, 0.1);
    border: 1px solid rgba(60, 162, 250, 0.2);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #3ca2fa;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-detail__title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.03em;
}

.service-detail__text {
    color: #a1a1aa;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-detail__benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.service-detail__benefits li {
    color: #d1d5db;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.service-detail__benefits li::before {
    content: "\f058";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #3ca2fa;
    margin-right: 1rem;
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.service-detail__image {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.85) contrast(1.1);
    /* moody dark look */
}

.service-detail__grid:hover .service-detail__image {
    transform: scale(1.03) translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn--primary {
    background: #3ca2fa;
    color: #fff !important;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    border: none;
}

.btn--primary:hover {
    background: #fff;
    color: #09090b !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(60, 162, 250, 0.4);
}

.btn--primary i {
    margin-left: 0.75rem;
    transition: transform 0.3s;
}
}

.btn--primary:hover i {
    transform: translateX(5px);
}

/* =============================================================
   15. GRADIENT BARS & MERGED CTA NEWSLETTER
   ============================================================= */
@keyframes pulseBar {
    0% {
        transform: scaleY(var(--initial-scale));
    }

    100% {
        transform: scaleY(calc(var(--initial-scale) * 0.7));
    }
}

.merged-bottom-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: rgb(10, 10, 10);
    /* Base dark color, matches React prop */
    padding: var(--space-4xl) 0;
    z-index: 1;
}

.gradient-bars-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background-color: rgb(10, 10, 10);
}

.gradient-bars-bg__inner {
    display: flex;
    height: 100%;
    width: 100%;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.gradient-bars-bg__bar {
    height: 100%;
    transform-origin: bottom;
    transition: transform 0.5s ease-in-out;
    outline: 1px solid rgba(0, 0, 0, 0);
    box-sizing: border-box;
}

/* Merged Content Styling */
.merged-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-md);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3xl);
}

.merged-cta,
.merged-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.merged-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: #ffffff;
}
}

/* =============================================================
   15. GRADIENT BARS & MERGED CTA NEWSLETTER
   ============================================================= */
@keyframes pulseBar {
    0% {
        transform: scaleY(var(--initial-scale));
    }

    100% {
        transform: scaleY(calc(var(--initial-scale) * 0.7));
    }
}

.merged-bottom-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: rgb(10, 10, 10);
    /* Base dark color, matches React prop */
    padding: var(--space-4xl) 0;
    z-index: 1;
}

.gradient-bars-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background-color: rgb(10, 10, 10);
}

.gradient-bars-bg__inner {
    display: flex;
    height: 100%;
    width: 100%;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.gradient-bars-bg__bar {
    height: 100%;
    transform-origin: bottom;
    transition: transform 0.5s ease-in-out;
    outline: 1px solid rgba(0, 0, 0, 0);
    box-sizing: border-box;
}

/* Merged Content Styling */
.merged-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-md);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3xl);
}

.cta-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-4xl) var(--space-2xl);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: #ffffff;
}

.cta-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-bottom: var(--space-xl);
}

.cta-box .cta-banner__checks {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .cta-box {
        padding: var(--space-2xl) var(--space-lg);
    }

    .cta-box h2 {
        font-size: 2.2rem;
    }
}

.pl {
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 14em;
    height: 14em;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    color: #0a1628;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.pl__dot {
    position: absolute;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: linear-gradient(135deg, #1b6b93, #2a8fa8);
    box-shadow: 0 0.15em 0.5em rgba(27, 107, 147, 0.3), inset 0 0 0.2em rgba(255, 255, 255, 0.4);
    animation: pushInOut1724 2.4s ease-in-out infinite, shadow724 2.4s ease-in-out infinite;
    z-index: 5;
    /* Base offset 6.25em (7em center - 0.75em radius) */
}

.pl__dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: inset 0.1em 0.1em 0.2em rgba(255, 255, 255, 0.8), 0.15em 0.15em 0.4em rgba(0, 0, 0, 0.15);
    animation: pushInOut2724 2.4s ease-in-out infinite;
    z-index: -1;
}

/* Position 12 dots in a perfect circle (Radius = 5em) */
.pl__dot:nth-child(1) {
    left: 11.25em;
    top: 6.25em;
    animation-delay: 0.0s;
}

.pl__dot:nth-child(1)::before {
    animation-delay: 0.0s;
}

.pl__dot:nth-child(2) {
    left: 10.58em;
    top: 8.75em;
    animation-delay: 0.2s;
}

.pl__dot:nth-child(2)::before {
    animation-delay: 0.2s;
}

.pl__dot:nth-child(3) {
    left: 8.75em;
    top: 10.58em;
    animation-delay: 0.4s;
}

.pl__dot:nth-child(3)::before {
    animation-delay: 0.4s;
}

.pl__dot:nth-child(4) {
    left: 6.25em;
    top: 11.25em;
    animation-delay: 0.6s;
}

.pl__dot:nth-child(4)::before {
    animation-delay: 0.6s;
}

.pl__dot:nth-child(5) {
    left: 3.75em;
    top: 10.58em;
    animation-delay: 0.8s;
}

.pl__dot:nth-child(5)::before {
    animation-delay: 0.8s;
}

.pl__dot:nth-child(6) {
    left: 1.92em;
    top: 8.75em;
    animation-delay: 1.0s;
}

.pl__dot:nth-child(6)::before {
    animation-delay: 1.0s;
}

.pl__dot:nth-child(7) {
    left: 1.25em;
    top: 6.25em;
    animation-delay: 1.2s;
}

.pl__dot:nth-child(7)::before {
    animation-delay: 1.2s;
}

.pl__dot:nth-child(8) {
    left: 1.92em;
    top: 3.75em;
    animation-delay: 1.4s;
}

.pl__dot:nth-child(8)::before {
    animation-delay: 1.4s;
}

.pl__dot:nth-child(9) {
    left: 3.75em;
    top: 1.92em;
    animation-delay: 1.6s;
}

.pl__dot:nth-child(9)::before {
    animation-delay: 1.6s;
}

.pl__dot:nth-child(10) {
    left: 6.25em;
    top: 1.25em;
    animation-delay: 1.8s;
}

.pl__dot:nth-child(10)::before {
    animation-delay: 1.8s;
}

.pl__dot:nth-child(11) {
    left: 8.75em;
    top: 1.92em;
    animation-delay: 2.0s;
}

.pl__dot:nth-child(11)::before {
    animation-delay: 2.0s;
}

.pl__dot:nth-child(12) {
    left: 10.58em;
    top: 3.75em;
    animation-delay: 2.2s;
}

.pl__dot:nth-child(12)::before {
    animation-delay: 2.2s;
}

.pl__text {
    font-size: 1.1em;
    font-weight: 700;
    color: #ffffff;
    z-index: 10;
}

@keyframes shadow724 {
    from {
        box-shadow: 0 0.1em 0.3em rgba(27, 107, 147, 0.25);
    }

    15% {
        box-shadow: 0 0.5em 1.2em rgba(0, 210, 196, 0.55);
    }

    30%,
    to {
        box-shadow: 0 0.1em 0.3em rgba(27, 107, 147, 0.25);
    }
}

@keyframes pushInOut1724 {
    from {
        background-color: #1b6b93;
        transform: translate(0, 0);
    }

    15% {
        background-color: #00d2c4;
        transform: translate(-30%, -30%);
    }

    30%,
    to {
        background-color: #1b6b93;
        transform: translate(0, 0);
    }
}

@keyframes pushInOut2724 {
    from {
        background-color: #2a8fa8;
        transform: translate(0, 0);
    }

    15% {
        background-color: #ffffff;
        transform: translate(30%, 30%);
    }

    30%,
    to {
        background-color: #2a8fa8;
        transform: translate(0, 0);
    }
}

/* =============================================================
   CONTACT PAGE EXCLUSIONS
   ============================================================= */
/* Ensure the contact page remains completely untouched by the new global grid background */
body.contact-page {
    background-image: none !important;
    background-color: #d4eaf7 !important;
}


/* Ensure the contact page restores the original white section backgrounds that were made transparent globally */
body.contact-page .section,
body.contact-page .section--alt {
    background-color: var(--color-white) !important;
}

/* ============================================================
   MODERN CARD COMPONENT (DestinationCard)
   ============================================================ */

.modern-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 1rem;
    /* 16px */
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-in-out;
    text-decoration: none !important;
    /* Default theme color if not overridden inline */
    --theme-color: 150 50% 25%;
}

.modern-card:hover {
    transform: none;
    box-shadow: 0 0 40px -10px hsl(var(--theme-color) / 0.5);
}

/* Background Image with Parallax Zoom */
.modern-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
    z-index: 1;
}

.modern-card:hover .modern-card__bg {
    transform: none;
}

/* Themed Gradient Overlay */
.modern-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--theme-color) / 0.95), hsl(var(--theme-color) / 0.7) 30%, transparent 70%);
    z-index: 2;
    transition: opacity 0.5s ease;
}

/* Content Container */
.modern-card__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 1.5rem;
    color: white;
}

/* Title & Subtitle */
.modern-card__title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 0.5rem 0;
    color: white;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.modern-card__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

/* Explore Button */
.modern-card__btn {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: hsl(var(--theme-color) / 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsl(var(--theme-color) / 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    color: white;
}

.modern-card:hover .modern-card__btn {
    background-color: hsl(var(--theme-color) / 0.4);
    border-color: hsl(var(--theme-color) / 0.5);
}

.modern-card__btn-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.modern-card__btn-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.modern-card:hover .modern-card__btn-icon {
    transform: translateX(6px);
}

/* =============================================================
   BLOG POST FAQ DETAILS DROPDOWN
   ============================================================= */
.faq-item-details {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-details[open] {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-item-details summary {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item-details summary::-webkit-details-marker {
    display: none;
}

.faq-item-details summary h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #111827;
    font-weight: 600;
}

.faq-item-details[open] summary i {
    transform: rotate(180deg);
}

.faq-item-content {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

.faq-item-content p {
    margin: 0;
}

/* ---- Partner Program Callout Banner ---- */
.partner-cta-section {
    background: linear-gradient(135deg, #0a1628 0%, #111e2f 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

@media (min-width: 992px) {
    .partner-cta-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 4rem;
        text-align: left;
    }
}

.partner-cta-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 992px) {
    .partner-cta-content {
        text-align: left;
    }
}

.partner-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(27, 107, 147, 0.2);
    color: #00d2c4;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 210, 196, 0.2);
}

.partner-cta-content h2 {
    font-size: 1.85rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
    .partner-cta-content h2 {
        font-size: 2.25rem;
    }
}

.partner-cta-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.partner-cta-action {
    flex-shrink: 0;
}

.partner-cta-action .btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    background-color: #00d2c4;
    color: #0a1628 !important;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 210, 196, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.partner-cta-action .btn:hover {
    background-color: #ffffff;
    color: #0a1628 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Header Scroll-Hide Animation */
.navbar-main {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, padding 0.3s ease !important;
}

.navbar-main.navbar-hidden {
    transform: translateY(-100%);
}
/* ==========================================================================
   GLOBAL TRANSPARENT HEADER OVERRIDES (Requested Fix)
   ========================================================================== */

/* 1. Force global transparent background (un-scrolled) for ALL pages */
.navbar-main, 
.page-home .navbar-main,
.page-home .navbar-main--transparent,
.page-inner .navbar-main {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: 1px solid transparent !important;
}

/* 2. Force black background when scrolled */
.navbar-main.scrolled,
.page-home .navbar-main.scrolled,
.page-inner .navbar-main.scrolled {
    background: #000000 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* 3. Dark text when transparent (Common Sense Fix) */
.navbar-nav__link,
.page-home .navbar-nav__link,
.page-home .navbar-main:not(.scrolled) .navbar-nav__link {
    color: #193441 !important;
}

/* 4. White text when scrolled (Black background) */
.navbar-main.scrolled .navbar-nav__link,
.page-home .navbar-main.scrolled .navbar-nav__link {
    color: #ffffff !important;
}

/* 5. Update mobile toggle bars */
.navbar-toggler__bar {
    background-color: #193441 !important;
}
.navbar-main.scrolled .navbar-toggler__bar {
    background-color: #ffffff !important;
}

/* 6. Active underline should match text color */
.navbar-nav__link--active::after {
    background-color: currentColor !important;
}

/* 7. Hover background for links */
.navbar-nav__link:hover,
.navbar-nav__link:focus-visible {
    background-color: rgba(0, 0, 0, 0.05) !important;
}
.navbar-main.scrolled .navbar-nav__link:hover,
.navbar-main.scrolled .navbar-nav__link:focus-visible {
    background-color: rgba(255, 255, 255, 0.08) !important;
}


/* ==========================================================================
   GLOBAL TRANSPARENT HEADER OVERRIDES (Requested Fix v2)
   ========================================================================== */

/* 1. Force global transparent background (un-scrolled) for ALL pages */
.navbar-main, 
.page-home .navbar-main,
.page-inner .navbar-main {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: 1px solid transparent !important;
}

/* 2. Force black background when scrolled */
.navbar-main.scrolled,
.page-home .navbar-main.scrolled,
.page-inner .navbar-main.scrolled {
    background: #000000 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* 3. LIGHT TEXT for Home, Services, Other Services when transparent */
.page-home .navbar-main:not(.scrolled) .navbar-nav__link {
    color: #ffffff !important;
}
.page-home .navbar-main:not(.scrolled) .navbar-toggler__bar {
    background-color: #ffffff !important;
}

/* 4. DARK TEXT for About, Contact, Blog when transparent */
.page-inner .navbar-main:not(.scrolled) .navbar-nav__link {
    color: #193441 !important;
}
.page-inner .navbar-main:not(.scrolled) .navbar-toggler__bar {
    background-color: #193441 !important;
}

/* 5. WHITE TEXT for all pages when scrolled (Black background) */
.navbar-main.scrolled .navbar-nav__link {
    color: #ffffff !important;
}
.navbar-main.scrolled .navbar-toggler__bar {
    background-color: #ffffff !important;
}

/* 6. Active underline should match text color */
.navbar-nav__link--active::after {
    background-color: currentColor !important;
}

/* 7. Hover background for links */
.page-home .navbar-main:not(.scrolled) .navbar-nav__link:hover,
.page-home .navbar-main:not(.scrolled) .navbar-nav__link:focus-visible {
    background-color: rgba(255, 255, 255, 0.08) !important;
}
.page-inner .navbar-main:not(.scrolled) .navbar-nav__link:hover,
.page-inner .navbar-main:not(.scrolled) .navbar-nav__link:focus-visible {
    background-color: rgba(0, 0, 0, 0.05) !important;
}
.navbar-main.scrolled .navbar-nav__link:hover,
.navbar-main.scrolled .navbar-nav__link:focus-visible {
    background-color: rgba(255, 255, 255, 0.08) !important;
}
