/* Custom CSS for NEUROGENIC Landing Page */
/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700;800&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* Custom Color Variables */
:root {
    /* Lighter surface colors */
    --surface-container-high: #2a2f3a;
    --surface-container-lowest: #1a1d24;
    --primary-container: #00eefc;
    --on-primary-fixed-variant: #005e64;
    --on-surface-variant: #b8bcc5;
    --surface-variant: #2d323f;
    --tertiary-fixed: #8eafff;
    --secondary-fixed: #cbceff;
    --tertiary-dim: #729bfa;
    --on-tertiary-container: #002053;
    --surface-dim: #1e242e;
    --error: #ff716c;
    --on-primary-fixed: #003f43;
    --outline-variant: #4a4d55;
    --inverse-surface: #f9f9ff;
    --surface-container: #252933;
    --primary-fixed-dim: #00deec;
    --inverse-on-surface: #53555a;
    --error-dim: #d7383b;
    --surface-container-highest: #353a47;
    --outline: #74757a;
    --on-surface: #f6f6fc;
    --error-container: #9f0519;
    --on-tertiary-fixed-variant: #003581;
    --primary: #8ff5ff;
    --on-secondary-container: #c9cdff;
    --on-secondary-fixed-variant: #3e47a0;
    --surface-container-low: #1f232b;
    --tertiary: #8aacff;
    --on-tertiary-fixed: #00163e;
    --tertiary-container: #759efd;
    --primary-dim: #00deec;
    --surface: #1e242e;
    --on-primary-container: #005359;
    --surface-tint: #8ff5ff;
    --on-tertiary: #002b6b;
    --on-error: #490006;
    --secondary-dim: #8d96f4;
    --secondary: #929bfa;
    --surface-bright: #353a47;
    --primary-fixed: #00eefc;
    --secondary-container: #343d96;
    --secondary-fixed-dim: #babfff;
    --on-error-container: #ffa8a3;
    --inverse-primary: #006a71;
    --on-secondary-fixed: #1f2882;
    --on-primary: #005d63;
    --on-background: #f6f6fc;
    --tertiary-fixed-dim: #78a1ff;
    --on-secondary: #0b1574;
    --background: #1e242e;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--on-surface);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Container improvements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Row improvements */
.row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.col, [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}



.font-headline {
    font-family: 'Manrope', sans-serif;
}

/* Glass Effect */
.glass {
    background: rgba(45, 50, 65, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(100, 110, 140, 0.2);
}

/* Neural Glow Effect */
.neural-glow {
    background: radial-gradient(circle at center, rgba(52, 61, 150, 0.25) 0%, transparent 70%);
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Header Styles */
.header-main {
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    box-shadow: 0px 4px 24px rgba(0, 229, 255, 0.05);
}

/* Navigation Links */
.nav-link-custom {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link-custom:hover {
    color: #fff;
}

.nav-link-custom.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.25rem;
}

/* Button Styles */
.btn-primary-custom {
    background: linear-gradient(to right, var(--primary), var(--primary-container));
    color: var(--on-primary-fixed);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 229, 255, 0.2);
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 229, 255, 0.3);
    color: var(--on-primary-fixed);
}

.btn-primary-custom:active {
    transform: scale(0.95);
}

.btn-secondary-custom {
    background: var(--glass);
    color: var(--on-surface);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 110, 140, 0.2);
    display: inline-block;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--on-surface);
}

/* Hero Section */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 6rem;
    position: relative;
}

/* Space utility classes */
.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-5 > * + * {
    margin-top: 1.25rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(143, 245, 255, 0.1);
    border: 1px solid rgba(143, 245, 255, 0.2);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    line-height: 1.1;
    color: var(--on-surface);
    margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
    background: linear-gradient(to right, var(--primary), var(--tertiary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature Cards */
.feature-card {
    display: flex;
    flex-direction: column;
    /* align-items: center;
    text-align: center; */
    gap: 1rem;
    cursor: default;
    transition: all 0.5s ease;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: rgba(35, 38, 44, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.feature-icon:hover {
    border-color: rgba(143, 245, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.feature-icon .hover-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(143, 245, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-icon:hover .hover-bg {
    opacity: 1;
}

.feature-icon .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.875rem;
    transition: transform 0.5s ease;
}

.feature-icon:hover .material-symbols-outlined {
    transform: scale(1.1);
}

.feature-title {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--on-surface);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--primary);
}

.feature-subtitle {
    font-size: 0.625rem;
    color: var(--on-surface-variant);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

/* Form Styles */
.form-container {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    background: rgba(42, 47, 58, 0.95);
    padding: 2rem;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}

.form-glow {
    position: absolute;
    inset: -1rem;
    background: rgba(143, 245, 255, 0.2);
    filter: blur(3rem);
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.form-container:hover .form-glow {
    opacity: 0.7;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--on-surface);
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    background: rgba(35, 38, 44, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--on-surface);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: var(--on-surface-variant);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--primary);
    transform: translateY(-2px);
}

/* Section Styles */
.section-padding {
    padding: 6rem 0;
}

.section-dark {
    background: linear-gradient(135deg, var(--surface-container-lowest) 0%, var(--surface-dim) 100%);
}

.section-medium {
    background: linear-gradient(135deg, var(--surface-container-low) 0%, var(--surface-container) 100%);
}

.section-light {
    background: linear-gradient(135deg, var(--surface-container) 0%, var(--surface-container-high) 100%);
}

/* Card Styles */
.problem-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(45, 50, 65, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.problem-card:hover {
    border-color: rgba(143, 245, 255, 0.4);
    background: rgba(45, 50, 65, 0.8);
    transform: translateY(-2px);
}

.problem-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(143, 245, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(143, 245, 255, 0.3);
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    background: rgba(143, 245, 255, 0.25);
    border-color: rgba(143, 245, 255, 0.5);
}

/* Recovery Cards */
.recovery-card {
    background: rgba(42, 47, 58, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.recovery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.2);
    border-color: rgba(143, 245, 255, 0.4);
    background: rgba(42, 47, 58, 0.95);
}

.recovery-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.recovery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.recovery-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recovery-tag {
    display: inline-block;
    background: rgba(143, 245, 255, 0.2);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border: 1px solid rgba(143, 245, 255, 0.3);
}

.recovery-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--on-surface);
    margin-bottom: 1rem;
    font-family: 'Manrope', sans-serif;
}

.recovery-description {
    color: var(--on-surface-variant);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.recovery-best-for {
    color: var(--on-surface-variant);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(35, 38, 44, 0.5);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
}

.recovery-best-for strong {
    color: var(--primary);
}

.btn-recovery {
    background: linear-gradient(to right, var(--primary), var(--primary-container));
    color: var(--on-primary-fixed);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    width: 100%;
}

.btn-recovery:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
    color: var(--on-primary-fixed);
}

.btn-recovery:active {
    transform: scale(0.95);
}

.benefit-card {
    padding: 2rem;
    border-radius: 0.75rem;
    background: rgba(42, 47, 58, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    background: rgba(42, 47, 58, 0.8);
    border-color: rgba(143, 245, 255, 0.3);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--primary), var(--primary-container));
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon .material-symbols-outlined {
    color: var(--on-primary-fixed);
    font-size: 1.875rem;
}

/* Testimonial Cards */
.testimonial-card {
    padding: 2rem;
    border-radius: 0.75rem;
    background: rgba(42, 47, 58, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    background: rgba(42, 47, 58, 0.8);
    border-color: rgba(143, 245, 255, 0.3);
    transform: translateY(-2px);
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-track .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    margin: 0 0.5rem;
}

/* Responsive Testimonial Grid */
@media (max-width: 992px) {
    .testimonial-track .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 576px) {
    .testimonial-track .testimonial-card {
        flex: 0 0 calc(100% - 1rem);
    }
}

/* Testimonial Navigation */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 47, 58, 0.9);
    border: 2px solid rgba(143, 245, 255, 0.3);
    color: var(--primary);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    z-index: 20;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-nav:hover {
    background: rgba(143, 245, 255, 0.25);
    border-color: rgba(143, 245, 255, 0.6);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.3);
}

.testimonial-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-nav-prev {
    left: -1.5rem;
}

.testimonial-nav-next {
    right: -1.5rem;
}

.testimonial-nav .material-symbols-outlined {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Testimonial Indicators */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

.testimonial-indicator:hover {
    background: rgba(143, 245, 255, 0.6);
}

@media (max-width: 576px) {
    .testimonial-nav {
        width: 3rem;
        height: 3rem;
    }
    
    .testimonial-nav-prev {
        left: 0.5rem;
    }
    
    .testimonial-nav-next {
        right: 0.5rem;
    }
    
    .testimonial-nav .material-symbols-outlined {
        font-size: 1.25rem;
    }
}

/* Sticky Call Button */
.sticky-call-btn {
    position: fixed;
    left: 2rem;
    bottom: 0px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    color: var(--on-primary-fixed);
    border: none;
    border-radius: 50px;
        padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sticky-call-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.4);
    background: linear-gradient(135deg, var(--primary-container), var(--primary));
}

.sticky-call-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.sticky-call-btn .material-symbols-outlined {
    font-size: 1.25rem;
    font-variation-settings: 'FILL' 1;
}

.sticky-call-btn .btn-text {
    white-space: nowrap;
}

/* Sticky Back to Top Button */
.sticky-back-to-top {
    position: fixed;
    right: 2rem;
    bottom: 30px;
    background: rgba(42, 47, 58, 0.9);
    color: var(--primary);
    border: 2px solid rgba(143, 245, 255, 0.3);
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(15px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sticky-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-back-to-top:hover {
    background: rgba(143, 245, 255, 0.2);
    border-color: rgba(143, 245, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.3);
}

.sticky-back-to-top:active {
    transform: scale(0.95);
}

.sticky-back-to-top .material-symbols-outlined {
    font-size: 2.5rem;
    font-weight: 600;
}

/* Responsive Sticky Buttons */
@media (max-width: 768px) {
    .sticky-call-btn {
        left: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .sticky-call-btn .material-symbols-outlined {
        font-size: 1.1rem;
    }
    
    .sticky-back-to-top {
        right: 1rem;
        bottom: 40px;
        width: 4rem;
        height: 4rem;
    }
    
    .sticky-back-to-top .material-symbols-outlined {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .sticky-call-btn {
        left: 0.5rem;
        padding: 0.6rem 0.8rem;
    }
    
    .sticky-call-btn .btn-text {
        display: none;
    }
    
    .sticky-call-btn {
        border-radius: 50%;
        width: 4rem;
        height: 4rem;
        justify-content: center;
    }
    
    .sticky-back-to-top {
        right: 0.5rem;
        bottom: 40px;
        width: 4rem;
        height: 4rem;
    }
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--primary);
}

.testimonial-text {
    font-style: italic;
    color: var(--on-surface);
    line-height: 1.6;
    flex: 1;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--surface-container);
}

/* Process Cards */
.process-card {
    padding: 2rem;
    border-radius: 0.75rem;
    background: rgba(42, 47, 58, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.process-card:hover {
    background: rgba(42, 47, 58, 0.8);
    border-color: rgba(143, 245, 255, 0.3);
    transform: translateY(-3px);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(143, 245, 255, 0.2);
}

/* FAQ Styles */
.faq-item {
    background: rgba(42, 47, 58, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(42, 47, 58, 0.8);
    border-color: rgba(143, 245, 255, 0.3);
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--on-surface-variant);
    font-size: 0.875rem;
    line-height: 1.6;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

/* Locations Section */
.locations-section-header {
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.locations-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.locations-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.locations-phone {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.locations-phone a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.locations-phone a:hover {
    color: #8ff5ff;
}

.location-card {
    height: 100%;
}

.location-copy {
    margin-bottom: 1rem;
}

.location-name {
    color: #ffffff;
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.location-address {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    margin-bottom: 0;
}

.location-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(143, 245, 255, 0.16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    background: rgba(255, 255, 255, 0.04);
    aspect-ratio: 16 / 8;
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Modal Styles */
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(0.25rem);
}

.modal-content {
    position: relative;
    background: rgba(42, 47, 58, 0.95);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    max-width: 32rem;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
}

.modal-header {
    position: sticky;
    top: 0;
    background: rgba(42, 47, 58, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 1rem 1rem 0 0;
    backdrop-filter: blur(20px);
}

.modal-close {
    color: var(--on-surface-variant);
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--on-surface);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Footer Styles */

.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 2rem 0;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-main {
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 2rem;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.footer-links h5 {
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-align: end;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    text-align: end;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 80rem;
    margin: 0 auto;
    margin-top: 2rem;
    padding-top: 2rem;
    background: linear-gradient(to right, transparent, #1e293b, transparent);
    height: 1px;
}

.footer-bottom-content {
    max-width: 80rem;
    margin: 0 auto;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

.footer-social a {
    color: #64748b;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary);
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-pulse-slow {
    animation: pulse 2s ease-in-out infinite;
}

.gradient-animate {
    background: linear-gradient(270deg, #8ff5ff, #00eefc, #8aacff);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.2);
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* Button Animations */
.btn-animate {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-animate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-animate:hover::before {
    width: 300px;
    height: 300px;
}

/* Form Input Animations */
.form-input-animate {
    transition: all 0.3s ease;
}

.form-input-animate:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.15);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Alert Notifications */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    animation: slideInDown 0.3s ease-out;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes slideInDown {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
}

.success-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 3px solid rgba(34, 197, 94, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: successPulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.success-check {
    font-size: 4rem;
    color: #22c55e;
    font-variation-settings: 'FILL' 1;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
    }
}

.thank-you-details {
    background: rgba(42, 47, 58, 0.6);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(35, 38, 44, 0.4);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(35, 38, 44, 0.6);
    border-color: rgba(143, 245, 255, 0.3);
    transform: translateY(-2px);
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--primary);
    font-variation-settings: 'FILL' 1;
}

.countdown-container {
    background: rgba(42, 47, 58, 0.4);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.countdown-timer {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

#countdown {
    color: var(--primary);
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    min-width: 60px;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links {
    margin-top: 3rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(42, 47, 58, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(42, 47, 58, 0.8);
    border-color: rgba(143, 245, 255, 0.3);
    color: var(--primary);
    transform: translateY(-3px) scale(1.1);
}

.social-link .material-symbols-outlined {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-social a {
        margin: 0 0.75rem;
    }
    
    .form-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* Recovery Cards Responsive */
    .recovery-card {
        margin-bottom: 2rem;
    }
    
    .recovery-card-image {
        height: 240px;
    }
    
    .recovery-title {
        font-size: 1.25rem;
    }
    
    .recovery-description {
        font-size: 0.8rem;
    }
    
    .recovery-best-for {
        font-size: 0.8rem;
    }

    .locations-section-header {
        margin-bottom: 2.5rem;
    }

    .location-name {
        font-size: 1.5rem;
    }

    .location-image-wrap {
        border-radius: 16px;
    }
    .space-y-3
    {
        margin-bottom: 10px;
    }
     .footer-brand , .footer-links
    {
    display: flex;
    flex-direction: column;
    align-items: center;

    }
    .foot-link-last
    {
          display: flex;
    flex-direction: column;
    align-items: center;
    }

}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .form-container {
        padding: 1.25rem;
    }
    
    .process-card {
        min-height: 250px;
        padding: 1.5rem;
    }
    
    .btn-primary-custom, .btn-secondary-custom {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Recovery Cards Small Mobile */
    .recovery-card-image {
        height: 220px;
    }
    
    .recovery-card-content {
        padding: 1rem;
    }
    
    .recovery-title {
        font-size: 1.125rem;
    }
    
    .recovery-description {
        font-size: 0.75rem;
    }
    
    .recovery-best-for {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
    
    .btn-recovery {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }

    .locations-title {
        font-size: 1.8rem;
    }

    .locations-subtitle,
    .locations-phone,
    .location-address {
        font-size: 0.95rem;
    }

    .location-name {
        font-size: 1.3rem;
    }
    .space-y-3
    {
        margin-bottom: 10px;
    }
    .footer-brand
    {
           display: flex;
    flex-direction: column;
    align-items: center;

    }
}

.space-y-4 small.text-muted {
    --bs-text-opacity: 1;
    color: rgb(255 255 255 / 75%) !important;
}