/* ================================================================
   PREVENTIA DATA INNOVATIONS — DARK THEME STYLESHEET
   ================================================================ */

/* ================================================================
   DESIGN TOKENS — Dark Premium Theme
   ================================================================ */
:root {
    --primary-color: #8b5cf6;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --accent: #c4b5fd;
    --white: #ffffff;

    /* Dark surfaces */
    --bg-body: #08080d;
    --bg-surface: #0f0f16;
    --bg-surface-alt: #13131c;
    --bg-elevated: #1a1a26;
    --bg-card: #141420;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(139, 92, 246, 0.25);

    /* Text */
    --text-heading: #f0f0f5;
    --text-primary: #d4d4dc;
    --text-muted: #6b6b80;

    /* Sidebar */
    --sidebar-bg: #0f0f16;
    --sidebar-link: #c4b5fd;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ================================================
   HEADER — Glassmorphism sticky header (dark)
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0;
    background-color: rgba(8, 8, 13, 0.6);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
    background-color: rgba(8, 8, 13, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 var(--border-color), 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.logo {
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.85;
}

.logo-img {
    height: 64px;
    width: auto;
    display: block;
}

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-nav .nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    border-radius: 50px;
}

.header-nav .nav-link.active {
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary-light);
    font-weight: 500;
}

.header-nav .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* CTA Button */
.btn-cta {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.8rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.3px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.btn-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.35);
}

.btn-cta:hover i {
    transform: translateX(3px);
}

/* Buttons — general */
.btn {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.8rem;
    border-radius: 24px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary i {
    font-size: 1.1rem;
}

/* Hamburger */
.hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-radius: 2px;
}

.hamburger span:nth-child(2) {
    width: 16px;
    align-self: flex-end;
}

.hamburger:hover span {
    background-color: var(--primary-light);
}

.hamburger:hover span:nth-child(2) {
    width: 22px;
}

/* ================================================
   HERO SECTION — Full width with animated bg
   ================================================ */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2.5rem 6rem;
    min-height: 100vh;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

/* Hero Canvas Animation */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background:
        radial-gradient(ellipse at 40% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 40%, rgba(129, 140, 248, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: heroGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes heroGlowPulse {
    0% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    gap: 1.75rem;
    animation: heroFadeIn 0.8s ease-out 0.2s both;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    width: fit-content;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-badge i {
    color: var(--primary-light);
    font-size: 0.7rem;
}

/* Title */
.title {
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: -1.5px;
}

.title-accent {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Hero Description */
.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 500px;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    margin-top: 0.75rem;
}

.btn-hero-primary,
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    min-width: 165px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.btn-hero-primary i,
.btn-hero-outline i {
    font-size: 0.78rem;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-hero-primary:hover i,
.btn-hero-outline:hover i {
    transform: translateX(3px);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-outline:hover {
    border-color: rgba(139, 92, 246, 0.35);
    background: rgba(139, 92, 246, 0.08);
    color: var(--text-heading);
    transform: translateY(-3px);
}

/* Trust Section */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.55rem;
    border: 2px solid var(--bg-body);
    margin-left: -8px;
    transition: transform 0.3s ease;
}

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

.trust-avatar:hover {
    transform: translateY(-3px);
    z-index: 2;
}

.trust-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-rating {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-heading);
}

.trust-rating i {
    color: #f59e0b;
    font-size: 0.72rem;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Hero image (hidden in dark theme — replaced by animation) */
.hero-image {
    display: none;
}

/* ================================================
   SIDEBAR — Off-canvas menu (dark)
   ================================================ */
.sidebar {
    position: fixed;
    top: 0;
    right: -55vw;
    width: 50vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(160deg, #111118 0%, #0f0f16 40%, #0a0a12 100%);
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 4rem 3rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    border-left: 1px solid var(--border-color);
}

.sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.sidebar-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.sidebar-logo-img {
    height: 38px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-btn span {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.close-btn span:first-child {
    transform: rotate(45deg);
}

.close-btn span:last-child {
    transform: rotate(-45deg);
}

.close-btn:hover {
    transform: rotate(90deg);
}

.close-btn:hover span {
    background-color: var(--accent);
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: auto;
}

.nav-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links li:last-child {
    border-bottom: none;
}

.sidebar.open .nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.sidebar.open .nav-links li:nth-child(1) { transition-delay: 0.15s; }
.sidebar.open .nav-links li:nth-child(2) { transition-delay: 0.22s; }
.sidebar.open .nav-links li:nth-child(3) { transition-delay: 0.29s; }
.sidebar.open .nav-links li:nth-child(4) { transition-delay: 0.36s; }
.sidebar.open .nav-links li:nth-child(5) { transition-delay: 0.43s; }

.nav-number {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 400;
    letter-spacing: 1px;
    min-width: 24px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2.8rem;
    font-weight: 300;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover {
    color: var(--white);
    transform: translateX(8px);
}

/* Sidebar CTA */
.nav-cta-item {
    margin-top: 1rem;
}

.nav-cta-btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white) !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
}

.nav-cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

/* Sidebar footer */
.sidebar-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.55s, transform 0.5s ease 0.55s;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar.open .sidebar-footer {
    opacity: 1;
    transform: translateY(0);
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sidebar-label {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.sidebar-contact a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.sidebar-contact a:hover {
    color: var(--accent);
}

.sidebar-social {
    display: flex;
    gap: 1rem;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-social a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.sidebar-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* General Subtitle */
.subtitle {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* ================================================
   GLOBAL CONTAINER
   ================================================ */
.container {
    max-width: 1280px;
    padding: 0 2.5rem;
    margin: 0 auto;
}

/* ================================================
   TAGLINE SECTION
   ================================================ */
.tagline-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.04) 0%, transparent 100%);
}

.tagline-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.tagline-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-light);
}

.tagline-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
}

.tagline-heading em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary-light), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 640px;
}

.tagline-closing {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.75;
}

.tagline-br { display: block; }

@media (max-width: 768px) {
    .tagline-heading {
        font-size: 1.6rem;
    }
    .tagline-br { display: none; }
}

/* ================================================
   ABOUT SECTION (Homepage)
   ================================================ */
.about-section {
    padding: 8rem 2.5rem;
    background-color: var(--bg-body);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visuals {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.about-visuals .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-visuals .image-wrapper:hover img {
    transform: scale(1.05);
}

.main-img {
    width: 80%;
    height: 500px;
    position: relative;
    z-index: 1;
}

.offset-img {
    position: absolute;
    bottom: -10%;
    right: 0;
    width: 45%;
    height: 300px;
    z-index: 2;
    border: 8px solid var(--bg-body);
}

.experience-badge {
    position: absolute;
    top: 10%;
    left: -5%;
    background: rgba(20, 20, 32, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-eyebrow {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-content .section-title {
    font-size: 2.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.learn-more-link .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(139, 92, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-light);
}

.learn-more-link .icon-circle svg {
    stroke: var(--primary-light);
}

.learn-more-link:hover .icon-circle {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.learn-more-link:hover .icon-circle svg {
    stroke: var(--white);
}

/* ================================================
   SERVICES SECTION — Card Grid
   ================================================ */
.services-section {
    padding: 8rem 2.5rem;
    background-color: var(--bg-surface);
}

/* Services Illustration Cards */
.services-heading {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.header-content {
    max-width: 600px;
}

.header-content .section-title {
    font-size: 2.75rem;
}

.header-action {
    padding-bottom: 0.5rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    color: var(--primary-light);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #08080d;
}

.card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #08080d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-overlay {
    position: absolute;
    inset: 0px;
    border-radius: 24px;
    background: linear-gradient(to bottom,
            rgba(8, 8, 13, 0.55) 0%,
            rgba(8, 8, 13, 0.8) 50%,
            rgba(8, 8, 13, 0.95) 100%);
    transition: background 0.4s ease;
}

.service-card:hover .card-bg {
    transform: scale(1.08);
}

.service-card:hover .card-overlay {
    background: linear-gradient(to bottom,
            rgba(139, 92, 246, 0.3) 0%,
            rgba(8, 8, 13, 0.85) 50%,
            rgba(8, 8, 13, 0.95) 100%);
}

.card-content {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    z-index: 2;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-number {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.5;
    font-family: 'Outfit', monospace;
}

.play-icon-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .play-icon-small {
    background: var(--primary-color);
    transform: scale(1.1);
}

.card-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-bottom {
    transform: translateY(0);
}

.service-card .service-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
}

.service-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-desc {
    max-height: 100px;
    opacity: 1;
}

.explore-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.service-card:hover .explore-link {
    max-height: 30px;
    opacity: 1;
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
    padding: 8rem 2.5rem;
    background-color: var(--bg-body);
}

.stats-header {
    margin-bottom: 4rem;
    text-align: left;
}

.stats-header .section-title {
    font-size: 2.75rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    cursor: pointer;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: var(--bg-elevated);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.stat-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================
   OUR CLIENTS SECTION
   ================================================ */
.clients-section {
    padding: 5rem 0;
    background: var(--bg-surface);
}

.clients-header {
    margin-bottom: 3rem;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    will-change: transform;
    animation: marquee 25s linear infinite;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0.8rem;
    transition: transform 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
    border-radius: 8px;
}

/* ================================================
   FEATURES SECTION (Why Choose Us)
   ================================================ */
.features-section {
    padding: 8rem 2.5rem;
    background-color: var(--bg-body);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.features-content .section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.features-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.features-actions {
    width: fit-content;
}

.features-actions .btn svg {
    transition: transform 0.3s ease;
}

.features-actions .btn:hover svg {
    transform: translateX(5px);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    cursor: pointer;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.feature-item:hover {
    background: var(--bg-elevated);
    border-color: var(--border-hover);
    transform: translateX(-10px);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
}

.feature-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.feature-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(139, 92, 246, 0.12);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    color: var(--text-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================================
   CONTACT SECTION (Homepage)
   ================================================ */
.contact-section {
    padding: 8rem 2.5rem;
    background-color: var(--bg-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.contact-info-col .section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 90%;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details li {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
    width: fit-content;
    max-width: 100%;
}

.contact-details li span {
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(139, 92, 246, 0.12);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-details li:hover .contact-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Form Card */
.form-card {
    background: var(--bg-elevated);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-card .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-card .form-row .form-group {
    margin-bottom: 0;
}

.form-card label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-card input,
.form-card textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: var(--bg-surface);
    font-size: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
    color: var(--text-muted);
}

.form-card input:focus,
.form-card textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-body);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

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

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 1.25rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.submit-btn svg {
    margin-left: 0.5rem;
}

/* ================================================
   FOOTER SECTION — Modern dark with gradient CTA
   ================================================ */
.site-footer {
    padding: 4rem 2rem 2rem;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

/* Footer Banner — Gradient CTA block */
/* Footer Banner - Split Layout */
.site-footer .footer-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 400px;
    background: #08080d;
}

.banner-visual {
    position: relative;
    overflow: hidden;
}

.banner-sphere-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.banner-heading-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 3rem;
}

.banner-heading-overlay h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.banner-cta-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 2rem;
    gap: 2rem;
}

.banner-cta-side p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 300;
}

.btn-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    width: fit-content;
    letter-spacing: 0.3px;
}

.btn-banner i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    background: var(--primary-light);
}

.btn-banner:hover i {
    transform: translateX(3px);
}

/* Footer Link Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links li,
.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
    display: inline-block;
}

.contact-info-links li {
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Footer image (for backward compat) */
.footer-img {
    display: none;
}

/* ================================================
   PAGE HERO — Inner pages
   ================================================ */
.page-hero {
    background: linear-gradient(135deg, #0f0f1a 0%, #111120 50%, #0a0a14 100%);
    padding: 140px 2rem 80px;
    text-align: center;
    color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb,
.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

.breadcrumb a,
.breadcrumbs a,
.breadcrumb-link {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover,
.breadcrumb-link:hover {
    opacity: 0.7;
}

.breadcrumb-separator {
    color: rgba(255,255,255,0.4);
}

.breadcrumb-current {
    color: var(--primary-light);
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--text-heading);
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.7;
    font-weight: 300;
    color: var(--text-muted);
}

/* ================================================
   ABOUT STORY SECTION
   ================================================ */
.about-story-section {
    padding: 6rem 2.5rem;
    background: var(--bg-body);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.about-story-content .section-description {
    margin-bottom: 1.5rem;
}

.about-story-image {
    position: relative;
}

.about-story-image .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.about-story-image .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-story-image .experience-badge {
    position: absolute;
}

/* ================================================
   MISSION & VISION SECTION
   ================================================ */
.mission-vision-section {
    padding: 6rem 2.5rem;
    background: var(--bg-surface);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: var(--bg-elevated);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
    font-weight: 500;
}

.mission-card p,
.vision-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================================================
   VALUES SECTION
   ================================================ */
.values-section {
    padding: 8rem 2.5rem;
    background-color: var(--bg-body);
}

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

.values-header {
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.values-header .section-title {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    cursor: pointer;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    background: var(--bg-elevated);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(139, 92, 246, 0.12);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================
   CTA SECTION — Floating Card
   ================================================ */
.cta-section {
    padding: 4rem 2.5rem 8rem;
    background-color: var(--bg-surface);
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16162a 50%, #111120 100%);
    border-radius: 24px;
    padding: 5rem 2rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    color: var(--text-heading);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-description {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.btn-white {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.35);
}

.cta-btn svg {
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* ================================================
   SERVICES PAGE SECTION
   ================================================ */
.services-intro-section {
    padding: 4rem 2rem 2rem;
    background: var(--bg-body);
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.services-page-section {
    padding: 2rem 2rem 6rem;
    background: var(--bg-body);
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.service-page-card {
    cursor: pointer;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s;
}

.service-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
    border-color: var(--border-hover);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-page-card h3 {
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-page-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ================================================
   ADVANTAGE SECTION
   ================================================ */
.advantage-section {
    padding: 8rem 2.5rem;
    background-color: var(--bg-surface);
}

.advantage-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
}

.advantage-header-col {
    position: relative;
}

.sticky-content {
    position: sticky;
    top: 120px;
}

.advantage-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.adv-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
    border-color: var(--border-hover);
}

.adv-card:hover::before {
    transform: scaleX(1);
}

.adv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: rgba(139, 92, 246, 0.12);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.adv-card:hover .adv-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.adv-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.adv-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================
   BOOKING SECTION
   ================================================ */
.booking-section {
    padding: 6rem 2rem 8rem;
    background-color: var(--bg-body);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
}

.booking-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 90%;
}

.reassurance-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(139, 92, 246, 0.12);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.text-box h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.text-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.booking-divider {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 2.5rem 0;
}

.direct-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.direct-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.direct-link:hover {
    transform: translateX(5px);
    color: var(--primary-light);
}

.booking-form-col {
    width: 100%;
}

.required {
    color: #ef4444;
    margin-left: 2px;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper::after {
    content: "▼";
    font-size: 0.8rem;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.custom-select-wrapper select {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: var(--bg-surface);
    font-size: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-body);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.radio-pill-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-pill {
    cursor: pointer;
}

.radio-pill input[type="radio"] {
    display: none;
}

.pill-text {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    background-color: var(--bg-surface);
    transition: all 0.3s ease;
}

.radio-pill:hover .pill-text {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: var(--bg-elevated);
}

.radio-pill input[type="radio"]:checked+.pill-text {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.25);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ================================================
   CONTACT PAGE SECTION
   ================================================ */
.contact-page-section {
    padding: 6rem 2rem 8rem;
    background-color: var(--bg-body);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(139, 92, 246, 0.12);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.method-item:hover .method-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.method-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.method-text p,
.method-text a {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-text a:hover {
    color: var(--primary-light);
}

.form-card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 2rem;
}

/* ================================================
   MAP SECTION
   ================================================ */
.map-section {
    background: var(--bg-surface);
}

.map-container {
    width: 100%;
    line-height: 0;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: invert(0.9) hue-rotate(180deg) brightness(0.8) contrast(1.2);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1280px) {
    .title {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .header-nav {
        display: none;
    }

    .header-inner {
        padding: 1.2rem 2rem;
    }

    .sidebar {
        width: 60vw;
        right: -65vw;
        padding: 2.5rem 3rem 3rem;
    }

    .title {
        font-size: 3.5rem;
    }

    .hero-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .about-section {
        padding-left: 0;
        padding-right: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-visuals {
        margin-bottom: 2rem;
    }

    .main-img {
        width: 90%;
    }

    .offset-img {
        right: 5%;
        bottom: -5%;
    }

    .about-content {
        max-width: 100%;
    }

    .services-section {
        padding-left: 0;
        padding-right: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats-section {
        padding-left: 0;
        padding-right: 0;
    }

    .features-section {
        padding-left: 0;
        padding-right: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .features-description {
        max-width: 100%;
    }

    .contact-section {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-info-col {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-details li {
        justify-content: flex-start;
    }

    .site-footer {
        padding-left: 0;
        padding-right: 0;
    }

    .site-footer .footer-banner {
        grid-template-columns: 1fr 1fr;
        min-height: 350px;
    }

    .banner-heading-overlay h2 {
        font-size: 2.2rem;
    }

    .banner-cta-side {
        padding: 3rem 2rem 3rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-heading {
        text-align: start;
    }

    /* Inner pages */
    .page-hero {
        padding-left: 0;
        padding-right: 0;
    }

    .page-hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .about-story-section {
        padding-left: 0;
        padding-right: 0;
    }

    .about-story-grid {
        gap: 3rem;
    }

    .mission-vision-section {
        padding-left: 0;
        padding-right: 0;
    }

    .values-section {
        padding-left: 0;
        padding-right: 0;
    }

    .cta-section {
        padding-left: 0;
        padding-right: 0;
    }

    .services-intro-section,
    .services-page-section {
        padding-left: 0;
        padding-right: 0;
    }

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

    .advantage-section {
        padding-left: 0;
        padding-right: 0;
    }

    .advantage-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .sticky-content {
        position: relative;
        top: 0;
    }

    .booking-section,
    .contact-page-section {
        padding-left: 0;
        padding-right: 0;
    }

    .booking-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .header-inner {
        padding: 0.8rem 1.25rem;
    }

    .header-nav {
        display: none;
    }

    .logo-img {
        height: 42px;
    }

    .btn-cta {
        display: none;
    }

    .hero-section {
        flex-direction: column;
        min-height: auto;
        padding: 7rem 1.25rem 3rem;
        gap: 2rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
        align-items: center;
    }

    .title {
        font-size: 2.5rem;
    }

    .hero-description {
        max-width: 100%;
        font-size: 1.05rem;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-trust {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }

    .sidebar {
        width: 80vw;
        right: -85vw;
        padding: 2rem 2rem 2.5rem;
    }

    .nav-links a {
        font-size: 2.2rem;
    }

    .nav-links li {
        padding: 1rem 0;
    }

    .sidebar-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .about-section {
        padding: 4rem 0;
    }

    .about-content .section-title {
        font-size: 2rem;
    }

    .main-img {
        height: 400px;
    }

    .offset-img {
        height: 200px;
    }

    .experience-badge {
        top: -5%;
        left: 5%;
        padding: 1rem;
    }

    .badge-number {
        font-size: 2rem;
    }

    .services-section {
        padding: 4rem 0 6rem;
    }


    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats-section {
        padding: 5rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .features-section {
        padding: 5rem 0;
    }

    .features-content .section-title {
        font-size: 2.25rem;
    }

    .contact-section {
        padding: 5rem 0;
    }

    .contact-info-col .section-title {
        font-size: 2.5rem;
    }

    .site-footer {
        padding: 2rem 0 1.5rem;
    }

    .site-footer .footer-banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .banner-visual {
        min-height: 300px;
    }

    .banner-heading-overlay h2 {
        font-size: 2rem;
    }

    .banner-cta-side {
        padding: 2.5rem 1.5rem;
    }

    /* Inner pages */
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero-content {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .about-story-section {
        padding: 4rem 0;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-story-image {
        order: -1;
    }

    .mission-vision-section {
        padding: 4rem 0;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .values-section {
        padding: 5rem 0;
    }

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

    .cta-section {
        padding: 4rem 0 6rem;
    }

    .marquee-track {
        gap: 2rem;
        animation-duration: 15s;
    }

    .client-logo {
        width: 140px;
        height: 80px;
    }

    .map-container iframe {
        height: 300px;
    }

    .services-intro-section {
        padding: 3rem 0 1rem;
    }

    .services-page-section {
        padding: 1rem 0 4rem;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .advantage-section {
        padding: 5rem 0;
    }

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

    .adv-card {
        padding: 2rem;
    }

    .booking-section {
        padding: 4rem 0 6rem;
    }

    .contact-page-section {
        padding: 4rem 0 6rem;
    }

    .cta-card {
        padding: 4rem 1.5rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 640px) {
    .form-card {
        padding: 2rem 1.5rem;
    }

    .form-card .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-col .section-title {
        font-size: 2rem;
    }

    .banner-visual {
        min-height: 250px;
    }

    .banner-heading-overlay h2 {
        font-size: 1.6rem;
    }

    .banner-cta-side {
        padding: 2rem 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: start;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-header {
        margin-bottom: 3rem;
    }

    .values-header .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 100vw;
        right: -105vw;
        padding: 1.5rem 1.5rem 2rem;
    }

    .sidebar-header {
        margin-bottom: 2rem;
    }

    .nav-links a {
        font-size: 1.8rem;
    }

    .title {
        font-size: 2.2rem;
    }

    .about-content .section-title {
        font-size: 2.4rem;
    }

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

    .service-card {
        aspect-ratio: 16/10;
    }

    .card-bottom {
        transform: translateY(0);
    }

    .service-desc,
    .explore-link {
        opacity: 1;
    }

    .header-content .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-header {
        text-align: center;
    }

    .stats-header .section-title {
        font-size: 2rem;
    }

    .stat-card {
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .features-content .section-title {
        font-size: 2rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .footer-col {
        min-width: 100%;
        margin-bottom: 1rem;
    }

    .contact-info-col .section-title {
        font-size: 2rem;
    }

    .form-card {
        padding: 1.5rem 1rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
}
