/* CSS Variables - Matching Image Colors */
:root {
    --background: linear-gradient(to bottom, #e0f2fe, #f8fcfc, white);
    --background-solid: #e0f2fe;
    --foreground: #023f52;
    --foreground-dark: #00ae97;
    --foreground-light: #023f52;
    --brand-primary: #00ae97;
    --brand-teal: #14b8a6;
    --brand-accent: #023f52;
    --neutral-soft: #e0f2fe;
    --neutral-mid: #00ae97;
    --font-inter: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font-poppins: 'Poppins', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to bottom, #e0f2fe, #f8fcfc, white);
    background-attachment: fixed;
    color: var(--foreground);
    font-family: var(--font-inter);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-poppins);
    font-weight: 700;
    line-height: 1.2;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
    color: #023f52;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #023f52;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #00ae97;
    max-width: 42rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* How It Works Section Specific Animations */
.section-white:has(.steps-grid-new) .section-header {
    opacity: 0;
    transform: translateY(20px);
    animation: sectionHeaderFadeIn 0.8s ease-out forwards;
}

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

.section-white:has(.steps-grid-new) .section-title {
    animation: titleSlideIn 0.8s ease-out 0.2s forwards;
}

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

.section-white:has(.steps-grid-new) .section-subtitle {
    animation: subtitleFadeIn 0.8s ease-out 0.4s forwards;
}

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

/* Services Section Animations */
#services .section-header {
    opacity: 0;
    transform: translateY(20px);
    animation: sectionHeaderFadeIn 0.8s ease-out forwards;
}

#services .section-title {
    animation: titleSlideIn 0.8s ease-out 0.2s forwards;
}

#services .section-subtitle {
    animation: subtitleFadeIn 0.8s ease-out 0.4s forwards;
}

#services .service-card-new {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: serviceCardFadeIn 0.6s ease-out forwards;
    animation-delay: calc(var(--service-index, 0) * 0.1s);
}

#services .service-card-new.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

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

#services .service-icon-new {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#services .service-card-new:hover .service-icon-new {
    transform: rotate(5deg) scale(1.1);
}

#services .service-card-new:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.2);
}

/* Modalities Section Animations */
.section-gray .section-header {
    opacity: 0;
    transform: translateY(20px);
    animation: sectionHeaderFadeIn 0.8s ease-out forwards;
}

.section-gray .section-title {
    animation: titleSlideIn 0.8s ease-out 0.2s forwards;
}

.section-gray .section-subtitle {
    animation: subtitleFadeIn 0.8s ease-out 0.4s forwards;
}

.modality-card {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    animation: modalityCardFadeIn 0.5s ease-out forwards;
    animation-delay: calc(var(--modality-index, 0) * 0.08s);
}

.modality-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes modalityCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modality-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.15);
}

.modality-icon {
    transition: all 0.3s ease;
}

.modality-card:hover .modality-icon {
    transform: scale(1.2) rotate(5deg);
}

.modalities-note {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

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

/* Why Quick Physio Section Animations */
.why-grid {
    opacity: 0;
    animation: fadeInGrid 0.8s ease-out forwards;
}

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

.why-item {
    opacity: 0;
    transform: translateY(30px);
    animation: whyItemFadeIn 0.6s ease-out forwards;
    animation-delay: calc(var(--why-index, 0) * 0.15s);
}

.why-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.why-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-item:hover .why-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(20, 184, 166, 0.2);
}

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

.why-title {
    transition: color 0.3s ease;
}

.why-item:hover .why-title {
    color: #14b8a6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #00ae97;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 10px 24px rgba(30, 64, 175, 0.3);
    background-color: #023f52;
}

.btn-accent {
    background-color: var(--brand-accent);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-accent:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 10px 24px rgba(255, 122, 0, 0.22);
}

.btn-outline {
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #00ae97;
    background: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background-color: #f9fafb;
}

/* Cards */
.card-glass {
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
}

.card-glass:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Sections */
.section {
    padding: 5rem 0;
}

@media (min-width: 640px) {
    .section {
        padding: 6rem 0;
    }
}

.section-white {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.section-gray {
    background: rgba(224, 242, 254, 0.5);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    background: linear-gradient(to bottom right, #e0f2fe, #f8fcfc, white);
   
    padding-bottom: 6rem;
}

@media (min-width: 640px) {
    .hero-section {
       padding-top: 3rem;
        padding-bottom: 7rem;
    }
}



.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-blob-1 {
    width: 16rem;
    height: 16rem;
    background: #bfdbfe;
    top: -6rem;
    left: -4rem;
    animation: float 3s ease-in-out infinite;
}

.hero-blob-2 {
    width: 16rem;
    height: 16rem;
    background: #a5f3fc;
    bottom: -5rem;
    right: -4rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.hero-content {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background: rgba(37, 99, 235, 0.05);
    color: #00ae97;
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-badge {
        font-size: 0.875rem;
    }
}

.badge-dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.4);
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: #00ae97;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--brand-accent);
    margin-bottom: 1.5rem;
}

.hero-rating .stars {
    font-size: 1.125rem;
}

.hero-rating .divider {
    color: #d1d5db;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-note {
    font-size: 0.875rem;
    color: #00ae97;
    text-align: center;
    margin-top: 1rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .hero-features {
        font-size: 0.875rem;
        gap: 1rem;
    }
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    color: #00ae97;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.feature-badge:hover {
    transform: scale(1.05);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    position: relative;
    padding: 2rem;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.step-card:hover .step-number {
    background: #e5e7eb;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #023f52;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.step-card:hover .step-title {
    color: #00ae97;
}

.step-desc {
    color: #00ae97;
    transition: color 0.3s ease;
}

.step-card:hover .step-desc {
    color: #00ae97;
}

.step-connector {
    display: none;
}

@media (min-width: 1024px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: linear-gradient(to right, #d1d5db, transparent);
        transform: translateY(-50%);
    }
}

@media (max-width: 1023px) {
    .step-connector {
        display: none !important;
    }
}

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

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 10px 25px rgba(14, 165, 164, 0.15);
    transform: translateY(-4px);
}

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


.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #023f52;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #00ae97;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #00ae97;
    transition: color 0.3s ease;
}

.service-card:hover .service-item {
    color: #00ae97;
}

.service-bullet {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: var(--brand-primary);
    margin-top: 0.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-card:hover .service-bullet {
    transform: scale(1.25);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 10px 25px rgba(14, 165, 164, 0.15);
    transform: translateY(-4px);
}

.pricing-popular {
    border: 2px solid var(--brand-accent);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.2);
    transform: scale(1.02);
}

.pricing-popular:hover {
    box-shadow: 0 12px 30px rgba(255, 122, 0, 0.25);
    transform: translateY(-4px) scale(1.02);
}

@media (max-width: 1023px) {
    .pricing-popular {
        transform: scale(1);
    }
    
    .pricing-popular:hover {
        transform: translateY(-4px);
    }
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: linear-gradient(135deg, var(--brand-accent), #ef4444);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1.25rem;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #023f52;
    margin-bottom: 0.5rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.pricing-total {
    font-size: 2.25rem;
    font-weight: 700;
    color: #023f52;
    margin-bottom: 0.25rem;
}

.pricing-label {
    font-size: 0.875rem;
    color: #00ae97;
}

.pricing-savings {
    font-size: 0.875rem;
    font-weight: 500;
    color: #16a34a;
    margin-top: 0.25rem;
}

.pricing-price-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.pricing-table {
    margin-bottom: 2rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    overflow: hidden;
}

.pricing-table-inner {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table-inner tbody tr {
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.pricing-table-inner tbody tr:last-child {
    border-bottom: none;
}

.pricing-table-inner td {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    vertical-align: middle;
}

@media (max-width: 639px) {
    .pricing-table-inner td {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
    
    .pricing-table-label {
        width: 55%;
    }
}

.pricing-table-label {
    color: #00ae97;
    font-weight: 500;
    width: 60%;
}

.pricing-table-value {
    color: #023f52;
    font-weight: 600;
    text-align: right;
}

.pricing-table-total {
    background: #ffffff;
    border-top: 2px solid #e5e7eb;
}

.pricing-table-total .pricing-table-label {
    color: #023f52;
    font-weight: 600;
}

.pricing-table-total-value {
    color: var(--brand-primary);
    font-size: 1.125rem;
    font-weight: 700;
}

.pricing-cta {
    width: 100%;
    margin-top: auto;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
}

.pricing-note p {
    font-size: 0.875rem;
    color: #00ae97;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #023f52;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    margin-top: auto;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #00ae97, #14b8a6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-name {
    font-weight: 600;
    color: #023f52;
}

.testimonial-place {
    font-size: 0.875rem;
    color: #00ae97;
}

.testimonial-treatment {
    font-size: 0.75rem;
    color: #00ae97;
}

/* Booking Section */
.booking-card {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
}

.booking-form-wrapper {
    max-width: 28rem;
    margin: 0 auto 1rem;
}

.booking-note {
    font-size: 0.875rem;
    color: #00ae97;
    margin-top: 1rem;
    text-align: center;
}

.booking-info {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 0.875rem;
    color: #00ae97;
}

@media (min-width: 640px) {
    .booking-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.booking-info-title {
    font-weight: 600;
    color: #023f52;
    margin-bottom: 0.25rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: #00ae97;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
    border-color: var(--brand-primary);
}

.form-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-error {
    font-size: 0.875rem;
    color: #dc2626;
    margin-top: 0.5rem;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(0, 174, 151, 0.15));
    border-radius: 1rem;
    border: 2px solid rgba(20, 184, 166, 0.3);
}

.form-success::before {
    content: '✓';
    display: block;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: #14b8a6;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 4rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #023f52;
    margin-bottom: 0.75rem;
}

.form-success p {
    font-size: 1rem;
    color: #00ae97;
    line-height: 1.6;
    margin: 0;
}

.form-note {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 0.5rem;
}

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

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: rise 600ms ease-out forwards;
}

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

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

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

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(224, 242, 254, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 1px 2px rgba(30, 64, 175, 0.1);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .navbar-container {
        padding: 0 1.5rem;
    }
}

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

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.navbar-logo-icon {
    position: relative;
}

.navbar-logo-q {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    font-weight: 900;
    font-size: 1.5rem;
    font-family: var(--font-poppins);
    background: transparent;
    position: relative;
    transition: transform 0.3s ease;
}

.navbar-logo-q::before {
    content: 'Q';
    position: absolute;
    color: #14b8a6;
    font-weight: 900;
}

.navbar-logo:hover .navbar-logo-q {
    transform: scale(1.05);
}

.navbar-logo-dot {
    position: absolute;
    top: 0.125rem;
    right: 0.125rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #14b8a6;
    border: none;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.125rem;
    color: #023f52;
    font-family: var(--font-poppins);
    letter-spacing: 0.02em;
}

.navbar-tagline {
    font-size: 0.75rem;
    color: #00ae97;
    margin-top: -0.25rem;
}

.navbar-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .navbar-nav {
        display: flex;
    }
}

.navbar-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #00ae97;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar-link:hover {
    color: #023f52;
}

.navbar-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .navbar-cta {
        display: flex;
    }
}

.navbar-phone {
    font-size: 0.875rem;
    font-weight: 500;
    color: #00ae97;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar-phone:hover {
    color: #023f52;
}

.navbar-menu-btn {
    display: block;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

@media (min-width: 1024px) {
    .navbar-menu-btn {
        display: none;
    }
}

.navbar-menu-btn:hover {
    background-color: #f3f4f6;
}

.navbar-menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navbar-menu-line {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: #4b5563;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.navbar-menu-line:first-child {
    margin-top: 0;
}

.navbar-menu-btn.active .navbar-menu-line:nth-child(1) {
    transform: rotate(45deg) translateY(4px);
}

.navbar-menu-btn.active .navbar-menu-line:nth-child(2) {
    opacity: 0;
}

.navbar-menu-btn.active .navbar-menu-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-4px);
}

.navbar-mobile {
    display: block;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

@media (min-width: 1024px) {
    .navbar-mobile {
        display: none;
    }
}

.navbar-mobile-content {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.navbar-mobile-link {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #00ae97;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.navbar-mobile-link:hover {
    color: #023f52;
}

.navbar-mobile-cta {
    padding-top: 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.navbar-mobile-phone {
    display: block;
    font-size: 0.875rem;
    color: #00ae97;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    font-weight: 600;
    color: #023f52;
}

.footer-text {
    font-size: 0.875rem;
    color: #00ae97;
    margin-top: 0.5rem;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 0.75rem;
    color: #00ae97;
}

/* Mobile Navbar Actions */
.navbar-mobile-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 767px) {
    .navbar-mobile-actions {
        display: flex;
    }
}

.navbar-mobile-call-btn,
.navbar-mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-mobile-call-btn {
    background-color: #023f52;
    color: white;
}

.navbar-mobile-call-btn:active {
    background-color: #1f2937;
    transform: scale(0.95);
}

.navbar-mobile-whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.navbar-mobile-whatsapp-btn:active {
    background-color: #20ba5a;
    transform: scale(0.95);
}

.navbar-mobile-call-btn svg,
.navbar-mobile-whatsapp-btn svg {
    width: 18px;
    height: 18px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    display: flex;
    justify-content: center;
    padding: 0.875rem 1rem;
    background: rgba(224, 242, 254, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 -4px 20px rgba(30, 64, 175, 0.15);
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

.sticky-cta-content {
    width: 100%;
    max-width: 100%;
}

.sticky-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.sticky-cta-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.25);
}

.sticky-cta-btn-primary {
    background-color: var(--brand-accent);
    color: white;
}

/* Lead Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-form .form-header {
    display: none;
}

.popup-form .form-body {
    padding: 1.5rem;
}

.popup-form .form-footer {
    padding: 1.5rem;
}

.popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}

.popup-backdrop.closing {
    opacity: 0;
}

.popup-content {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    max-width: 28rem;
    width: 100%;
    transform: scale(1);
    opacity: 1;
    transition: all 0.3s ease;
}

.popup-content.closing {
    transform: scale(0.95);
    opacity: 0;
}

.popup-close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ae97;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s ease;
}

.popup-close:hover {
    color: #023f52;
}

.popup-header {
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
}


.popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #023f52;
    margin-bottom: 0.5rem;
}

.popup-subtitle {
    color: #00ae97;
    font-size: 0.875rem;
}

.popup-body {
    padding: 0 1.5rem 1.5rem;
}

.popup-footer {
    padding: 0 1.5rem 1.5rem;
}

.popup-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #00ae97;
}

.popup-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.popup-feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.popup-feature-dot-green {
    background: #22c55e;
}

.popup-feature-dot-blue {
    background: #00ae97;
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.booking-modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 20px 25px rgba(30, 64, 175, 0.25);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    z-index: 101;
}

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

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

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ae97;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    font-size: 1.5rem;
    line-height: 1;
}

.booking-modal-close:hover {
    background: #e5e7eb;
    color: #023f52;
}

.booking-modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.booking-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #023f52;
    margin-bottom: 0.5rem;
    font-family: var(--font-poppins);
}

.booking-modal-subtitle {
    color: #00ae97;
    font-size: 0.9375rem;
}

.booking-modal-form {
    padding: 1.5rem 2rem 2rem;
}

.booking-modal-form .form-section {
    margin-bottom: 1.5rem;
}

.booking-modal-form .form-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #023f52;
    margin-bottom: 1rem;
    font-family: var(--font-poppins);
}

.booking-modal-form .form-group {
    margin-bottom: 1.25rem;
}

.booking-modal-form .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #00ae97;
    margin-bottom: 0.5rem;
}

.booking-modal-form .form-input-modern,
.booking-modal-form .form-select-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.booking-modal-form .form-input-modern:focus,
.booking-modal-form .form-select-modern:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.1);
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
}

.form-checkbox-label:hover {
    background: #f9fafb;
}

.form-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: var(--brand-primary);
}

.form-checkbox-text {
    font-size: 0.9375rem;
    color: #00ae97;
    line-height: 1.5;
}

.booking-modal-form .form-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.booking-modal-form .form-note {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: #00ae97;
    text-align: center;
}

.booking-cta-wrapper {
    text-align: center;
    padding: 2rem;
}

.booking-cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #00ae97;
}

/* Mobile Responsive for Booking Modal */
@media (max-width: 768px) {
    .booking-modal-content {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 1rem 1rem 0 0;
        margin-top: auto;
    }
    
    .booking-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .booking-modal-title {
        font-size: 1.5rem;
    }
    
    .booking-modal-subtitle {
        font-size: 0.875rem;
    }
    
    .booking-modal-form {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    
    .booking-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 2rem;
        height: 2rem;
        font-size: 1.25rem;
    }
}

/* Loading State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

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

/* Utility Classes */
.w-full {
    width: 100%;
}

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

.mt-2 {
    margin-top: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* Form Focus States */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
    border-color: var(--brand-primary);
}

/* Popup Active State */
.popup-overlay.active .popup-content {
    animation: scaleIn 0.3s ease-out;
}

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

/* Enhanced Hero Styles */
.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--brand-primary);
}

.hero-blob-3 {
    width: 12rem;
    height: 12rem;
    background: #fbbf24;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    gap: 0.5rem;
}

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

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


/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

/* Enhanced Step Cards */
.step-card-inner {
    position: relative;
    z-index: 1;
}

.step-connector svg {
    display: none;
}

@media (min-width: 1024px) {
    .step-connector svg {
        display: block;
    }
}

/* Enhanced Service Cards */
.service-card-header {
    margin-bottom: 1.5rem;
    padding-left: 0.75rem;
    padding-top: 0.25rem;
}

.service-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.service-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--brand-accent);
    gap: 0.75rem;
}

/* Enhanced Pricing */
.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-discount {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-top: 0.5rem;
}

.pricing-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
    margin: 1rem 0;
}

.pricing-total-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.pricing-features {
    margin: 0 0 2rem;
    text-align: left;
}

.pricing-features-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #023f52;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #00ae97;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: var(--brand-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.savings-icon {
    margin-right: 0.25rem;
}

/* Enhanced Testimonials */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--brand-primary);
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
}

/* Modern Form Design */
.contact-form-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.15);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.form-header {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: white;
    padding: 2rem;
    text-align: center;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-poppins);
}

.form-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

.form-body {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #023f52;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f3f4f6;
}

.form-table {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.form-row {
    display: table-row;
}

.form-cell {
    display: table-cell;
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f3f4f6;
}

.form-cell:first-child {
    border-right: 1px solid #f3f4f6;
}

.form-row:last-child .form-cell {
    border-bottom: none;
}

.form-cell-label {
    width: 35%;
    background: #f9fafb;
    font-weight: 500;
}

.form-cell-input {
    width: 65%;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #00ae97;
    margin-bottom: 0.5rem;
}

.required {
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-input-modern,
.form-select-modern {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-family: var(--font-inter);
}

.form-input-modern:focus,
.form-select-modern:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.1);
    background: #fafafa;
}

.form-select-modern {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234b5563' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-footer {
    padding: 2rem;
    background: #f9fafb;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}


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

.btn-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #00ae97;
    text-align: center;
}

/* Enhanced Booking Section */
.booking-wrapper {
    max-width: 64rem;
    margin: 0 auto;
}

.booking-content {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-form-container {
    margin-bottom: 2rem;
}

.booking-info {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

@media (min-width: 640px) {
    .booking-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.booking-info-item {
    text-align: center;
}


.booking-info-title {
    font-weight: 600;
    color: #023f52;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.booking-info-text {
    font-size: 0.875rem;
    color: #00ae97;
}

/* Form Group Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Responsive Form */
@media (max-width: 767px) {
    .form-header {
        padding: 1.5rem;
    }
    
    .form-body {
        padding: 1.5rem;
    }
    
    .form-footer {
        padding: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #023f52;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(224, 242, 254, 0.5);
    color: var(--brand-primary);
}

.faq-question-text {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--brand-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(14, 165, 164, 0.1);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: #00ae97;
    line-height: 1.75;
    font-size: 0.9375rem;
    margin: 0;
    padding-top: 0.75rem;
}

/* Responsive Utilities */
@media (max-width: 639px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .hero-section {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }
    
    .hero-image-new {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-image-container {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 4/3 !important;
        max-height: 350px;
    }
    
    .hero-main-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center top;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-rating {
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-badge {
        font-size: 0.6875rem;
        padding: 0.375rem 0.875rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.25rem;
    }
    
    .form-subtitle {
        font-size: 0.8125rem;
    }
    
    .form-section-title {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .step-desc {
        font-size: 0.875rem;
    }
    
    .service-card {
        padding: 1.5rem;
        border-width: 1.5px;
    }
    
    .service-card-header {
        padding-left: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    .service-list {
        gap: 0.5rem;
    }
    
    .service-item {
        font-size: 0.875rem;
    }
    
    .service-footer {
        padding-top: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .navbar-mobile-actions {
        gap: 0.625rem;
    }
    
    .navbar-mobile-call-btn,
    .navbar-mobile-whatsapp-btn {
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 0.5rem;
    }
    
    .navbar-mobile-call-btn svg,
    .navbar-mobile-whatsapp-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .sticky-cta {
        padding: 0.75rem 1rem;
    }
    
    .sticky-cta-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        border-radius: 0.625rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        border-width: 1.5px;
    }
    
    .pricing-popular {
        border-width: 2px;
    }
    
    .pricing-badge {
        font-size: 0.6875rem;
        padding: 0.25rem 1rem;
        top: -0.625rem;
    }
    
    .pricing-total {
        font-size: 1.875rem;
    }
    
    .pricing-name {
        font-size: 1.25rem;
    }
    
    .pricing-price-section {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .pricing-table {
        margin-bottom: 1.5rem;
    }
    
    .pricing-table-inner td {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
    
    .pricing-table-total-value {
        font-size: 1rem;
    }
    
    .pricing-features {
        margin: 0 0 1.5rem;
    }
    
    .pricing-features-title {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-features {
        gap: 0.5rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .steps-grid {
        gap: 1.5rem;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .booking-info {
        gap: 1.25rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .booking-info-title {
        font-size: 0.9375rem;
    }
    
    .booking-info-text {
        font-size: 0.8125rem;
    }
    
    .footer-container {
        padding: 2rem 1rem;
    }
    
    .footer-grid {
        gap: 1.25rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-text {
        font-size: 0.8125rem;
    }
    
    .faq-container {
        max-width: 100%;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.875rem;
    }
    
    .faq-icon {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 1.25rem;
    }
}

/* ============================================
   AI Assessment Section Styles
   ============================================ */

.ai-assessment-section {
    position: relative;
}

.ai-assessment-content {
    max-width: 64rem;
    margin: 0 auto;
}

/* AI Features Grid */
.ai-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .ai-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ai-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ai-feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.ai-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.ai-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.ai-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #023f52;
    margin-bottom: 0.75rem;
}

.ai-feature-card p {
    font-size: 0.875rem;
    color: #00ae97;
    line-height: 1.6;
}

/* AI CTA Wrapper */
.ai-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.ai-assessment-btn {
    margin-bottom: 1rem;
}

.ai-note {
    font-size: 0.875rem;
    color: #00ae97;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.note-icon {
    font-size: 1rem;
}

/* ============================================
   AI Modal Styles
   ============================================ */

.ai-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.ai-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.ai-modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 20px 25px rgba(30, 64, 175, 0.2);
    max-width: 32rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    margin: auto;
}

.ai-modal-fullscreen {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
}

.ai-modal-fullscreen .ai-modal-content {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
}

.ai-modal-step {
    display: none;
}

.ai-modal-step[style*="display: block"] {
    display: block;
}

.ai-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
}

.ai-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #023f52;
    margin: 0;
}

.ai-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    color: #00ae97;
    transition: all 0.2s ease;
    z-index: 10;
}

.ai-modal-close:hover {
    background: #e5e7eb;
    color: #023f52;
}

.ai-modal-body {
    padding: 1.5rem;
}

/* Mobile Check Step */
.mobile-check-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.mobile-check-message {
    font-size: 1.125rem;
    color: #00ae97;
    text-align: center;
    margin-bottom: 2rem;
}

.mobile-check-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.check-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.check-icon {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 1.125rem;
}

/* Pain Selection Step */
.pain-selection-subtitle {
    font-size: 0.9375rem;
    color: #00ae97;
    text-align: center;
    margin-bottom: 2rem;
}

.pain-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .pain-options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pain-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.75rem;
}

.pain-option:hover {
    border-color: var(--brand-primary);
    background: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 164, 0.15);
}

.pain-option.selected {
    border-color: var(--brand-primary);
    background: #f0fdfa;
    box-shadow: 0 4px 12px rgba(14, 165, 164, 0.2);
}

.pain-icon {
    font-size: 2rem;
}

.pain-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #00ae97;
}

.pain-option.selected .pain-label {
    color: var(--brand-primary);
}

/* Phone Position Step */
.phone-position-guide {
    text-align: center;
}

.phone-icon-container {
    margin-bottom: 2rem;
}

.phone-icon {
    font-size: 4rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.phone-status {
    margin-bottom: 2rem;
}

.phone-status-text {
    font-size: 1rem;
    color: #00ae97;
    margin-bottom: 1rem;
}

.phone-status-indicator {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tilt-indicator {
    font-size: 0.875rem;
    color: #00ae97;
    padding: 0.5rem 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.phone-instructions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.instruction-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.phone-feedback {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
}

.phone-feedback-success {
    background: #d1fae5;
    color: #065f46;
}

.phone-feedback-warning {
    background: #fef3c7;
    color: #92400e;
}

/* Posture Setup Step */
.posture-instructions {
    margin-bottom: 2rem;
}

.posture-instructions h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #023f52;
    margin-bottom: 1.5rem;
    text-align: center;
}

.posture-instructions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border-left: 3px solid var(--brand-primary);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    color: #00ae97;
    line-height: 1.6;
}

.posture-setup-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

/* Pose Detection Step */
.pose-detection-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #111827;
    color: white;
}

.pose-detection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pose-detection-header h2 {
    color: white;
    font-size: 1.25rem;
    margin: 0;
}

.pose-detection-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    overflow-y: auto;
}

.video-container-ai {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #000;
}

.video-container-ai video {
    width: 100%;
    height: auto;
    display: block;
}

.video-container-ai canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pose-controls-ai {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.info-panel-ai {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .info-panel-ai {
        grid-template-columns: repeat(2, 1fr);
    }
}

.problems-section-ai,
.feedback-section-ai {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.problems-section-ai h3,
.feedback-section-ai h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.problems-list-ai {
    max-height: 300px;
    overflow-y: auto;
}

.problem-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-left: 3px solid #6b7280;
}

.problem-item.problem-detected {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.problem-item.problem-ok {
    border-left-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

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

.problem-header h4 {
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
}

.problem-status {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.problem-status.problem-detected {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.problem-status.problem-ok {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.problem-description,
.fix-posture {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.angle-range {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.no-pose {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 1rem;
}

.status-message-ai {
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.status-message-ai p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.status-message-ai.status-waiting {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.status-message-ai.status-good {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.status-message-ai.status-warning {
    background: rgba(251, 191, 36, 0.2);
    color: #fcd34d;
}

.status-message-ai.status-bad {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* Results/Completion Step */
.results-container {
    text-align: center;
}

.results-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.results-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #023f52;
    margin-bottom: 2rem;
}

.results-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.75rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: 0.9375rem;
    color: #00ae97;
    font-weight: 500;
}

.summary-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.detected-problems-results {
    text-align: left;
    margin-bottom: 2rem;
}

.detected-problems-results h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #023f52;
    margin-bottom: 1rem;
}

.results-problems-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-problem-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 0.75rem;
    border-left: 3px solid #f59e0b;
}

.problem-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-details h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.problem-details p {
    font-size: 0.875rem;
    color: #78350f;
    line-height: 1.6;
    margin: 0;
}

.no-problems {
    padding: 2rem;
    background: #d1fae5;
    border-radius: 0.75rem;
    color: #065f46;
    font-weight: 500;
}

.recommendations-section {
    text-align: left;
    margin-bottom: 2rem;
}

.recommendations-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #023f52;
    margin-bottom: 1rem;
}

.recommendations-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recommendation-item {
    padding: 1rem;
    background: #eff6ff;
    border-radius: 0.75rem;
    border-left: 3px solid var(--brand-primary);
}

.recommendation-item h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #00ae97;
    margin-bottom: 0.5rem;
}

.recommendation-item p {
    font-size: 0.875rem;
    color: #023f52;
    line-height: 1.6;
    margin: 0;
}

.results-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .results-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* AI Assistant Chat Modal */
.ai-assistant-chat {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 320px;
    max-height: 500px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.25);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--brand-primary);
}

.ai-assistant-chat.minimized {
    max-height: 60px;
    overflow: hidden;
}

.ai-assistant-header {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.ai-assistant-avatar {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-assistant-info {
    flex: 1;
}

.ai-assistant-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: white;
}

.ai-assistant-info p {
    font-size: 0.75rem;
    margin: 0;
    opacity: 0.9;
}

.ai-assistant-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.listening-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    color: white;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.ai-assistant-minimize {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.ai-assistant-minimize:hover {
    background: rgba(255, 255, 255, 0.3);
}

.ai-assistant-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    max-height: 400px;
    background: #f9fafb;
}

.ai-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    animation: slideUp 0.3s ease;
}

.ai-message-user {
    flex-direction: row-reverse;
}

.ai-message-avatar {
    font-size: 1.5rem;
    width: 2rem;
    height: 2rem;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-message-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    line-height: 1.6;
    color: #00ae97;
}

.ai-message-user .ai-message-content {
    background: var(--brand-primary);
    color: white;
}

.message-text {
    margin-bottom: 0.5rem;
}

.message-text:last-child {
    margin-bottom: 0;
}

.message-line {
    margin-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.8125rem;
}

.ai-assistant-typing {
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.typing-indicator {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.typing-indicator span {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* AI Assistant Input */
.ai-assistant-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.ai-mic-button {
    background: var(--brand-primary);
    border: none;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ai-mic-button:hover {
    background: var(--brand-accent);
    transform: scale(1.1);
}

.ai-mic-button.listening {
    background: #ef4444;
    animation: pulse-button 1.5s infinite;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

.ai-mic-button .mic-icon {
    display: block;
}

#ai-text-input {
    flex: 1;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s ease;
}

#ai-text-input:focus {
    border-color: var(--brand-primary);
}

.ai-send-button {
    background: var(--brand-primary);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.ai-send-button:hover {
    background: var(--brand-accent);
}

@media (max-width: 639px) {
    .ai-assistant-chat {
        width: calc(100% - 2rem);
        right: 1rem;
        left: 1rem;
        bottom: 1rem;
        max-height: 400px;
    }
    
    .ai-assistant-messages {
        max-height: 300px;
    }
}

/* Reference Posture Matching Step */
.reference-posture-guide {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.reference-posture-image {
    text-align: center;
    margin-bottom: 1rem;
}

.reference-posture-diagram {
    display: inline-block;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.posture-silhouette {
    position: relative;
    width: 120px;
    height: 300px;
    margin: 0 auto;
}

.silhouette-head {
    width: 50px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50% 50% 40% 40%;
    margin: 0 auto 10px;
}

.silhouette-body {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.silhouette-shoulder {
    width: 80px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.silhouette-torso {
    width: 40px;
    height: 100px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    margin: 0 auto;
}

.silhouette-arms {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 10px;
}

.silhouette-arm-left,
.silhouette-arm-right {
    width: 8px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
}

.silhouette-legs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.silhouette-leg-left,
.silhouette-leg-right {
    width: 20px;
    height: 100px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.reference-posture-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.video-container-reference {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #000;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.video-container-reference video {
    width: 100%;
    height: auto;
    display: block;
}

.video-container-reference canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pose-match-indicator {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.match-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.match-icon {
    font-size: 1.25rem;
}

.match-status.match-success {
    background: rgba(34, 197, 94, 0.8);
}

.match-status.match-warning {
    background: rgba(251, 191, 36, 0.8);
}

.match-status.match-waiting {
    background: rgba(59, 130, 246, 0.8);
}

.match-status.match-error {
    background: rgba(239, 68, 68, 0.8);
}

.step-by-step-guide {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.step-by-step-guide h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-instructions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.step-instruction-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.step-instruction-item.step-completed {
    background: rgba(34, 197, 94, 0.2);
    border-left-color: #22c55e;
}

.step-instruction-item.step-current {
    background: rgba(59, 130, 246, 0.2);
    border-left-color: #00ae97;
    transform: scale(1.02);
}

.step-status-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-instruction-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    flex: 1;
}

.step-instruction-item.step-completed .step-instruction-text {
    color: #86efac;
}

.step-instruction-item.step-current .step-instruction-text {
    color: #93c5fd;
    font-weight: 600;
}

.current-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    border: 2px solid #00ae97;
    margin-top: 1rem;
}

.current-step-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.current-step-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    flex: 1;
}

.reference-pose-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pose-match-progress {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ae97, #22c55e);
    border-radius: 6px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
}

.progress-text span {
    color: #93c5fd;
    font-weight: 700;
    font-size: 1.125rem;
}

.pose-matched-success {
    text-align: center;
    padding: 2rem;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 0.75rem;
    border: 2px solid #22c55e;
    backdrop-filter: blur(10px);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pose-matched-success h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pose-matched-success p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Responsive Modal */
@media (max-width: 639px) {
    .ai-modal-content {
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .ai-modal-body {
        padding: 1rem;
    }
    
    .ai-modal-header {
        padding: 1rem;
    }
    
    .pain-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .posture-setup-actions {
        flex-direction: column;
    }
    
    .pose-detection-body {
        padding: 1rem;
    }
    
    .info-panel-ai {
        grid-template-columns: 1fr;
    }
    
    .reference-posture-guide {
        padding: 1rem;
    }
    
    .posture-silhouette {
        width: 80px;
        height: 200px;
    }
    
    .step-by-step-guide {
        padding: 1rem;
    }
    
    .current-step {
        padding: 0.75rem 1rem;
    }
}

/* ============================================
   New Modern Design Styles
   ============================================ */

/* Material Symbols Font */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* New Hero Section */
.hero-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-layout-new {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-layout-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image-new {
        order: -1;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-layout-new {
        gap: 1.5rem;
    }
    
    .hero-image-new {
        width: 100%;
        margin: 0 auto;
    }
    
    .hero-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-image-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

.hero-content-new {
    max-width: 100%;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(20, 184, 166, 0.1);
    color: #023f52;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge-dot-new {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #14b8a6;
    animation: pulse 2s infinite;
}

.hero-title-new {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    color: #023f52;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title-new {
        font-size: 2rem;
        line-height: 1.3;
    }
}

.pain-question {
    color: #023f52;
    display: inline-block;
}

.rotating-pain-text {
    position: relative;
    display: inline-block;
    min-width: 220px;
    height: 1.2em;
    vertical-align: bottom;
    color: #00ae97;
    font-weight: 900;
    text-align: left;
}

@media (max-width: 768px) {
    .rotating-pain-text {
        min-width: 180px;
        display: inline-block;
        margin-left: 0.5rem;
    }
}

.pain-word {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    pointer-events: none;
}

.pain-word.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    position: relative;
}

.pain-word.exit {
    opacity: 0;
    transform: translateY(-30px) scale(0.8);
}

.hero-title-accent-new {
    background: linear-gradient(135deg, #00ae97, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 900;
}

.hero-subtitle-new {
    font-size: 1.125rem;
    color: #00ae97;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-cta-new {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #00ae97;
}

.hero-avatars {
    display: flex;
    gap: -0.5rem;
}

.hero-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid white;
    background: linear-gradient(135deg, #00ae97, #00ae97);
    margin-left: -0.5rem;
}

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

.hero-image-new {
    position: relative;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    overflow: visible;
    background: transparent;
}

.hero-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 1rem;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .hero-image-container {
        aspect-ratio: 4/5;
        max-width: 600px;
    }
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-image-container {
        aspect-ratio: 4/3;
        max-height: 400px;
    }
    
    .hero-main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    
    .hero-image-wrapper {
        overflow: hidden;
    }
}

.hero-image-wrapper:hover .hero-main-image {
    transform: scale(1.02);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
  
    pointer-events: none;
}

.hero-image-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(2, 63, 82, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #023f52;
    z-index: 10;
    border: 1px solid rgba(0, 174, 151, 0.2);
}

.hero-image-badge .material-symbols-outlined {
    color: #ef4444;
    font-size: 1.25rem;
}

/* Fallback if image doesn't load */
.hero-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    z-index: -1;
}

/* New Services Grid */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card-new {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 174, 151, 0.3);
    border-radius: 1rem;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-new:hover {
    border-color: #14b8a6;
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.15);
    transform: translateY(-4px);
}

/* Service Image Wrapper */
.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(0, 174, 151, 0.25));
    border-radius: 1rem 1rem 0 0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-card-new:hover .service-image {
    transform: scale(1.1);
}

.service-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(0, 174, 151, 0.3));
    border-radius: 1rem 1rem 0 0;
}

.service-image-fallback .service-icon-new {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    margin: 0;
}

.service-image-fallback .service-icon-new .material-symbols-outlined {
    font-size: 3rem;
    color: #14b8a6;
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-new:hover .service-image-overlay {
    opacity: 1;
}

/* Service Content */
.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-new {
    width: 3rem;
    height: 3rem;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-icon-top {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
    margin: 0;
}

.service-card-new:hover .service-icon-new {
    background: #14b8a6;
    color: white;
}

.service-card-new:hover .service-icon-top {
    background: #14b8a6;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-icon-new .material-symbols-outlined {
    font-size: 2rem;
}

.service-title-new {
    font-size: 1.25rem;
    font-weight: 700;
    color: #023f52;
    margin-bottom: 0.5rem;
}

.service-desc-new {
    font-size: 0.875rem;
    color: #00ae97;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.service-link-new {
    color: #14b8a6;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.service-link-new:hover {
    gap: 0.5rem;
}

/* Modalities Grid */
.modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.modality-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 174, 151, 0.3);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.modality-icon {
    color: #14b8a6;
    margin-bottom: 0.75rem;
}

.modality-icon .material-symbols-outlined {
    font-size: 3rem;
}

.modality-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #023f52;
    margin-bottom: 0.25rem;
}

.modality-desc {
    font-size: 0.75rem;
    color: #00ae97;
}

.modalities-note {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    max-width: 42rem;
    margin: 0 auto;
}

.modalities-note .material-symbols-outlined {
    color: #00ae97;
    margin-top: 0.125rem;
}

.modalities-note p {
    font-size: 0.875rem;
    color: #023f52;
    margin: 0;
}

.modalities-note strong {
    color: #023f52;
}

/* Why Quick Physio Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 1rem;
}

.why-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    margin: 0 auto 1rem;
}

.why-icon .material-symbols-outlined {
    font-size: 2rem;
}

.why-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #023f52;
    margin-bottom: 0.5rem;
}

.why-desc {
    font-size: 0.875rem;
    color: #00ae97;
    line-height: 1.6;
}

/* Pricing Section New Design */
.pricing-section-new {
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.5), rgba(255, 255, 255, 0.8));
    position: relative;
    overflow: hidden;
}

.pricing-section-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-inquiry-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .pricing-inquiry-container {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
        align-items: start;
    }
}

/* Pricing Content Side */
.pricing-inquiry-content {
    position: sticky;
    top: 6rem;
}

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

.pricing-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(0, 174, 151, 0.2));
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 9999px;
    color: #14b8a6;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-badge-new .material-symbols-outlined {
    font-size: 1.125rem;
}

.pricing-title-new {
    font-size: 2.5rem;
    font-weight: 900;
    color: #023f52;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .pricing-title-new {
        font-size: 2rem;
    }
}

.pricing-subtitle-new {
    font-size: 1.125rem;
    color: #00ae97;
    line-height: 1.75;
    margin-bottom: 0;
}

/* Pricing Benefits */
.pricing-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pricing-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(20, 184, 166, 0.2);
    transition: all 0.3s ease;
}

.pricing-benefit-item:hover {
    transform: translateX(5px);
    border-color: #14b8a6;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(0, 174, 151, 0.2));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    flex-shrink: 0;
}

.benefit-icon .material-symbols-outlined {
    font-size: 1.5rem;
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #023f52;
    margin-bottom: 0.25rem;
}

.benefit-content p {
    font-size: 0.875rem;
    color: #00ae97;
    margin: 0;
}

/* Pricing Form Side */
.pricing-inquiry-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.2);
    overflow: hidden;
}

.pricing-form-header {
    background: linear-gradient(135deg, #14b8a6, #00ae97);
    color: white;
    padding: 2rem 2.5rem;
    text-align: center;
}

.pricing-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.pricing-form-subtitle {
    font-size: 0.9375rem;
    opacity: 0.95;
    margin: 0;
}

.pricing-inquiry-form {
    padding: 2.5rem;
}

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

@media (min-width: 640px) {
    .pricing-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-group-full {
        grid-column: 1 / -1;
    }
}

.pricing-form-grid .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #023f52;
}

.pricing-form-grid .form-label .material-symbols-outlined {
    font-size: 1.125rem;
    color: #14b8a6;
}

.pricing-form-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(20, 184, 166, 0.2);
}

.pricing-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-submit-btn .material-symbols-outlined {
    font-size: 1.25rem;
}

.pricing-form-footer .form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #00ae97;
    margin-top: 1rem;
}

.pricing-form-footer .form-note .material-symbols-outlined {
    font-size: 1rem;
}

/* Responsive Pricing Section */
@media (max-width: 1023px) {
    .pricing-inquiry-content {
        position: static;
        margin-bottom: 2rem;
    }
    
    .pricing-inquiry-container {
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .pricing-inquiry-form {
        padding: 1.5rem;
    }
    
    .pricing-form-header {
        padding: 1.5rem;
    }
    
    .pricing-form-title {
        font-size: 1.5rem;
    }
    
    .pricing-benefits {
        gap: 1rem;
    }
    
    .pricing-benefit-item {
        padding: 1rem;
    }
}

/* Pricing Section Animations */
.pricing-inquiry-container {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

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

.pricing-benefit-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.pricing-benefit-item:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-benefit-item:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-benefit-item:nth-child(3) {
    animation-delay: 0.3s;
}

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

.pricing-inquiry-wrapper {
    animation: scaleIn 0.6s ease-out 0.2s forwards;
    opacity: 0;
    transform: scale(0.95);
}

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

/* New Pricing Grid */
.pricing-grid-new {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
}

.pricing-card-new {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.1);
}

.pricing-card-new.pricing-popular-new {
    border-color: #14b8a6;
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.2);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .pricing-card-new.pricing-popular-new {
        transform: scale(1);
    }
}

.pricing-badge-new {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #14b8a6;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-name-new {
    font-size: 1.125rem;
    font-weight: 600;
    color: #14b8a6;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.pricing-card-new:not(.pricing-popular-new) .pricing-name-new {
    color: #00ae97;
}

.pricing-price-new {
    margin-bottom: 1.5rem;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #023f52;
}

.pricing-period {
    font-size: 0.875rem;
    color: #00ae97;
    margin-left: 0.25rem;
}

.pricing-features-new {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.pricing-features-new li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #00ae97;
    margin-bottom: 0.75rem;
}

.pricing-features-new .material-symbols-outlined {
    color: #22c55e;
    font-size: 1.25rem;
}

.pricing-cta-new {
    width: 100%;
    margin-top: auto;
}

/* New Steps Grid */
.steps-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .steps-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .steps-grid-new {
        grid-template-columns: 1fr;
    }
}

.steps-connector {
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.3), transparent);
    z-index: 0;
}

@media (max-width: 1024px) {
    .steps-connector {
        display: none;
    }
}

.step-card-new {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: stepFadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--step-index, 0) * 0.15s);
}

.step-card-new.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number-new {
    width: 6rem;
    height: 6rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 4px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ae97;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-card-new:hover .step-number-new {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.25);
}

.step-card-new.step-active .step-number-new {
    border-color: #14b8a6;
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
    animation: stepPulse 2s ease-in-out infinite;
}

.step-card-new.step-active .step-number-new::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #14b8a6;
    opacity: 0;
    animation: stepRipple 2s ease-in-out infinite;
}

.step-title-new {
    font-size: 1.125rem;
    font-weight: 700;
    color: #023f52;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.step-card-new:hover .step-title-new {
    color: #14b8a6;
    transform: translateY(-2px);
}

.step-desc-new {
    font-size: 0.875rem;
    color: #00ae97;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.step-card-new:hover .step-desc-new {
    color: #023f52;
}

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

@keyframes stepPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(30, 64, 175, 0.1), 0 0 0 0 rgba(20, 184, 166, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 6px rgba(30, 64, 175, 0.1), 0 0 0 8px rgba(20, 184, 166, 0);
    }
}

@keyframes stepRipple {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

/* Connector Line Animation */
.steps-connector {
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.3), transparent);
    z-index: 0;
    opacity: 0;
    transform-origin: left center;
    transition: opacity 0.6s ease-out 0.5s;
}

.steps-grid-new.animate-connector .steps-connector {
    opacity: 1;
}

/* Hover Effect for Step Cards */
.step-card-new {
    transition: transform 0.3s ease;
}

.step-card-new:hover {
    transform: translateY(-8px);
}

/* Staggered Animation Delays */
.step-card-new:nth-child(1) {
    --step-index: 0;
    animation-delay: 0.1s;
}

.step-card-new:nth-child(2) {
    --step-index: 1;
    animation-delay: 0.25s;
}

.step-card-new:nth-child(3) {
    --step-index: 2;
    animation-delay: 0.4s;
}

.step-card-new:nth-child(4) {
    --step-index: 3;
    animation-delay: 0.55s;
}

/* Final CTA Section */
.section-cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, #023f52, #00ae97);
    position: relative;
    overflow: hidden;
}

.section-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.1;
}

.cta-final-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-final-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .cta-final-title {
        font-size: 2rem;
    }
}

.cta-final-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.cta-final-btn {
    background: #14b8a6;
    color: white;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

.cta-final-btn:hover {
    background: #0ea5a4;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
}

/* ============================================
   Carousel Styles
   ============================================ */

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    padding: 0;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3rem;
    z-index: 5;
    pointer-events: none;
}

.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(224, 242, 254, 0.95), transparent);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(224, 242, 254, 0.95), transparent);
}

@media (max-width: 768px) {
    .carousel-wrapper::before,
    .carousel-wrapper::after {
        width: 2.5rem;
    }
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 1rem;
    padding: 0;
    margin: 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
    will-change: transform;
    align-items: stretch;
    width: 100%;
    position: relative;
}

.carousel-slide {
    flex: 0 0 auto;
    box-sizing: border-box;
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* Mobile: 1 slide */
.carousel-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

/* Tablet: 2 slides */
@media (min-width: 640px) {
    .carousel-slide {
        width: calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

/* Desktop: 3 slides */
@media (min-width: 1024px) {
    .carousel-slide {
        width: calc(33.333% - 1rem);
        min-width: calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 174, 151, 0.3);
    color: #00ae97;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(2, 63, 82, 0.15);
}

.carousel-btn:hover {
    background: #00ae97;
    color: white;
    border-color: #00ae97;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 174, 151, 0.3);
}

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

.carousel-btn.carousel-prev {
    left: 0.5rem;
}

.carousel-btn.carousel-next {
    right: 0.5rem;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .carousel-btn.carousel-prev {
        left: 0.25rem;
    }
    
    .carousel-btn.carousel-next {
        right: 0.25rem;
    }
    
    .carousel-btn .material-symbols-outlined {
        font-size: 1.25rem;
    }
}

.carousel-btn .material-symbols-outlined {
    font-size: 1.5rem;
    font-weight: 700;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(0, 174, 151, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(0, 174, 151, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #00ae97;
    width: 2rem;
    border-radius: 0.375rem;
    border-color: #00ae97;
}

/* Services Carousel Specific */
#services-carousel .carousel-slide {
    padding: 0;
}

#services-carousel .service-card-new {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    margin: 0;
}

/* Modalities Carousel Specific */
#modalities-carousel .carousel-slide {
    padding: 0;
}

#modalities-carousel .modality-card {
    width: 100%;
    height: auto;
    min-height: 180px;
    margin: 0;
}

/* Mobile: 2 slides */
@media (min-width: 640px) {
    #modalities-carousel .carousel-slide {
        width: calc(25% - 0.75rem);
        min-width: calc(25% - 0.75rem);
        max-width: calc(25% - 0.75rem);
    }
}

/* Desktop: 5 slides */
@media (min-width: 1024px) {
    #modalities-carousel .carousel-slide {
        width: calc(20% - 0.8rem);
        min-width: calc(20% - 0.8rem);
        max-width: calc(20% - 0.8rem);
    }
}

/* Smooth scrolling for carousel */
.carousel-track {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


