/* ====================================================================
   Aasha Care â€” NDIS Premium Website Stylesheet (Refined Premium Version)
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette (Vibrant Lavender, Pink & Deep Slate Theme) */
    --primary: #7c3aed;               /* Rich Violet */
    --violet-primary: #7c3aed;
    --primary-hover: #6d28d9;
    --accent-cyan: #ec4899;           /* Accent Rose/Pink */
    --rose-pink: #ec4899;
    --dark-blue: #0f172a;             /* Deep Slate Navy */
    --slate-navy: #0f172a;
    --dark-blue-hover: #1e293b;
    --light-blue: #f3e8ff;            /* Soft Lavender */
    --light-blue-hover: #e9d5ff;
    --bg-light: rgba(255, 255, 255, 0.45); /* Frosty Translucent Layer */
    --bg-white: #FFFFFF;
    --text-dark: #0f172a;             /* Deep Slate Text */
    --text-muted: #475569;            /* Readable Muted Grey Text */
    --border-color: rgba(226, 232, 240, 0.8);
    
    /* Premium Gradients */
    --primary-gradient: linear-gradient(135deg, #ff7e5f 0%, #8b5cf6 100%);
    --primary-gradient-hover: linear-gradient(135deg, #ff6b4a 0%, #7c3aed 100%);
    --bg-dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --glass-card-bg: rgba(255, 255, 255, 0.78);
    
    /* Fonts */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Spacing & Borders */
    --transition-base: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 100px;
    
    /* Premium Multi-layered Soft Shadows */
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.02), 0 1px 2px rgba(15, 23, 42, 0.02);
    --shadow-md: 0 12px 36px -8px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.02);
    --shadow-lg: 0 24px 60px -12px rgba(15, 23, 42, 0.12), 0 8px 24px -4px rgba(15, 23, 42, 0.04);
}

/* ====================================================================
   Base Resets & Global Styles
   ==================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    background: linear-gradient(135deg, #e0f2fe 0%, #f3e8ff 50%, #fce7f3 100%) fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.25;
}

a, button, select, input, textarea, .play-btn-wrapper, .slider-dot, .tab-btn {
    cursor: pointer;
}

select, input, textarea {
    cursor: text;
}

/* ====================================================================
   Ambient Glowing Background Elements
   ==================================================================== */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    top: 15%;
    left: -150px;
}

.glow-orb-2 {
    width: 600px;
    height: 600px;
    bottom: 15%;
    right: -200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
}

.glow-orb-dark {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%) !important;
}

/* Subtle Tech Grid Pattern Overlays */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(124, 58, 237, 0.015) 1.2px, transparent 1.2px),
                      linear-gradient(90deg, rgba(124, 58, 237, 0.015) 1.2px, transparent 1.2px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.grid-pattern-dark {
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1.2px, transparent 1.2px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1.2px, transparent 1.2px) !important;
}

/* Looping Floating Keyframes for motion depth */
@keyframes float-slow {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-16px) scale(1.03); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0) scale(1.03); }
    50% { transform: translateY(16px) scale(0.97); }
}

.float-element {
    animation: float-slow 7s ease-in-out infinite;
}

.float-element-reverse {
    animation: float-reverse 9s ease-in-out infinite;
}

/* ====================================================================
   Scroll-Triggered Reveals & Transitions
   ==================================================================== */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-active {
    opacity: 1;
    transform: translate(0);
}

/* Typewriter blinking cursor */
.typed-cursor {
    font-weight: 300;
    color: var(--accent-cyan);
    animation: blink 0.75s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ====================================================================
   Image Magnify & Reflection Effect
   ==================================================================== */
.magnify-img-container {
    position: relative;
    overflow: hidden;
    border-radius: inherit;
    width: 100%;
    height: 100%;
}

.magnify-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.magnify-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: 0.8s ease;
    pointer-events: none;
    z-index: 2;
}

.magnify-img-container:hover img {
    transform: scale(1.08);
}

.magnify-img-container:hover::after {
    left: 150%;
}

/* ====================================================================
   Common Elements & Utilities
   ==================================================================== */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-bg {
    background-color: var(--bg-light);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.badge-pill-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(236, 72, 153, 0.08);
    color: #007A94;
    border: 1px solid rgba(236, 72, 153, 0.18);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Unified Section Header Utility */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.section-title {
    font-size: 40px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 60px;
    line-height: 1.7;
}

/* Premium Buttons with Cyan/Cobalt Gradients */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-pill);
    transition: var(--transition-base);
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary-gold {
    background: var(--primary-gradient);
    color: var(--bg-white);
}

.btn-primary-gold:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.btn-outline-green {
    background-color: transparent;
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
}

.btn-outline-green:hover {
    background-color: var(--dark-blue);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--primary-gradient);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* ====================================================================
   Redesigned Floating Sticky Header
   ==================================================================== */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1100px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-pill);
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.08), 0 0 25px rgba(139, 92, 246, 0.03);
    padding: 12px 28px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
    top: 10px;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.12);
}

/* Typography elements in header */


header.scrolled .btn-custom {
    background: var(--primary-gradient);
    color: var(--bg-white);
    padding: 10px 24px;
    font-size: 14px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

/*.logo-img,*/
/*.logo img {*/
/*    width: 50px !important;*/
/*    height: 50px !important;*/
/*    max-width: 50px !important;*/
/*    max-height: 50px !important;*/
/*    aspect-ratio: 1 / 1 !important;*/
/*    object-fit: cover !important;*/
/*    border-radius: 50% !important;*/
/*    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.25) !important;*/
/*    transition: var(--transition-base) !important;*/
/*    flex-shrink: 0 !important;*/
/*    display: block !important;*/
/*}*/

.logo:hover .logo-img,
.logo:hover .logo img {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.25);
    transition: var(--transition-base);
    flex-shrink: 0;
}

header.scrolled .logo-img,
header.scrolled .logo img,
header.scrolled .logo-icon {
    width: 200px !important;
    /*height: 42px !important;*/
    /*max-width: 42px !important;*/
    /*max-height: 42px !important;*/
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--text-dark);
    transition: var(--transition-base);
    white-space: nowrap;
}

header.scrolled .logo-text {
    font-size: 21px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-base);
}

/* Accent highlight bar under text */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 4px;
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 16px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}



.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Custom CSS-Only Animated Mobile Toggle Button */
.mobile-toggle-btn {
    display: none;
    width: 26px;
    height: 18px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 2100;
    transition: var(--transition-base);
}

.mobile-toggle-btn span {
    display: block;
    width: 100%;
    height: 2.2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}



/* Open hamburger state transitions */
.mobile-toggle-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--bg-white) !important;
}

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

.mobile-toggle-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--bg-white) !important;
}

/* ====================================================================
   Hero Section
   ==================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(3, 7, 18, 0.98) 0%, rgba(15, 23, 42, 0.82) 45%, rgba(15, 23, 42, 0.15) 100%), url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding-top: 180px;
    padding-bottom: 120px;
    color: var(--bg-white);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
    align-items: center;
}

/* Glassmorphism content container */
.hero-glass-box {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-glass-box h1 {
    font-size: 62px;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-glass-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(244, 248, 250, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 18px;
}

/* Floating Avatars Badge */
.avatar-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--dark-blue);
    margin-right: -8px;
}

/* Glassmorphic Stats Card with Soft Cyan Glow */
.glass-stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 45px;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4), 0 0 40px rgba(236, 72, 153, 0.1);
    animation: float 6s ease-in-out infinite;
}

.glass-stats-card h2 {
    font-size: 58px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.glass-stats-card h3 {
    font-size: 21px;
    color: var(--bg-white);
    margin-bottom: 16px;
    font-weight: 600;
}

.glass-stats-card hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
}

.glass-stats-card p {
    font-size: 15px;
    color: rgba(244, 248, 250, 0.85);
    line-height: 1.6;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

/* ====================================================================
   Marquee Component (Premium Cobalt)
   ==================================================================== */
.marquee-container {
    background: var(--primary-gradient);
    overflow: hidden;
    white-space: nowrap;
    padding: 22px 0;
    box-shadow: var(--shadow-sm);
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-content span {
    display: inline-block;
    padding: 0 40px;
}

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

/* ====================================================================
   About Us Section (Who We Are)
   ==================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Collage styling with shadow offset */
.about-images-collage {
    position: relative;
    height: 520px;
    width: 100%;
}

.about-collage-main {
    width: 78%;
    height: 480px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-collage-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48%;
    height: 250px;
    border-radius: var(--radius-md);
    border: 10px solid var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.about-badge-floating {
    position: absolute;
    top: 40px;
    right: 25%;
    background: var(--primary-gradient);
    color: var(--bg-white);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    width: 140px;
    z-index: 10;
}

.about-badge-floating span {
    display: block;
}

.about-badge-floating .badge-num {
    font-size: 34px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.about-badge-floating .badge-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 4px;
    line-height: 1.3;
}

.about-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.about-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-bullets li i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    margin-top: 2px;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Play Button */
.play-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.play-btn {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 18px;
    position: relative;
    transition: var(--transition-base);
}

.play-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-cyan);
    animation: pulse 2s infinite;
}

.play-btn-wrapper:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.play-btn-wrapper span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-blue);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ====================================================================
   Services Section & Hover Glass Cards
   ==================================================================== */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.services-grid .service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 310px;
    max-width: 380px;
}

.service-card {
    position: relative;
    background: var(--glass-card-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    padding: 40px;
    height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.98));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-slow);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition-base);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-blue);
    transition: var(--transition-base);
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    transition: var(--transition-base);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    margin-top: auto;
    text-decoration: none;
    transition: var(--transition-base);
}

/* Hover States with blue/cyan border transitions */
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: var(--shadow-lg);
}

.service-card:hover .service-card-bg,
.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-card-link {
    color: var(--bg-white);
}

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

.service-card:hover .service-card-link {
    gap: 12px;
    color: var(--accent-cyan);
}

/* ====================================================================
   Zig-Zag CTA Bar (Gradient Accent)
   ==================================================================== */
.cta-bar {
    background-color: var(--dark-blue);
    background: var(--bg-dark-gradient);
    color: var(--bg-white);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--accent-cyan);
}

.cta-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.cta-bar-content h2 {
    font-size: 30px;
    color: var(--bg-white);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 18px;
}

.cta-bar-content h2 i {
    color: var(--accent-cyan);
    font-size: 38px;
}

.cta-bar-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 21px;
    color: var(--accent-cyan);
    text-decoration: underline;
    transition: var(--transition-base);
}

.cta-bar-link:hover {
    color: var(--bg-white);
    text-shadow: 0 0 12px rgba(236, 72, 153, 0.6);
}

/* ====================================================================
   Why Choose Us Section
   ==================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.why-list-item {
    display: flex;
    gap: 20px;
    background: var(--glass-card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.why-list-item:hover {
    transform: translateX(8px);
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: var(--shadow-md);
}

.why-list-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(236, 72, 153, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.why-list-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.why-list-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Double overlapping images */
.why-images-collage {
    position: relative;
    height: 500px;
    width: 100%;
}

.why-collage-main {
    width: 80%;
    height: 440px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.why-collage-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48%;
    height: 230px;
    border-radius: var(--radius-md);
    border: 10px solid var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

/* Floating Callback Info card */
.callback-card-floating {
    position: absolute;
    top: 40px;
    right: 25%;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    z-index: 10;
}

.callback-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.callback-info span {
    display: block;
}

.callback-info .callback-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.callback-info .callback-phone {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-blue);
}

/* ====================================================================
   Full-Width Parallax Banners
   ==================================================================== */
.parallax-banner {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    overflow: hidden;
    z-index: 1;
}

.parallax-banner-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    transition: transform 0.15s ease-out;
    transform: translateY(0) scale(1.1);
}

.parallax-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(3, 7, 18, 0.6) 100%);
    z-index: -1;
}

.parallax-banner-content {
    max-width: 800px;
    padding: 0 24px;
    z-index: 5;
}

.parallax-banner-content h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.parallax-banner-content p {
    font-size: 17px;
    color: rgba(244, 248, 250, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ====================================================================
   Our Benefits Section (Glows & Gradients)
   ==================================================================== */
.benefits-section {
    background-color: var(--dark-blue);
    background: var(--bg-dark-gradient);
    color: var(--bg-white);
}

.benefits-section .section-title {
    color: var(--bg-white);
}

.benefits-section .section-subtitle {
    color: rgba(244, 248, 250, 0.85);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.benefits-cards-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr;
    gap: 30px;
    align-items: stretch;
}

/* Frosted glass dark cards */
.benefit-card-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-base);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.benefit-card-dark:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 45px rgba(236, 72, 153, 0.12);
}

.benefit-card-dark h3 {
    font-size: 48px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.benefit-card-dark p {
    font-size: 15px;
    color: rgba(244, 248, 250, 0.85);
    line-height: 1.5;
}

.benefit-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 30px;
}

.benefit-card-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    min-height: 320px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card-collage {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.benefit-collage-group {
    position: relative;
    width: 140px;
    height: 80px;
}

.benefit-collage-group img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--dark-blue);
    position: absolute;
}

.benefit-collage-group img:nth-child(1) {
    left: 0;
    top: 10px;
    z-index: 1;
}

.benefit-collage-group img:nth-child(2) {
    left: 40px;
    top: 0;
    z-index: 3;
    width: 65px;
    height: 65px;
}

.benefit-collage-group img:nth-child(3) {
    right: 0;
    top: 10px;
    z-index: 2;
}

.benefit-card-collage h4 {
    font-size: 18px;
    color: var(--bg-white);
    font-weight: 700;
}

/* ====================================================================
   Our Programs Section
   ==================================================================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.program-card {
    position: relative;
    height: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
    transition: var(--transition-slow);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.program-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.program-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.program-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
    z-index: -1;
}

/* Bottom glass content panel inside program card */
.program-card-content {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius-md);
    margin: 20px;
    color: var(--bg-white);
    transition: var(--transition-base);
}

.program-card:hover .program-card-content {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
}

.program-card-pill {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.program-card h4 {
    font-size: 20px;
    color: var(--bg-white);
    font-weight: 700;
}

/* Below the Grid Stats Row */
.programs-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    background: var(--glass-card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 24px 40px;
    border-radius: var(--radius-pill);
    width: fit-content;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.prog-badge-gold {
    background: var(--primary-gradient);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

.prog-bar-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
}

.prog-bar-text a {
    color: var(--primary);
    text-decoration: underline;
}

.prog-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.prog-rating .stars {
    color: var(--accent-cyan);
    display: flex;
    gap: 3px;
}

/* ====================================================================
   How We Work (Process) Section
   ==================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: var(--shadow-lg);
}

.process-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 30px auto;
    transition: var(--transition-base);
}

.process-card:hover .process-card-icon {
    background: var(--primary-gradient);
    color: var(--bg-white);
    transform: scale(1.08);
}

.process-card h4 {
    font-size: 21px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.process-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Huge background step number */
.process-number {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(124, 58, 237, 0.03);
    line-height: 1;
    z-index: 0;
    transition: var(--transition-base);
}

.process-card:hover .process-number {
    color: rgba(236, 72, 153, 0.06);
    bottom: -10px;
}

/* ====================================================================
   Interactive Tabs Section
   ==================================================================== */
.tabs-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 90px;
    align-items: center;
}

.tabs-visual {
    position: relative;
    height: 480px;
    width: 100%;
}

.tabs-visual-img {
    width: 82%;
    height: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.tabs-visual-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-color);
}

.tabs-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tabs-badge-text h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.tabs-badge-text p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Tab Headers */
.tabs-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 11px 26px;
    border-radius: var(--radius-pill);
    background: var(--glass-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: var(--bg-white);
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(236, 72, 153, 0.25);
}

.tab-content-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content-panel.active {
    display: block;
}

.tab-panel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.tab-panel-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tab-panel-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.tab-content-panel p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

/* ====================================================================
   Inquiry & Contact Form Section
   ==================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.contact-card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-control-custom {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-base);
}

.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

select.form-control-custom {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%27http%3D%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2724%27%20height%3D%2724%27%20viewBox%3D%270%200%2024%27%20fill%3D%27none%27%20stroke%3D%27%2364748B%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%276%209%2012%2015%2018%209%27%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

textarea.form-control-custom {
    height: 120px;
    resize: none;
}

.contact-info-list {
    list-style: none;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-info-text p {
    font-size: 15px;
    color: var(--text-muted);
}

/* ====================================================================
   Testimonials Section (3-Column Frosted Grid)
   ==================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card-grid {
    background: var(--glass-card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-slow);
}

.testimonial-card-grid:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: var(--shadow-lg);
}

.testi-stars-container {
    color: var(--accent-cyan);
    font-size: 14px;
    margin-bottom: 20px;
}

.testi-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-style: italic;
}

.testi-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    position: relative;
}

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

.testi-meta h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 2px;
}

.testi-meta span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

/* Quote bubble icon overlay */
.testi-quote-icon {
    position: absolute;
    right: 0;
    bottom: 5px;
    width: 36px;
    height: 36px;
    background: rgba(236, 72, 153, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* ====================================================================
   Footer Section
   ==================================================================== */
footer {
    background-color: rgba(255, 255, 255, 0.65);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.75) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-muted);
    padding: 90px 0 35px 0;
    position: relative;
    border-top: 4px solid var(--accent-cyan);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}
.footer-about .logo-text {
    color: var(--text-dark);
}
.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-socials a:hover {
    background: var(--primary-gradient);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(236, 72, 153, 0.4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-muted);
}
.footer-contact-list li i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(244, 248, 250, 0.8);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--accent-cyan);
}

/* ====================================================================
   Mobile Side Menu Overlay (Midnight Background)
   ==================================================================== */
body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 7, 18, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    right: 0; /* always at right edge */
    width: 300px;
    height: 100vh;
    background-color: var(--dark-blue);
    background: var(--bg-dark-gradient);
    z-index: 2000;
    box-shadow: -15px 0 40px rgba(3, 7, 18, 0.25);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform: translateX(100%); /* hidden off-screen */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-menu-overlay.open {
    transform: translateX(0); /* slide in */
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    margin-bottom: 10px;
}

.side-menu-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.side-menu-close {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    padding: 0;
}

.side-menu-close:hover,
.side-menu-close:focus {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: rotate(90deg) scale(1.08);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
}

.side-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-menu-links a {
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: rgba(244, 248, 250, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-base);
}

.side-menu-links a i {
    color: var(--accent-cyan);
    font-size: 15px;
    transition: var(--transition-base);
}

.side-menu-links a:hover {
    color: var(--bg-white);
    background-color: rgba(236, 72, 153, 0.08);
    border-color: rgba(236, 72, 153, 0.2);
    transform: translateX(6px);
}

.side-menu-links a:hover i {
    transform: scale(1.15);
}

.side-menu-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-footer-title {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.4);
}

.side-footer-phone {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-footer-phone i {
    color: var(--accent-cyan);
}

/* ====================================================================
   Responsive Styles & Media Queries
   ==================================================================== */

@media (max-width: 1024px) {
    .section {
        padding: 90px 0;
    }
    .hero-glass-box h1 {
        font-size: 48px;
    }
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 30px;
    }
    .about-grid, .why-grid, .tabs-grid, .contact-grid, .benefits-grid {
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .benefits-cards-grid .benefit-card-collage {
        grid-column: span 2;
        flex-direction: row;
        text-align: left;
    }
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid .process-card:nth-child(3) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .nav-links, .nav-actions {
        display: none !important;
    }
    .mobile-toggle-btn {
        display: flex !important;
    }
    header {
        top: 15px !important;
        width: calc(100% - 30px) !important;
        background-color: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border: 1px solid rgba(124, 58, 237, 0.05) !important;
        border-radius: var(--radius-pill) !important;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
        padding: 10px 16px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    header.scrolled {
    top: 10px;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.12);
}
    header .nav-container {
        padding: 0 !important;
    }
    .logo-text {
        color: var(--dark-blue) !important;
        font-size: 20px !important;
    }
    .logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
    transition: var(--transition-base);
}
.logo-icon i {
    display: none !important;
}
    .mobile-toggle-btn span {
        background-color: var(--dark-blue) !important;
    }
    .hero {
        padding-top: 120px !important;
        min-height: auto !important;
    }
    .subpage-hero {
        min-height: auto !important;
        padding-top: 120px !important;
        padding-bottom: 50px !important;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    .section-title {
        font-size: 32px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-glass-box {
        padding: 30px 20px;
    }
    .hero-glass-box h1 {
        font-size: 38px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .avatar-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .glass-stats-card {
        max-width: 450px;
        margin: 0 auto;
    }
    .about-grid, .why-grid, .tabs-grid, .contact-grid, .benefits-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-images-collage, .why-images-collage, .tabs-visual {
        height: 420px;
    }
    .about-collage-main, .why-collage-main, .tabs-visual-img {
        width: 100%;
        height: 380px;
    }
    .about-collage-sub, .why-collage-sub {
        height: 180px;
        border-width: 6px;
    }
    .about-badge-floating {
        right: 0;
        top: 20px;
        width: 120px;
        padding: 18px 12px;
    }
    .about-badge-floating .badge-num {
        font-size: 28px;
    }
    .callback-card-floating {
        right: 0;
        top: 20px;
    }
    .cta-bar-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .cta-bar-content h2 {
        font-size: 24px;
        flex-direction: column;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .parallax-banner {
        height: 400px;
    }
    .parallax-banner-content h2 {
        font-size: 28px;
    }
    .parallax-banner-content p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .services-grid, .benefits-cards-grid, .programs-grid, .process-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .benefits-cards-grid .benefit-card-collage {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
    .process-grid .process-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }
    .service-card {
        height: auto;
        min-height: 340px;
    }
    .tabs-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    .contact-card {
        padding: 30px 20px;
    }
    .programs-bottom-bar {
        border-radius: var(--radius-md);
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ====================================================================
   Premium Animations & Micro-Interactions Sweep
   ==================================================================== */

/* 1. Ambient Moving Glow Orbs */
@keyframes orbMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -60px) scale(1.15);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.glow-orb-1 {
    animation: orbMove 15s ease-in-out infinite !important;
}

.glow-orb-2 {
    animation: orbMove 20s ease-in-out infinite alternate !important;
}

/* 2. Floating Background Elements */
.hero::before {
    content: '+';
    position: absolute;
    top: 25%;
    right: 15%;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 300;
    color: rgba(236, 72, 153, 0.2);
    animation: float-slow 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: 'o';
    position: absolute;
    bottom: 22%;
    left: 10%;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 300;
    color: rgba(124, 58, 237, 0.18);
    animation: float-reverse 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* 3. Glossy Button Sheen & Glow Animations */
.btn-custom, .btn-primary-gold, .btn-outline-green, .btn-white {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-custom::before, .btn-primary-gold::before, .btn-outline-green::before, .btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-custom:hover::before, .btn-primary-gold:hover::before, .btn-outline-green:hover::before, .btn-white:hover::before {
    left: 100%;
}

.btn-primary-gold:hover {
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.28), 0 0 15px rgba(236, 72, 153, 0.2);
}

/* 4. Interactive Cards Glow Transitions */
.service-card, .process-card, .testimonial-card-grid, .program-card, .why-list-item {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease;
}

.service-card:hover {
    border-color: rgba(236, 72, 153, 0.45) !important;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15), 0 0 25px rgba(236, 72, 153, 0.08) !important;
}

.process-card:hover {
    border-color: rgba(236, 72, 153, 0.35) !important;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 20px rgba(236, 72, 153, 0.06) !important;
}

.testimonial-card-grid:hover {
    border-color: rgba(236, 72, 153, 0.35) !important;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 20px rgba(236, 72, 153, 0.06) !important;
}

/* 5. Icons Micro-interactions */
.service-card:hover .service-card-icon,
.process-card:hover .process-card-icon,
.why-list-item:hover .why-list-icon,
.tabs-visual-badge:hover .tabs-badge-icon {
    transform: scale(1.12) rotate(6deg);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.25);
}

.why-list-item:hover {
    border-color: rgba(236, 72, 153, 0.3) !important;
    box-shadow: var(--shadow-md) !important;
}

/* 6. Form focus glow enhancements */
.form-control-custom:focus {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 14px rgba(236, 72, 153, 0.14) !important;
}

/* 7. Image hover brightness filter */
.magnify-img-container img {
    transition: transform 1.2s cubic-bezier(0.15, 1, 0.3, 1), filter 0.8s ease;
}

.magnify-img-container:hover img {
    transform: scale(1.06) rotate(0.4deg) !important;
    filter: brightness(1.03);
}

/* 8. Floating animation keyframes adjustments */
@keyframes float-slow {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    50% { transform: translateY(-16px) scale(1.02) rotate(3deg); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0) scale(1.02) rotate(0deg); }
    50% { transform: translateY(16px) scale(0.98) rotate(-3deg); }
}

/* 9. Header mobile close button hover rotation */
.side-menu-close:hover {
    transform: rotate(90deg) scale(1.12) !important;
}

/* ====================================================================
   Additional Page Styles (FAQ, Timeline, Admin Panel)
   ==================================================================== */

/* 1. FAQ Accordion UI */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--glass-card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: var(--transition-base);
}

.faq-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-family: var(--font-sans);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-base);
}

.faq-item.active {
    border-color: rgba(124, 58, 237, 0.2);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: var(--bg-white);
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: var(--bg-light);
}

.faq-content p {
    padding: 20px 24px;
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* 2. Timeline UI */
.timeline-section {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-cyan) 0%, var(--primary) 50%, var(--dark-blue) 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-row {
    display: flex;
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-col {
    width: 50%;
    padding: 0 40px;
}

.timeline-row:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-row:nth-child(even) .timeline-card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-base);
}

.timeline-card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-base);
}

.timeline-card:hover {
    transform: translateY(-5px);
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: var(--shadow-lg);
}

.timeline-year {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: var(--primary-gradient);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.timeline-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.timeline-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 4px solid var(--primary);
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.15);
    transition: var(--transition-base);
}

.timeline-row:hover .timeline-dot {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 8px rgba(236, 72, 153, 0.25);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
        transform: none;
    }
    .timeline-row {
        flex-direction: column !important;
        margin-bottom: 40px;
    }
    .timeline-col {
        width: 100%;
        padding: 0 0 0 50px;
    }
    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
        top: 20px;
    }
}

/* 3. Team Member Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.35);
    box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
    height: 320px;
    width: 100%;
}

.team-info {
    padding: 24px;
}

.team-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--dark-blue);
}

.team-info span {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-base);
}

.team-socials a:hover {
    background: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* 4. Onboarding Journey Steps */
.roadmap-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.roadmap-step {
    display: flex;
    gap: 30px;
    background: var(--glass-card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.roadmap-step:hover {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.roadmap-badge {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-gradient);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.roadmap-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.roadmap-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 576px) {
    .roadmap-step {
    display: flex;
    gap: 30px;
    background: var(--glass-card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}
}

/* 5. Admin Panel Dashboard CSS */
.admin-body {
    background-color: var(--bg-light) !important;
}

.admin-header {
    background: var(--bg-dark-gradient);
    color: var(--bg-white);
    padding: 20px 0;
    border-bottom: 2px solid rgba(236, 72, 153, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

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

.admin-header .logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--text-dark);
    transition: var(--transition-base);
}

.admin-header .logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
    transition: var(--transition-base);
}
.logo-icon i {
    display: none !important;
}

.admin-badge-role {
    padding: 6px 14px;
    background: rgba(236, 72, 153, 0.15);
    color: var(--accent-cyan);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.admin-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.admin-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-title-row h2 {
    font-size: 32px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-title-row h2 i {
    color: var(--primary);
}

.admin-actions-group {
    display: flex;
    gap: 12px;
}

/* Stats Cards */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.admin-stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
}

.admin-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(236, 72, 153, 0.25);
    box-shadow: var(--shadow-md);
}

.admin-stat-info h3 {
    font-size: 36px;
    margin-bottom: 4px;
    color: var(--dark-blue);
}

.admin-stat-info p {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.admin-stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--light-blue);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.admin-stat-card:nth-child(2) .admin-stat-icon {
    background: rgba(16, 185, 129, 0.08);
    color: rgb(16, 185, 129);
}

.admin-stat-card:nth-child(3) .admin-stat-icon {
    background: rgba(245, 158, 11, 0.08);
    color: rgb(245, 158, 11);
}

.admin-stat-card:nth-child(4) .admin-stat-icon {
    background: rgba(239, 68, 68, 0.08);
    color: rgb(239, 68, 68);
}

/* Filter / Search Bar */
.admin-filter-bar {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 16px;
    align-items: center;
}

@media (max-width: 768px) {
    .admin-filter-bar {
        grid-template-columns: 1fr;
    }
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 14px;
    transition: var(--transition-base);
}

.search-input-wrapper input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.1);
}

.filter-select {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 14px;
    background-color: var(--bg-white);
    transition: var(--transition-base);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%27http%3D%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2724%27%20height%3D%2724%27%20viewBox%3D%270%200%2024%27%20fill%3D%27none%27%20stroke%3D%27%2364748B%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%276%209%2012%2015%2018%209%27%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

.filter-select:focus {
    border-color: var(--accent-cyan);
}

/* Table Card */
.admin-table-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.admin-table-responsive {
    overflow-x: auto;
    width: 100%;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.admin-table th {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-heading);
}

.admin-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.admin-table tbody tr {
    transition: var(--transition-base);
}

.admin-table tbody tr:hover {
    background: rgba(124, 58, 237, 0.015);
}

.admin-table td h5 {
    color: var(--text-dark);
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.admin-table td p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* Service Badges */
.badge-service {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
}

.badge-core { background: rgba(124, 58, 237, 0.08); color: var(--primary); }
.badge-cleaning { background: rgba(16, 185, 129, 0.08); color: rgb(16, 185, 129); }
.badge-personal { background: rgba(139, 92, 246, 0.08); color: rgb(139, 92, 246); }
.badge-community { background: rgba(245, 158, 11, 0.08); color: rgb(245, 158, 11); }
.badge-overnight { background: rgba(239, 68, 68, 0.08); color: rgb(239, 68, 68); }
.badge-domestic { background: rgba(236, 72, 153, 0.08); color: var(--accent-cyan); }
.badge-specialist { background: rgba(75, 85, 99, 0.08); color: rgb(75, 85, 99); }

/* Table Actions */
.table-actions {
    display: flex;
    gap: 8px;
}

.btn-table-action {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition-base);
}

.btn-view-details {
    color: var(--primary);
}

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

.btn-delete-row {
    color: rgb(239, 68, 68);
}

.btn-delete-row:hover {
    background: rgb(239, 68, 68);
    color: var(--bg-white);
    border-color: rgb(239, 68, 68);
}

/* Empty State */
.admin-empty-state {
    padding: 60px 24px;
    text-align: center;
}

.admin-empty-state i {
    font-size: 48px;
    color: var(--border-color);
    margin-bottom: 16px;
}

.admin-empty-state h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

/* Admin Detail Modal */
.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.admin-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.admin-modal {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.admin-modal-overlay.open .admin-modal {
    transform: translateY(0);
}

.admin-modal-header {
    background: var(--bg-light);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-modal-header h4 {
    font-size: 18px;
    margin: 0;
    color: var(--dark-blue);
}

.btn-modal-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-muted);
    transition: var(--transition-base);
}

.btn-modal-close:hover {
    color: var(--text-dark);
    transform: scale(1.1);
}

.admin-modal-body {
    padding: 24px;
}

.modal-details-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-detail-item {
    display: flex;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 12px;
}

.modal-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-detail-label {
    width: 140px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 13.5px;
    flex-shrink: 0;
}

.modal-detail-value {
    color: var(--text-muted);
    font-size: 13.5px;
    word-break: break-all;
}

.modal-detail-message-box {
    margin-top: 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-sm);
    max-height: 200px;
    overflow-y: auto;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    white-space: pre-line;
}

/* Thank You Form Overlay style */
.thankyou-overlay {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease forwards;
}

.thankyou-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    color: rgb(16, 185, 129);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.thankyou-overlay h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.thankyou-overlay p {
    font-size: 14.5px;
    color: var(--text-muted);
    max-width: 460px;
    margin: 0 auto 30px auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

/* Back link button for admin page */
.btn-admin-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 13.5px;
    transition: var(--transition-base);
}

.btn-admin-nav-back:hover {
    background: var(--accent-cyan);
    color: var(--dark-blue);
    border-color: var(--accent-cyan);
}

/* Footer Admin Button styling */
.footer-admin-btn-wrapper {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.btn-footer-admin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    text-decoration: none;
    transition: var(--transition-base);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-footer-admin:hover {
    color: var(--accent-cyan);
    border-color: rgba(236, 72, 153, 0.25);
    background: rgba(236, 72, 153, 0.05);
}

/* ====================================================================
   Desktop Hover Dropdown Menu System
   ==================================================================== */
.nav-dropdown-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-arrow {
    font-size: 9px;
    margin-left: 6px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 260px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
    z-index: 1010;
}

header.scrolled .nav-dropdown {
    background: var(--bg-white);
    border-color: rgba(124, 58, 237, 0.08);
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
}

.nav-dropdown-wrapper:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown li {
    width: 100%;
}

.nav-dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 13.5px !important;
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    text-align: left;
    transition: var(--transition-base);
    font-family: var(--font-sans) !important;
}

.nav-dropdown li a::after {
    display: none !important;
}

.nav-dropdown li a:hover {
    color: var(--primary) !important;
    background-color: var(--light-blue);
    padding-left: 24px;
}

header.scrolled .nav-dropdown li a:hover {
    color: var(--primary) !important;
    background-color: var(--light-blue);
}

/* ====================================================================
   Mobile Side Menu Accordion Dropdown System
   ==================================================================== */
.side-menu-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.side-menu-btn {
    width: 100%;
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: rgba(244, 248, 250, 0.85);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-base);
    text-align: left;
    cursor: pointer;
}

.side-menu-btn span {
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.side-menu-btn span i {
    color: var(--accent-cyan);
    font-size: 15px;
}

.side-menu-btn:hover {
    color: var(--bg-white);
    background-color: rgba(236, 72, 153, 0.08);
    border-color: rgba(236, 72, 153, 0.2);
}

.side-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.side-menu-dropdown {
    list-style: none;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s ease;
    margin-top: 0;
}

.side-menu-dropdown-wrapper.open .side-menu-dropdown {
    max-height: 400px;
    margin-top: 10px;
}

.side-menu-dropdown-wrapper.open .side-arrow {
    transform: rotate(180deg);
}

.side-menu-dropdown li a {
    font-size: 14px !important;
    padding: 10px 16px !important;
    background-color: rgba(255, 255, 255, 0.01) !important;
    border-color: rgba(255, 255, 255, 0.02) !important;
}

.side-menu-dropdown li a:hover {
    transform: translateX(4px) !important;
}

/* ====================================================================
   Subpage Hero Section Spacing adjustments
   ==================================================================== */
.subpage-hero {
    min-height: 65vh;
    padding-top: 155px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .subpage-hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 50px;
    }
}

/* ====================================================================
   Service Details Page Styling
   ==================================================================== */
.service-detail-grid {
    display: grid;
    grid-template-columns: 2.8fr 1.2fr;
    gap: 60px;
    margin-top: 20px;
}

.service-detail-content {
    color: var(--text-muted);
}

.service-lead-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.detail-rich-content h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--dark-blue);
}

.detail-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.detail-feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.detail-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(236, 72, 153, 0.3);
}

.detail-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

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

.sidebar-links-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.sidebar-links-list a:hover,
.sidebar-links-list a.active {
    background: var(--primary-gradient);
    color: var(--bg-white);
    border-color: transparent;
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.callback-widget {
    background: var(--bg-dark-gradient);
    color: var(--bg-white);
    border: none;
}

.callback-widget h4 {
    color: var(--bg-white) !important;
    font-size: 20px;
    margin-bottom: 15px;
    z-index: 2;
    position: relative;
}

.callback-widget p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

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

@media (max-width: 768px) {
    .detail-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================================================
   Unique Subpage Hero Redesigns
   ==================================================================== */

/* 1. About Us Hero */
.hero-about {
    background: linear-gradient(to right, rgba(3, 7, 18, 0.95) 0%, rgba(15, 23, 42, 0.85) 60%, rgba(15, 23, 42, 0.4) 100%), 
                url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-about .hero-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.hero-about .hero-glass-box {
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.08);
}
.hero-about .hero-buttons {
    justify-content: center;
}

/* 2. Services Hub Hero */
.hero-services {
    background: linear-gradient(to right, rgba(3, 7, 18, 0.96) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(15, 23, 42, 0.3) 100%), 
                url('https://images.unsplash.com/photo-1508847154043-be12a62861c1?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-services-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-services-visual img {
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-lg);
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 25px 50px rgba(236, 72, 153, 0.25);
    animation: float 6s ease-in-out infinite;
}
.hero-services-visual .services-badge-overlay {
    position: absolute;
    bottom: -20px;
    right: 10px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}
.hero-services-visual .services-badge-overlay i {
    color: var(--accent-cyan);
}

/* 3. Why Choose Us Hero */
.hero-why {
    background: linear-gradient(to left, rgba(3, 7, 18, 0.96) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(15, 23, 42, 0.3) 100%), 
                url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-why .hero-grid {
    grid-template-columns: 0.85fr 1.15fr;
}
@media (max-width: 1024px) {
    .hero-why .hero-grid {
        grid-template-columns: 1fr;
    }
}

/* 4. Contact Us Hero */
.hero-contact {
    background: linear-gradient(to right, rgba(3, 7, 18, 0.97) 0%, rgba(15, 23, 42, 0.85) 45%, rgba(15, 23, 42, 0.25) 100%), 
                url('https://images.unsplash.com/photo-1423662055902-3f9e998f5547?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-contact .contact-hero-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hero-contact .contact-info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, border-color 0.3s;
}
.hero-contact .contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}
.hero-contact .contact-info-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-contact .contact-info-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

/* 5. Core Support Hero */
.hero-service-core {
    background: linear-gradient(to right, rgba(3, 7, 18, 0.96) 0%, rgba(15, 23, 42, 0.85) 45%, rgba(15, 23, 42, 0.2) 100%), 
                url('https://images.unsplash.com/photo-1513151233558-d860c5398176?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

/* 6. NDIS Cleaning Hero */
.hero-service-cleaning {
    background: linear-gradient(to right, rgba(3, 7, 18, 0.96) 0%, rgba(15, 23, 42, 0.85) 45%, rgba(15, 23, 42, 0.2) 100%), 
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.cleaning-checklist-card {
    background: rgba(16, 185, 129, 0.08);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(16, 185, 129, 0.1);
    animation: float 6s ease-in-out infinite;
}
.cleaning-checklist-card h3 {
    font-size: 20px;
    color: var(--bg-white);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 10px;
}
.cleaning-checklist-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cleaning-checklist-card li {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}
.cleaning-checklist-card li i {
    color: rgb(16, 185, 129);
    font-size: 16px;
}

/* 7. Personal Care Hero */
.hero-service-personal {
    background: linear-gradient(to right, rgba(3, 7, 18, 0.95) 0%, rgba(15, 23, 42, 0.85) 60%, rgba(15, 23, 42, 0.3) 100%), 
                url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-service-personal .hero-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.hero-service-personal .hero-glass-box {
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.08);
}
.hero-service-personal .hero-buttons {
    justify-content: center;
}

/* 8. Community Participation Hero */
.hero-service-community {
    background: linear-gradient(to right, rgba(3, 7, 18, 0.96) 0%, rgba(15, 23, 42, 0.85) 45%, rgba(15, 23, 42, 0.2) 100%), 
                url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.community-inclusion-card {
    background: rgba(245, 158, 11, 0.08);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 158, 11, 0.1);
    animation: float 6s ease-in-out infinite;
}
.community-inclusion-card h3 {
    font-size: 20px;
    color: var(--bg-white);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 10px;
}
.community-inclusion-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.community-inclusion-card li {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}
.community-inclusion-card li i {
    color: rgb(245, 158, 11);
    font-size: 16px;
}

/* 9. Overnight Care Hero */
.hero-service-overnight {
    background: linear-gradient(to right, rgba(3, 7, 18, 0.97) 0%, rgba(15, 23, 42, 0.85) 45%, rgba(15, 23, 42, 0.25) 100%), 
                url('https://images.unsplash.com/photo-1505576399279-565b52d4ac71?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.overnight-status-card {
    background: rgba(239, 68, 68, 0.08);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(239, 68, 68, 0.1);
    animation: float 6s ease-in-out infinite;
}
.overnight-status-card h3 {
    font-size: 20px;
    color: var(--bg-white);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 10px;
}
.overnight-status-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.overnight-status-card li {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}
.overnight-status-card li i {
    color: rgb(239, 68, 68);
    font-size: 16px;
}

/* 10. Domestic Assistance Hero */
.hero-service-domestic {
    background: linear-gradient(to left, rgba(3, 7, 18, 0.96) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(15, 23, 42, 0.3) 100%), 
                url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-service-domestic .hero-grid {
    grid-template-columns: 0.85fr 1.15fr;
}
@media (max-width: 1024px) {
    .hero-service-domestic .hero-grid {
        grid-template-columns: 1fr;
    }
}
.domestic-tasks-card {
    background: rgba(236, 72, 153, 0.08);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(236, 72, 153, 0.25);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(236, 72, 153, 0.1);
    animation: float 6s ease-in-out infinite;
}
.domestic-tasks-card h3 {
    font-size: 20px;
    color: var(--bg-white);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 10px;
}
.domestic-tasks-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.domestic-tasks-card li {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}
.domestic-tasks-card li i {
    color: var(--accent-cyan);
    font-size: 16px;
}

/* 11. Specialist Care Hero */
.hero-service-specialist {
    background: linear-gradient(to right, rgba(3, 7, 18, 0.96) 0%, rgba(15, 23, 42, 0.85) 45%, rgba(15, 23, 42, 0.2) 100%), 
                url('https://images.unsplash.com/photo-1504813184591-015578c77ef5?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.specialist-credentials-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 35px rgba(236, 72, 153, 0.08);
    animation: float 6s ease-in-out infinite;
}
.specialist-credentials-card h3 {
    font-size: 20px;
    color: var(--bg-white);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 10px;
}
.specialist-credentials-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.specialist-credentials-card li {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}
.specialist-credentials-card li i {
    color: var(--accent-cyan);
    font-size: 16px;
}

.hero-service-detail {
    background: linear-gradient(to right, rgba(3, 7, 18, 0.96) 0%, rgba(15, 23, 42, 0.85) 45%, rgba(15, 23, 42, 0.2) 100%), 
                url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding-top: 175px !important;
    padding-bottom: 90px !important;
}

/* Unified service page hero card */
.service-hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 35px rgba(236, 72, 153, 0.08);
    animation: float 6s ease-in-out infinite;
}
.service-hero-card h3 {
    font-size: 20px;
    color: var(--bg-white);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 10px;
    font-weight: 600;
}
.service-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.service-hero-card li {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}
}

/* 12. Get Support Hero */
.hero-get-support {
    background: linear-gradient(to right, rgba(3, 7, 18, 0.95) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(15, 23, 42, 0.2) 100%), 
                url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

/* Support Modal Styling */
.support-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.support-modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}
.support-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 95%;
    max-width: 600px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    z-index: 2001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(236, 72, 153, 0.15);
    padding: 30px;
    max-height: 90vh;
    overflow-y: auto;
}
.support-modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}
.support-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s ease;
}
.support-modal-close:hover {
    color: var(--accent-cyan);
}
.support-modal-header {
    text-align: center;
    margin-bottom: 25px;
}
.support-modal-header h3 {
    font-size: 22px;
    color: var(--bg-white);
    font-weight: 700;
    margin-bottom: 5px;
}
.support-modal-header p {
    font-size: 13.5px;
    color: var(--text-muted);
}
.support-modal-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.modal-footer-item {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
}
.modal-footer-item i {
    color: var(--accent-cyan);
}
/* Form Validation Error Styles */
.input-invalid {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.25) !important;
}

.validation-error-msg {
    color: #ff6b6b;
    font-size: 12.5px;
    margin-top: 5px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 6px;
}






