/* Header Styles */


.header-section {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .row.align-items-center.min-vh-100 {
        min-height: 80vh;
    }
}

@media (max-width: 767px) {
    .row.align-items-center.min-vh-100 {
        min-height: auto;
    }
}

.logo-section {
    flex: 0 0 auto;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 250px;
}

.contact-section {
    text-align: right;
    flex: 0 0 auto;
    min-width: 150px;
}

.phone-link {
    color: #2563eb;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.phone-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.location-text {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
    font-weight: 500;
    white-space: nowrap;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-header {
    position: relative;
    z-index: 2;
    padding: 2rem 0 3rem 0;
}

.hero-body {
    position: relative;
    z-index: 2;
    padding: 0 0 2rem 0;
}

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

.hero-content-right {
    text-align: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-title .highlight {
    color: #06b6d4;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 800px;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-content-left .features-list {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #06b6d4;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #f1f5f9;
}

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.trust-text {
    margin: 0;
    color: #f1f5f9;
    font-weight: 500;
}

.profile-pics {
    display: flex;
    margin-left: auto;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0f172a;
    margin-left: -10px;
    transition: transform 0.3s ease;
}

.profile-pic:first-child {
    margin-left: 0;
}

.profile-pic:hover {
    transform: scale(1.1);
    z-index: 1;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* FDA Badge */
.fda-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
    animation: float 3s ease-in-out infinite;
}

.fda-badge i {
    font-size: 1.2rem;
}

/* Success Rate Card */
.success-rate-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    color: #1e293b;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 180px;
    animation: slideInLeft 0.8s ease-out;
}

.success-content {
    flex: 1;
}

.success-number {
    font-size: 2rem;
    font-weight: 700;
    color: #06b6d4;
    line-height: 1;
}

.success-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.25rem;
}

.success-chart {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-chart i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-content-left .features-list {
        /* grid-template-columns: 1fr; */
    }
    
    .trust-badge {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        border: none;
        background-color: transparent;
    }
    .trust-content
    {
        display: flex;
    flex-direction: column;
    /* align-items: center; */
    }
    
    .profile-pics {
        margin-left: 0;
    }
    
    .success-rate-card {
        left: 20px;
        bottom: 20px;
    }
    .hero-body
    {
        flex-direction: column-reverse;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 80%;
    }
    
    .fda-badge {
        top: 10px;
        right: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .success-rate-card {
        left: 10px;
        bottom: 10px;
        padding: 1rem;
        min-width: 150px;
    }
    
    .success-number {
        font-size: 1.5rem;
    }
    
    .success-chart {
        width: 35px;
        height: 35px;
    }
    .hero-content-right
    {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        /* flex-direction: column; */
        gap: 1rem;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .contact-section {
        text-align: center;
        min-width: auto;
        display: inline-block;
    }
    
    .phone-link {
        font-size: 1rem;
    }
    
    .location-text {
        font-size: 0.85rem;
    }
    
    .logo-img {
        height: 50px;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .header-content {
        gap: 0.75rem;
    }
    
    .phone-link {
        font-size: 0.95rem;
    }
    
    .location-text {
        font-size: 0.8rem;
    }
    
    .logo-img {
        height: 50px;
        max-width: 180px;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .features-list {
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.5rem;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .trust-badge {
        padding: 1rem;
    }
    
    .profile-pic {
        width: 35px;
        height: 35px;
    }
     .hero-description {
        font-size: 1.2rem;
        max-width: 100%;
    }
}

/* Assessment Form Section Styles */
.assessment-form-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #162236 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.assessment-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(63,224,160,.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(79,195,176,.07) 0%, transparent 60%);
    pointer-events: none;
}

.assessment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(63,224,160,.12);
    border: 1px solid rgba(63,224,160,.3);
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    color: #3fe0a0;
    text-transform: uppercase;
    margin-bottom: 28px;
    justify-content: center;
}

.assessment-badge svg { 
    width:14px; 
    height:14px; 
}

.assessment-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px,5vw,52px);
    font-weight: 700;
    line-height: 1.18;
    color: #ffffff;
    max-width: 780px;
    margin: 0 auto 16px;
    text-align: center;
}

.assessment-title span {
    background: linear-gradient(90deg, #3fe0a0, #4fc3b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.assessment-subtitle {
    font-size: 16px;
    color: #8fa6be;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

/* Form Wrapper */
.form-wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 16px 80px;
    scroll-behavior: smooth;
}

/* Prevent form jumping on input focus */
.assessment-form-section {
    scroll-behavior: auto;
}

.step {
    scroll-margin-top: 100px;
}

/* Input field focus behavior */
.input-field:focus,
.q-textarea:focus,
.option-btn:focus,
.option-check:focus {
    outline: 2px solid #3fe0a0;
    outline-offset: 2px;
}

/* Card – dark step (Q1) */
.card-dark {
    background: #25344e;
    border: 1.5px solid #1f3047;
    border-radius: 20px;
    padding: 40px 36px 32px;
    margin-top: -8px;
    position: relative;
    z-index: 2;
}

/* Transition strip */
.transition-strip {
    /* background: linear-gradient(to bottom, #162236 0%, #f4f7fb 100%); */
    height: 64px;
    margin: 0 -16px;
}

/* Card – light steps (Q2–Q8 + result) */
.card-light {
    background: #ffffff;
    border: 1.5px solid #dde4ef;
    border-radius: 20px;
    padding: 40px 36px 32px;
    color: #0d1b2a;
    box-shadow: 0 8px 40px rgba(13,27,42,.08);
}

/* Step Dots */
.step-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
}

.dot {
    width: 28px; 
    height: 28px;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 11px; 
    font-weight: 700;
    transition: all .3s;
}

.dot.active   { 
    background: #0d1b2a; 
    color: #ffffff; 
    border: 2.5px solid #0d1b2a; 
}

.dot.done     { 
    background: #3fe0a0; 
    color: #0d1b2a; 
    border: 2.5px solid #3fe0a0; 
}

.dot.inactive { 
    background: transparent; 
    color: #aaa; 
    border: 2.5px solid #ccc; 
}

.dot-line {
    width: 36px; 
    height: 2px;
    background: #dde4ef;
    transition: background .3s;
}

.dot-line.done { 
    background: #3fe0a0; 
}

/* Question Label */
.q-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.card-dark .q-label  { 
    color: #8fa6be; 
}

.card-light .q-label { 
    color: #8fa6be; 
}

.q-label span {
    background: rgba(63,224,160,.15);
    border: 1px solid rgba(63,224,160,.25);
    border-radius: 999px;
    padding: 4px 14px;
    color: #3fe0a0;
    font-size: 11px;
}

/* Question Text */
.q-text {
    font-family: 'Sora', sans-serif;
    font-size: clamp(18px,3vw,26px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.3;
}

.card-dark .q-text  { 
    color: #ffffff; 
}

.card-light .q-text { 
    color: #0d1b2a; 
}

.q-sub {
    text-align: center;
    font-size: 13px;
    color: #8fa6be;
    margin-top: -16px;
    margin-bottom: 20px;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.options-grid.single-col { 
    grid-template-columns: 1fr; 
}

.option-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-radius: 14px;
    border: 1.5px solid;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .22s ease;
    text-align: left;
    width: 100%;
}

/* Dark card options */
.card-dark .option-btn {
    border-color: #1f3047;
    background: rgba(255,255,255,.04);
    color: #ffffff;
}

.card-dark .option-btn:hover,
.card-dark .option-btn.selected {
    border-color: #3fe0a0;
    background: rgba(63,224,160,.1);
    color: #ffffff;
}

/* Light card options */
.card-light .option-btn {
    border-color: #dde4ef;
    background: #f8fafc;
    color: #0d1b2a;
}

.card-light .option-btn:hover,
.card-light .option-btn.selected {
    border-color: #0d1b2a;
    background: rgba(13,27,42,.05);
    color: #0d1b2a;
}

.arrow-icon {
    width: 22px; 
    height: 22px;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-left: 10px;
    transition: all .22s;
}

.card-dark .arrow-icon  { 
    background: rgba(63,224,160,.18); 
    color: #3fe0a0; 
}

.card-light .arrow-icon { 
    background: rgba(13,27,42,.1); 
    color: #0d1b2a; 
}

/* Multi-Select Option */
.option-check {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1.5px solid #dde4ef;
    background: #f8fafc;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .22s;
    color: #0d1b2a;
    user-select: none;
}

.option-check:hover  { 
    border-color: #0d1b2a; 
    background: rgba(13,27,42,.04); 
}

.option-check.selected { 
    border-color: #28c483; 
    background: rgba(40,196,131,.08); 
}

.check-box {
    width: 20px; 
    height: 20px;
    border-radius: 6px;
    border: 2px solid #ccc;
    display: flex; 
    align-items: center; 
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s;
}

.option-check.selected .check-box {
    background: #28c483;
    border-color: #28c483;
    color: white;
}

/* Textarea */
.q-textarea {
    width: 100%;
    border: 1.5px solid #dde4ef;
    border-radius: 14px;
    background: #f8fafc;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: #0d1b2a;
    padding: 16px 18px;
    resize: vertical;
    min-height: 100px;
    outline: none;
    transition: border .2s;
    margin-bottom: 14px;
}

.q-textarea:focus { 
    border-color: #0d1b2a; 
}

/* Navigation Buttons */
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.btn-back {
    background: transparent;
    border: 1.5px solid;
    border-radius: 12px;
    padding: 12px 22px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

.card-dark .btn-back  { 
    border-color: #1f3047; 
    color: #8fa6be; 
}

.card-dark .btn-back:hover  { 
    border-color: #3fe0a0; 
    color: #ffffff; 
}

.card-light .btn-back { 
    border-color: #dde4ef; 
    color: #3d5166; 
}

.card-light .btn-back:hover { 
    border-color: #0d1b2a; 
    color: #0d1b2a; 
}

.btn-next {
    background: linear-gradient(135deg, #3fe0a0, #4fc3b0);
    color: #0d1b2a;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 20px rgba(63,224,160,.35);
}

.btn-next:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 28px rgba(63,224,160,.45); 
}

.btn-next:disabled { 
    opacity: .5; 
    cursor: not-allowed; 
    transform: none; 
}

/* Progress Bar */
.progress-section {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid;
}

.card-dark .progress-section  { 
    border-color: #1f3047; 
}

.card-light .progress-section { 
    border-color: #dde4ef; 
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-dark .progress-header  { 
    color: #8fa6be; 
}

.card-light .progress-header { 
    color: #8fa6be; 
}

.progress-track {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
}

.card-dark .progress-track  { 
    background: rgba(255,255,255,.1); 
}

.card-light .progress-track { 
    background: #dde4ef; 
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #3fe0a0, #4fc3b0);
    transition: width .5s cubic-bezier(.4,0,.2,1);
}

/* Step Container */
.step { 
    display: none; 
}

.step.active { 
    display: block; 
    animation: fadeIn .35s ease; 
}

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

/* Lead Capture */
.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.lead-grid.full { 
    grid-template-columns: 1fr; 
}

.input-field {
    width: 100%;
    border: 1.5px solid #dde4ef;
    border-radius: 12px;
    background: #f8fafc;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: #0d1b2a;
    padding: 14px 16px;
    outline: none;
    transition: border .2s;
}

.input-field:focus { 
    border-color: #0d1b2a; 
}

.input-label {
    font-size: 13px;
    font-weight: 700;
    color: #3d5166;
    margin-bottom: 6px;
    display: block;
}

.input-wrap { 
    display: flex; 
    flex-direction: column; 
}

/* Success */
.success-box {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 72px; 
    height: 72px;
    background: linear-gradient(135deg, #3fe0a0, #4fc3b0);
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

.success-box h2 {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 12px;
}

.success-box p {
    font-size: 15px;
    color: #3d5166;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.6;
}

.success-badge {
    display: inline-block;
    margin-top: 24px;
    background: rgba(63,224,160,.12);
    border: 1px solid rgba(63,224,160,.4);
    border-radius: 999px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    color: #28c483;
}

/* Light Section BG Wrapper */
.light-section {
    /* background: #f4f7fb; */
    padding: 0 16px 0;
    margin: 0 -16px;
}

/* Problem Section Styles */
.problem-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    padding: 5rem 0;
    color: white;
}

.problem-content {
    text-align: center;
}

.problem-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.problem-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Treatment Options */
.treatment-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.treatment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    min-width: 200px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.treatment-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.treatment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #374151, #4b5563);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.treatment-card:hover .treatment-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: rgba(239, 68, 68, 0.3);
}

.treatment-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.treatment-card span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #f1f5f9;
}

/* Problem Box */
.problem-box {
    background: linear-gradient(135deg, #1f2937, #111827);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.problem-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.problem-label {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.problem-text p {
    margin: 0.5rem 0;
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.problem-text p:first-child {
    font-weight: 500;
}

/* Problem Section Responsive */
@media (max-width: 991px) {
    .problem-title {
        font-size: 2.5rem;
    }
    
    .problem-subtitle {
        font-size: 1.1rem;
    }
    
    .treatment-options {
        gap: 1rem;
    }
    
    .treatment-card {
        min-width: 100px;
        padding: 2rem;
    }
    
    .treatment-icon {
        width: 50px;
        height: 50px;
    }
    
    .treatment-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .problem-section {
        padding: 3rem 0;
    }
    
    .problem-title {
        font-size: 2rem;
    }
    
    .problem-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .treatment-options {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .treatment-card {
        min-width: 80px;
        padding: 2rem;
    }
    
    .treatment-icon {
        width: 40px;
        height: 40px;
    }
    
    .treatment-icon i {
        font-size: 1rem;
    }
    
    .treatment-card span {
        font-size: 0.8rem;
    }
    
    .problem-box {
        padding: 1.5rem;
    }
    
    .problem-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .treatment-options {
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .treatment-card {
        min-width: 70px;
        padding: 1rem;
        width: 170px;
    }
    
    .treatment-icon {
        width: 35px;
        height: 35px;
    }
    
    .treatment-icon i {
        font-size: 0.9rem;
    }
    
    .treatment-card span {
        font-size: 0.75rem;
    }
    
    .problem-box {
        padding: 1rem;
    }
    
    .problem-label {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .problem-text p {
        font-size: 0.9rem;
    }
    .options-grid
    {
        grid-template-columns: 1fr;
    }
}

/* Comparison Section Styles */
.comparison-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.comparison-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 0;
}

/* Comparison Cards */
.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.card-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.traditional-card {
    border-color: rgba(239, 68, 68, 0.3);
}

.traditional-card .card-label {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.softwave-card {
    border-color: rgba(6, 182, 212, 0.3);
}

.softwave-card .card-label {
    background: rgba(6, 182, 212, 0.2);
    color: #67e8f9;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #374151, #4b5563);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.traditional-card .card-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.softwave-card .card-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.sub-heading {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0.25rem 0 0 0;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.traditional-card .feature-list li i {
    color: #f87171;
    font-size: 1.2rem;
}

.softwave-card .feature-list li i {
    color: #06b6d4;
    font-size: 1.2rem;
}

.card-focus {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
    font-style: italic;
    border-left: 3px solid;
}

.traditional-card .card-focus {
    border-left-color: #ef4444;
}

.softwave-card .card-focus {
    border-left-color: #06b6d4;
}

/* Comparison Section Responsive */
@media (max-width: 991px) {
    .comparison-title {
        font-size: 2.5rem;
    }
    
    .comparison-subtitle {
        font-size: 1.1rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.2rem;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .comparison-section {
        padding: 3rem 0;
    }
    
    .comparison-title {
        font-size: 2rem;
    }
    
    .comparison-subtitle {
        font-size: 1rem;
    }
    
    .comparison-card {
        padding: 1.25rem;
    }
    
    .card-header {
        margin-bottom: 1.5rem;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
    }
    
    .card-icon i {
        font-size: 1.1rem;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .sub-heading {
        font-size: 0.9rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
    
    .card-focus {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .comparison-card {
        padding: 1rem;
    }
    
    .card-label {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
    
    .card-header {
        gap: 0.75rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-icon i {
        font-size: 1rem;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .sub-heading {
        font-size: 0.85rem;
    }
    
    .feature-list li {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .feature-list li i {
        font-size: 1rem;
    }
    
    .card-focus {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tag-pill {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.tag-pill i {
    font-size: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #0891b2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px -10px rgba(6, 182, 212, 0.2);
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 10px 30px -5px rgba(6, 182, 212, 0.4);
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* No Downtime Box */
.no-downtime-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.no-downtime-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.no-downtime-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.no-downtime-box p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin: 0;
}

.no-downtime-box span {
    color: #06b6d4;
    font-weight: 600;
    position: relative;
}

.no-downtime-box span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4, #0891b2);
    border-radius: 1px;
}

/* How It Works Section Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
    }
    
    .no-downtime-box {
        padding: 2rem;
    }
    
    .no-downtime-box h3 {
        font-size: 1.8rem;
    }
    
    .no-downtime-box p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .how-it-works-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .tag-pill {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .feature-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .no-downtime-box {
        padding: 1.5rem;
    }
    
    .no-downtime-box h3 {
        font-size: 1.5rem;
    }
    
    .no-downtime-box p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 1rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .no-downtime-box {
        padding: 1rem;
    }
    
    .no-downtime-box h3 {
        font-size: 1.3rem;
    }
    
    .no-downtime-box p {
        font-size: 0.9rem;
    }
}

/* Conditions Section */
.conditions-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
}

.conditions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Condition Cards */
.condition-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.condition-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.2);
}

.condition-card i {
    font-size: 2rem;
    color: #06b6d4;
    flex-shrink: 0;
    padding: 5px 15px;
    border: solid 1px #757474;
    border-radius: 15px;
}

.condition-card span {
    font-size: 1rem;
    font-weight: 500;
    color: #f1f5f9;
}

/* Surgery Note Box */
.surgery-note-box {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.surgery-note-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.surgery-note-box:hover::before {
    opacity: 1;
}

.surgery-note-box p {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
}

.surgery-note-box strong {
    font-weight: 700;
    color: white;
}

/* Conditions Section Responsive */
@media (max-width: 991px) {
    .conditions-section {
        padding: 4rem 0;
    }
    
    .condition-card {
        padding: 2rem 1rem;
    }
    
    .condition-card i {
        font-size: 1.8rem;
    }
    
    .condition-card span {
        font-size: 0.95rem;
    }
    
    .surgery-note-box {
        padding: 1.5rem;
    }
    
    .surgery-note-box p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .conditions-section {
        padding: 3rem 0;
    }
    
    .condition-card {
        padding: 2rem 0.875rem;
        gap: 0.5rem;
    }
    
    .condition-card i {
        font-size: 1.6rem;
    }
    
    .condition-card span {
        font-size: 0.9rem;
    }
    
    .surgery-note-box {
        padding: 1.25rem;
    }
    
    .surgery-note-box p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .condition-card {
        padding: 0.875rem 0.75rem;
        gap: 0.5rem;
    }
    
    .condition-card i {
        font-size: 1.4rem;
    }
    
    .condition-card span {
        font-size: 0.85rem;
    }
    
    .surgery-note-box {
        padding: 1rem;
    }
    
    .surgery-note-box p {
        font-size: 0.9rem;
    }
}

/* Assessment Section */
.assessment-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
}

.assessment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.assessment-content {
    position: relative;
    z-index: 2;
}

.assessment-tag {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.assessment-tag i {
    font-size: 1rem;
}

.assessment-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.assessment-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.assessment-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.3);
    /* margin-bottom: 2rem; */
}

.assessment-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(239, 68, 68, 0.4);
}

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

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

.assessment-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
        margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.1rem;
    color: #10b981;
}

/* Assessment Section Responsive */
@media (max-width: 991px) {
    .assessment-title {
        font-size: 2.5rem;
    }
    
    .assessment-subtitle {
        font-size: 1.1rem;
    }
    
    .assessment-btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    .assessment-features {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .assessment-section {
        padding: 3rem 0;
    }
    
    .assessment-title {
        font-size: 2rem;
    }
    
    .assessment-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .assessment-btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.75rem;
        /* margin-bottom: 1.5rem; */
    }
    
    .assessment-features {
        gap: 1rem;
        /* flex-direction: column; */
        align-items: center;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    .footer
    {
        padding-bottom: 100px !important;
    }
}

@media (max-width: 576px) {
    .assessment-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
    }
       .footer
    {
        padding-bottom: 100px !important;
    }
    
    .assessment-title {
        font-size: 1.75rem;
    }
    
    .assessment-subtitle {
        font-size: 0.95rem;
    }
    
    .assessment-btn {
        font-size: 0.9rem;
        padding: 0.625rem 1.5rem;
    }
    
    .assessment-features {
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-section .section-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.phone-number {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0;
}

.phone-number a {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-number a:hover {
    color: #0891b2;
    text-decoration: underline;
}

/* Location Cards */
.location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(6, 182, 212, 0.2);
}

.location-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.location-address {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    position: relative;
    width: 100%;
    margin-top: auto;
    flex-shrink: 0;
}

.map-container iframe,
.map-container img {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

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

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

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #06b6d4;
    text-decoration: underline;
}

.separator {
    color: #64748b;
    margin: 0 1rem;
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section Responsive */
@media (max-width: 991px) {
    .contact-section .section-title {
        font-size: 2.5rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .location-title {
        font-size: 1.3rem;
    }
    
    .location-address {
        font-size: 1rem;
    }
    
    .map-container {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section .section-title {
        font-size: 2rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 1rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .location-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .location-title {
        font-size: 1.2rem;
    }
    
    .location-address {
        font-size: 0.95rem;
    }
    
    .map-container {
        height: 200px;
    }
    .container
    {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-section .section-title {
        font-size: 1.75rem;
    }
    
    .location-card {
        padding: 1rem;
    }
    
    .location-title {
        font-size: 1.1rem;
    }
    
    .location-address {
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 180px;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .separator {
        margin: 0 0.5rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

/* Mobile Fixed CTA Buttons */
.mobile-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(100%);
}

.mobile-fixed-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-cta-strip {
    background: linear-gradient(135deg, #0d1b2a, #162236);
    padding: 12px 16px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-btn {
    flex: 1;
    background: linear-gradient(135deg, #3fe0a0, #4fc3b0);
    color: #0d1b2a;
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 48px;
}

.mobile-cta-btn.call-btn {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.mobile-cta-btn.assessment-btn {
    background: linear-gradient(135deg, #3fe0a0, #4fc3b0);
    color: #0d1b2a;
}

.mobile-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-cta-btn i {
    font-size: 14px;
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-fixed-cta {
        display: none !important;
    }
}

/* Adjust for small mobile screens */
@media (max-width: 380px) {
    .mobile-cta-btn {
        font-size: 12px;
        padding: 12px 8px;
        gap: 4px;
    }
    
    .mobile-cta-btn i {
        font-size: 12px;
    }
    
    .mobile-cta-strip {
        padding: 10px 12px;
        gap: 8px;
    }
}
