/* =================================== */
/* Animations */
/* =================================== */

@keyframes float-bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes medicalFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes crownFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes checkPulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes statsPattern {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

@keyframes countUp {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatPricing {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

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

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

@keyframes priceGlow {
    from {
        text-shadow: 0 0 5px rgba(34, 197, 94, 0.3);
    }

    to {
        text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    }
}

@keyframes float-background {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse-bg {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.05;
    }
}

@keyframes float-trust {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes educationalSweep {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes floatBackground {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

/* ==========================================================================
   1. Root, Global & Element Styles
   ========================================================================== */
:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #22c55e;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #8b5cf6;
    --success-color: #06b6d4;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --border-radius: 12px;
    --border-radius-lg: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.limited-time-offer {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    color: #1e293b;
    overflow: hidden;
    border: 2px dashed #1e40af;
    /* Animated border */
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    z-index: 1;
}

.limited-time-offer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #f5f5f5, #f5f6f6, #f8f9f9, #fdfdfd, #d2e7ff, #f0f0f0);
    background-size: 400% 400%;
    border-radius: 23px;
    z-index: -1;
    animation: gradientBorder 3s ease infinite;
}

@keyframes gradientBorder {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Floating animation for the entire offer */
.limited-time-offer {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

/* Glowing pulse effect */
.limited-time-offer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glow 2s ease-in-out infinite alternate;
    z-index: -1;
    border-radius: 20px;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }

    to {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

.offer-header h4 {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: bold;
    margin: 0 0 15px 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.offer-pricing,
.offer-header p {
    margin: 15px 0;
    font-size: 1.6em;
    font-weight: 900;
    background: linear-gradient(45deg, #1e40af, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

#countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    font-size: 1.2em;
    font-weight: bold;
}

#countdown-timer .time-unit {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    color: #1e40af;
    padding: 15px 18px;
    border-radius: 15px;
    min-width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow:
        0 8px 25px rgba(30, 64, 175, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(30, 64, 175, 0.25);
    }
}

/* Shimmer effect for time units */
#countdown-timer .time-unit::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }

    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

#countdown-timer .time-number {
    font-size: 2em;
    font-weight: 900;
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    z-index: 1;
}

#countdown-timer .time-label {
    font-size: 0.5em;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.offer-text {
    display: block;
    font-size: 1.3rem;
    background: linear-gradient(45deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0 8px 0;
    font-weight: 900;
    text-align: center;
    animation: shake 0.5s infinite alternate;
}

@keyframes shake {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(2px);
    }
}

.offer-discount {
    display: inline-block;
    background: linear-gradient(45deg, #1070b9, #053d96);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 15px;
    box-shadow: 0 6px 20px rgba(16, 109, 185, 0.4);
    /* animation: wiggle 1s ease-in-out infinite; */
    position: relative;
    overflow: hidden;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

/* Sparkle effect */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 1.5s infinite linear;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    top: 80%;
    left: 10%;
    animation-delay: 1s;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .limited-time-offer {
        margin: 20px 10px;
        padding: 25px 20px;
        max-width: none;
    }

    .offer-header h4 {
        font-size: 0.8em;
        padding: 6px 16px;
        margin-bottom: 12px;
    }

    .offer-pricing,
    .offer-header p {
        font-size: 1.4em;
        margin: 12px 0;
    }

    #countdown-timer {
        gap: 10px;
        margin: 20px 0;
        font-size: 1.1em;
    }

    #countdown-timer .time-unit {
        padding: 12px 14px;
        min-width: 65px;
        border-radius: 12px;
    }

    #countdown-timer .time-number {
        font-size: 1.8em;
    }

    .offer-text {
        font-size: 1.1em;
        margin: 12px 0 8px 0;
    }

    .offer-discount {
        font-size: 0.9em;
        padding: 10px 20px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .limited-time-offer {
        margin: 15px 8px;
        padding: 20px 15px;
    }

    .offer-pricing,
    .offer-header p {
        font-size: 1.2em;
        line-height: 1.2;
    }

    #countdown-timer {
        gap: 8px;
        font-size: 1em;
        margin: 18px 0;
    }

    #countdown-timer .time-unit {
        padding: 10px 12px;
        min-width: 60px;
    }

    #countdown-timer .time-number {
        font-size: 1.6em;
    }

    .offer-text {
        font-size: 1em;
    }

    .offer-discount {
        font-size: 0.85em;
        padding: 8px 16px;
    }
}

.disclaimer {
    background-color: #ff6b6b;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
}

@media screen and (max-width: 600px) {
    .disclaimer {
        font-size: 0.7rem;
    }
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background-color: var(--background-white);
}

footer {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
    margin-top: 2rem;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    /* padding: 1rem 0; */
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

section {
    background-color: var(--background-white);
    border-radius: 20px;
    /* padding: 1rem; */
    border: 2px solid #91d1dc;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}


/* ==========================================================================
   2. Alphabetically Sorted Class Styles
   ========================================================================== */

.accred-trust-badge {
    /* background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); */
    background: #f1f5f9;
    color: var(--primary-color);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid #ccc;
    cursor: default;

}

.accred-trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.accreditation-logo {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 140px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.accreditation-logo:nth-child(1) {
    animation-delay: 0.5s;
}

.accreditation-logo:nth-child(2) {
    animation-delay: 0.7s;
}

.accreditation-logo:nth-child(3) {
    animation-delay: 0.9s;
}

.accreditation-logo img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.accreditation-logo img[src] {
    background: none;
    animation: none;
}

.accreditation-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.15));
}

.accreditation-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.accreditation-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(251, 191, 36, 0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.accreditation-logo:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

.accreditation-logo:hover::after {
    left: 100%;
}

.accreditation-logo:focus-within,
.trust-badge:focus {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.add-on-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add-on-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.add-on-header h4 {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.add-on-header p {
    color: #64748b;
    margin: 0;
}

.add-on-item {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.add-on-item.selected {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.add-ons {
    margin: 2rem 0;
}

.add-ons h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

#address-lookup-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

#address-lookup-container>.form-group {
    flex-grow: 1;
}

#address-lookup-container>button {
    flex-shrink: 0;
}

#address-lookup-container>select {
    width: 100%;
    margin-top: 0.5rem;
}

.address-toggle-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.address-toggle-link:hover {
    text-decoration: underline;
}

.advantage-item {
    background: rgba(255, 255, 255);
    padding: 1.5rem;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: var(--primary-color);
}

.advantage-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advantages-grid .advantage-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.alternate {
    background-color: var(--background-light);
    /* border-radius: 20px; */
    /* padding: 30px; */
    border: 2px solid #91d1dc;
}

.appointment-confirm h4 {
    color: #22c55e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.appointment-confirm p {
    color: #16a34a;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.appointment-note {
    color: #64748b !important;
    font-style: italic;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 2px 8px rgba(30, 64, 175, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(30, 64, 175, 0.15);
}

.benefit-card:hover .benefit-icon {
    animation: iconSpin 0.6s ease-in-out;
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
    animation: iconBounce 3s ease-in-out infinite;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.benefit-item span:last-child {
    color: #64748b;
    font-weight: 500;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.booking-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.booking-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    position: relative;
}

.booking-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.booking-section.active {
    display: block;
}

.booking-section h2 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-trust-badge {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    color: #1e40af;
    font-weight: 500;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.booking-trust-badges {
    gap: 1rem;
}

.booking-urgency {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.booking-urgency p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-back {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    border-color: #cbd5e1;
    color: #475569;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #6366f1 100%);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.4);
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-next,
.continue-to-booking-btn,
.checkout-btn {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-next:hover,
.continue-to-booking-btn:hover,
.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-next:disabled,
.checkout-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

 .cta-wrapper {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}


.promo-btn-small {
    background: #2563eb;
    color: #fff;                      
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    min-height: 60px; 
   
      
}

.promo-btn-small:hover {
    background: #1e3a8a;              
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    text-decoration: none;            
}

.promo-btn-small.multi-line {
    display: none;
    padding: 0.6rem 1.2rem;   
    line-height: 1.2;         
} 

.calendar-grid {
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.has-availability {
    background-color: #d4edda !important;
    border-color: #c3e6cb !important;
    font-weight: bold;
}

.flatpickr-day.today {
    border-color: #ff9800 !important;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f4ff;
}

.flatpickr-calendar {
    background: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
}

.flatpickr-calendar .flatpickr-months {
    display: none !important;
}

.flatpickr-innerContainer {
    justify-content: center;
}

.flatpickr-weekdays {
    display: flex !important;
    width: 100% !important;
}

.flatpickr-weekday {
    flex: 1;
    text-align: center;
    font-weight: bold;
    color: #666;
    padding: 10px 0;
    font-size: 0.9rem;
}

.dayContainer {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 10px !important;
    padding: 0 !important;
    width: 100% !important;
}

.flatpickr-day {
    display: flex !important;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
    border: 1px solid #f0f0f0 !important;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: static !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.flatpickr-day:not(.flatpickr-disabled) {
    background: #f0f9fb !important;
    border: 2px solid #0085b3 !important;
    color: var(--primary-color) !important;
    font-weight: bold !important;
}

.flatpickr-day.selected {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: #004a66 !important;
    transform: scale(1.1);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    border-color: #1e40af;
    color: #1e40af;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-container {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.carousel-counter {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    transform: scale(1.2);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 16px;
}

.celebrity-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.celebrity-image-container img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--background-white);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.2);
    transition: transform 0.3s ease;
}

.celebrity-image-container img:hover {
    transform: scale(1.05);
}

.celebrity-name {
    font-size: 1.8rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.celebrity-testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.1);
    border: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.celebrity-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.celebrity-testimonial-content {
    position: relative;
}

.celebrity-testimonial-quote-icon {
    font-size: 4rem;
    color: #1e40af;
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
    font-weight: bold;
}

.celebrity-testimonial-section {
    margin-bottom: 2rem;
}

.celebrity-testimonial-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.celebrity-title {
    font-size: 1rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close-menu-icon {
    display: none !important;
}

.comparison-feature-table {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(30, 64, 175, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    border-collapse: separate;
    border-spacing: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-feature-table:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(30, 64, 175, 0.12);
}

.comparison-feature-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.comparison-feature-table b {
    color: #1e40af;
    font-weight: 700;
}

.comparison-feature-table thead th {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    border: none;
}

.comparison-feature-table thead th:first-child {
    position: relative;
}

.comparison-feature-table thead th:last-child {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.comparison-feature-table tbody td {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    transition: all 0.3s ease;
    width: 50%;
}

.comparison-feature-table tbody td:first-child {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(22, 163, 74, 0.03) 100%);
    color: #1e40af;
    /* font-weight: 600; */
    border-right: 3px solid rgba(34, 197, 94, 0.2);
    position: relative;
    padding-left: 3.5rem;
}

.comparison-feature-table tbody td:first-child::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #22c55e;
    font-weight: 700;
    font-size: 1.3rem;
    animation: checkPulse 2s ease-in-out infinite;
}

.comparison-feature-table tbody td:last-child {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.03) 100%);
    color: #64748b;
    position: relative;
    padding-left: 3.5rem;
}

.comparison-feature-table tbody td:last-child::before {
    content: '✗';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ef4444;
    font-weight: 700;
    font-size: 1.3rem;
}

.comparison-feature-table tbody td:last-child b {
    color: var(--danger-color);
}

.comparison-feature-table tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-feature-table tbody tr:hover {
    background: rgba(30, 64, 175, 0.03);
}

.comparison-feature-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(30, 64, 175, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    /* margin-bottom: 2rem; */
    border-collapse: separate;
    border-spacing: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.comparison-table:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(30, 64, 175, 0.12);
}

.comparison-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.comparison-table b {
    color: #1e40af;
    font-weight: 700;
}

.comparison-table thead {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    position: relative;
}

.comparison-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.comparison-table thead th {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.comparison-table thead th:first-child {
    position: relative;
    text-align: center;
    /* padding-left: 3.5rem; */
}

.comparison-table thead th:last-child {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    position: relative;
    /* padding-right: 3.5rem; */
}

.comparison-table td {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    vertical-align: middle;
}

.comparison-table td b {
    color: #22c55e;
    font-size: 1.4rem;
    text-shadow: 0 1px 2px rgba(34, 197, 94, 0.1);
}

.comparison-table td del {
    color: #94a3b8;
    font-size: 1rem;
    margin-left: 0.5rem;
    opacity: 0.7;
}

.comparison-table tbody td {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

.comparison-table tbody td:first-child {
    /* background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(22, 163, 74, 0.03) 100%); */
    color: #1e40af;
    font-weight: 600;
    border-right: 3px solid rgba(34, 197, 94, 0.2);
    position: relative;
    /* padding-left: 3.5rem; */
    text-align: center;
}

.comparison-table tbody td:first-child::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #22c55e;
    font-weight: 700;
    font-size: 1.3rem;
    animation: checkPulse 2s ease-in-out infinite;
}

.comparison-table tbody td:last-child {
    /* background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.03) 100%); */
    color: #64748b;
    position: relative;
    /* padding-left: 3.5rem; */
    text-align: center;
    font-weight: 700;
}

.comparison-table tbody td:last-child::before {
    content: '✗';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ef4444;
    font-weight: 700;
    font-size: 1.3rem;
}

.comparison-table tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-table tbody tr:hover {
    background: rgba(30, 64, 175, 0.03);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:first-child td:last-child {
    /* background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); */
    border-radius: 0 0 0 20px;
}

.comparison-table tbody tr:first-child td:last-child::after {
    display: none;
    content: '';
    position: absolute;
    top: 0.25rem;
    right: 0.5rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.consent-section {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.consent-text {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.consent-text a {
    color: #3b82f6;
    text-decoration: none;
}

.consent-text a:hover {
    text-decoration: underline;
}

.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    gap: 2rem;
    display: flex;
    flex-direction: column;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.content-wrapper-1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cta-button {
    padding: 0.7rem 2rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.cta-button.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: #1e40af;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    will-change: transform;
}

.cta-button.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    transition: left 0.5s ease;
}

.cta-button.btn:hover::before {
    left: 100%;
}

.cta-button.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.4);
}

.cta-button.btn::after {
    content: '→';
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.cta-button.btn:hover::after {
    transform: translateX(5px);
}

.cta-button-large {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 1.25rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(30, 64, 175, 0.3);
    margin: 1rem;
}

.hero .cta-button-large {
    display: block;
    text-align: center;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.4);
}

.cta-button-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button-primary::before {
    content: '📞';
    margin-right: 0.75rem;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
}

.cta-button-secondary {
    background: transparent;
    color: #1e40af;
    padding: 1.25rem 3rem;
    border: 2px solid #1e40af;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-secondary::before {
    content: 'ℹ️';
    margin-right: 0.75rem;
}

.cta-button-secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-3px);
}

.cta-buttons {
    position: relative;
    z-index: 2;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(30, 64, 175, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #16a34a 100%);
}

.cta-section h3 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button-primary::before {
    content: '📞';
    margin-right: 0.75rem;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
}

.cta-button-secondary {
    background: transparent;
    color: #1e40af;
    padding: 1.25rem 3rem;
    border: 2px solid #1e40af;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-secondary::before {
    content: 'ℹ️';
    margin-right: 0.75rem;
}

.cta-button-secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-3px);
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.custom-calendar {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto 20px auto;
}

.cyst-type-highlight {
    transition: all 0.3s ease;
}

.cyst-type-highlight:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.demo-wrapper {
    padding: 2rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.doctor-card {
    flex: 0 0 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #6366f1 100%);
}

.doctor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.doctor-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    pointer-events: none;
}

.doctor-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    text-align: left;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.doctor-description::before {
    content: '"';
    font-size: 3rem;
    color: #cbd5e1;
    position: absolute;
    top: -5px;
    left: 10px;
    font-family: serif;
}

.doctor-gmc {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #e2e8f0;
}

.doctor-image {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.doctor-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.doctor-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse-bg 3s ease-in-out infinite;
}

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

.doctor-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doctor-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.educational-highlight {
    position: relative;
    overflow: hidden;
}

.educational-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.1) 50%, transparent 100%);
    animation: educationalSweep 3s ease-in-out infinite;
}

/* Payment Modal Styles */
#payment-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

#payment-modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 30px;
    border: none;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInUp 0.5s ease-out;
}

#payment-modal-content h3 {
    color: #1e40af;
    margin-bottom: 20px;
    text-align: center;
}

#submit-payment-button {
    margin-top: 20px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#submit-payment-button:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

#payment-message {
    display: none;
    color: #ef4444;
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    opacity: 0;
    background: linear-gradient(135deg, #fafbff 0%, #f8fafc 100%);
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    padding-top: 0.5rem;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    color: var(--text-light);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-arrow svg {
    width: 100%;
    height: 100%;
}

.faq-container {
    display: grid;
    gap: 1rem;
    /* margin-top: 3rem; */
    counter-reset: faq-counter;
}

.faq-item {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.faq-item ul{
    padding-left: 22px;
}

.faq-item .faq-answer h2{
    font-size: 20px;
}

.faq-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), var(--shadow-xl);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding: 0 2rem 1.5rem;
}

.faq-item.active .faq-question::before,
.faq-question:hover::before {
    transform: scaleY(1);
}

.faq-item.active .faq-question span,
.faq-question:hover span {
    margin-left: 36px;
}

.faq-item.active .faq-question::after,
.faq-item:hover .faq-question::after {
    opacity: 1;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            var(--border-light) 20%,
            var(--border-light) 80%,
            transparent 100%);
}

.faq-item:first-child::before {
    display: none;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--background-white);
    transition: var(--transition-fast);
    position: relative;
    -webkit-user-select: none;
    user-select: none;
}

.faq-question:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

.faq-question::after {
    content: counter(faq-counter);
    counter-increment: faq-counter;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: var(--transition);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.feature-card p {
    color: var(--text-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 20px;
    right: -20px;
    width: 120px;
    text-align: center;
}

.floating-card-2 {
    bottom: 20px;
    left: -20px;
    width: 140px;
    text-align: center;
}

.floating-card-3 {
    top: 50%;
    right: -30px;
    width: 100px;
    text-align: center;
    transform: translateY(-50%);
}

.floating-card h4 {
    font-size: 0.9rem;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    z-index: 1000;
    animation: float-bounce 3s ease-in-out infinite;
}

.floating-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: var(--text-white);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e40af;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    /* background: #f8fafc; */
    /* color: white; */
}



.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:focus-visible,
.form-group textarea:focus-visible {
    /* outline: none; */
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    outline-color: var(--primary-color);
}

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

.getaddress-button {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-grow: initial !important;
}

.getaddress-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.google-reviews .google-logo {
    height: 50px;
    width: auto;
}

.google-reviews .rating-stars {
    color: #fbbc05;
    font-size: 1.1rem;
}

.google-reviews .review-details {
    display: flex;
    flex-direction: column;
}

.google-reviews .review-score {
    font-size: 0.85rem;
    color: #555;
}

.google-reviews .review-text {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    text-align: start;
}

.google-stars .star {
    color: #fbbf24;
    font-size: 1.2rem;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 30%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* padding: 120px 0 80px; */
    padding: 120px 0 2rem;
    margin-bottom: 2rem;
    border-radius: 0;
    border: 0px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="medical1"><stop offset="0" stop-color="%231e40af" stop-opacity="0.05"/><stop offset="1" stop-color="%231e40af" stop-opacity="0"/></radialGradient><radialGradient id="medical2"><stop offset="0" stop-color="%233b82f6" stop-opacity="0.03"/><stop offset="1" stop-color="%233b82f6" stop-opacity="0"/></radialGradient></defs><circle cx="150" cy="150" r="100" fill="url(%23medical1)"/><circle cx="850" cy="200" r="120" fill="url(%23medical2)"/><circle cx="300" cy="800" r="80" fill="url(%23medical1)"/><circle cx="700" cy="700" r="90" fill="url(%23medical2)"/></svg>');
    animation: medicalFloat 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.hero-accreditation-logo img {
    max-height: 80px;
    width: auto;
    transition: opacity 0.3s ease;
}

.hero-accreditations-bar {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
    background: var(--background-white);
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ccc;
    box-shadow: rgb(233, 233, 233) -1px 5px 15px;
}

.hero-accreditations-bar h4 {
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-accreditations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-cta {
    animation: slideInLeft 1s ease-out 0.8s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-size: 1rem;
}

.hero-feature::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-features {
    display: none;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.5s both;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image-main {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(30, 64, 175, 0.1);
    border: 1px solid #e2e8f0;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-text {
    color: #1e293b;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #1e40af;
    animation: slideInLeft 1s ease-out;
}

.hero-text {
    .treatment-features {
        /* margin: 2rem; */
        margin: 1rem 5rem;
    }
    .trust-indicators{
        border-top: none;
        padding-top: 0rem;
        .trust-indicator{
            border: 1px dashed #ccc;
            background-color: #EEE;
            .trust-indicator-icon{
                font-size: 2rem;
            }
            .trust-indicator-text{
                font-size: 0.9rem;
            }
        }
    }
    .hero-accreditations-logos{
        margin: 1rem;
        .accreditation-logo::before{
            content: none;
        }
    }
}

/* .hero-text p {
    display: none;
} */

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e40af;
    font-size: 0.9rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 10px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    border-radius: 10px;
    box-shadow: -1px 5px 15px #e9e9e9;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
}

.hero-trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    animation: slideInLeft 1s ease-out 1s both;
}
.hero-address {
    margin: 15px 0px;
    position: relative;
    display: flex;
    justify-content: center;
}
.address-main{
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 74, 102, 0.15);
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    max-width: 450px;
    width: 100%;
    justify-content: center;
    
    i {
        color: #c53030;
        font-size: 1.4rem;
    }
}
.hidden {
    display: none;
}
.pricing-infobox-stat-footnote,
.infobox-stat-footnote {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.05);
}
.pricing-infobox-stat-footnote {
    
    padding: 3rem;
    max-width: fit-content;

    h3 {
        text-align: center;
        padding-bottom: 1rem;
    }

}

.infobox-stat-footnote::before {
    content: '💡';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
}

.iti {
    width: 100%;
}

.iti__country-list {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.loading-overlay::after {
    content: '⏳';
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e40af;
    text-decoration: none;
    display: flex;
}

.logo img {
    width: 120px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.month-year {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
}

.nav-button {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.order-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.payment-info-message {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.payment-info-message p {
    color: #1e40af;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.payment-info-message p:last-child {
    margin-bottom: 0;
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 25px rgba(30, 64, 175, 0.3);
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.platform-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.platform-logo svg {
    width: 24px;
    height: 24px;
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-section {
    padding: 6rem 0;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="pricing1"><stop offset="0" stop-color="%231e40af" stop-opacity="0.03"/><stop offset="1" stop-color="%231e40af" stop-opacity="0"/></radialGradient><radialGradient id="pricing2"><stop offset="0" stop-color="%2322c55e" stop-opacity="0.02"/><stop offset="1" stop-color="%2322c55e" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23pricing1)"/><circle cx="800" cy="600" r="120" fill="url(%23pricing2)"/><circle cx="400" cy="800" r="100" fill="url(%23pricing1)"/></svg>');
    animation: floatPricing 25s ease-in-out infinite;
    pointer-events: none;
}

.pricing-table tbody td:first-child::before {
    content: '';
    width: 0px;
    height: 0px;
}

.pricing-table tbody td:last-child::before {
    content: '';
    width: 0px;
    height: 0px;
}

.professional-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.professional-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 30px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    animation: fadeInUp 0.7s ease-out 0.8s both;
}

.professional-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="800" r="120" fill="rgba(255,255,255,0.03)"/><circle cx="500" cy="100" r="80" fill="rgba(255,255,255,0.04)"/></svg>');
    pointer-events: none;
}

.professional-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.professional-section h3::before {
    content: '🛡️';
    font-size: 2.5rem;
}

.professional-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.progress-line {
    position: absolute;
    top: 25px;
    left: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
    z-index: 1;
}

.proof-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-control button {
    width: 40px;
    height: 40px;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    background: white;
    color: #3b82f6;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-control button:hover {
    background: #3b82f6;
    color: white;
}

.quantity-display {
    font-weight: 600;
    color: #1e40af;
    font-size: 1.1rem;
}

.radio-options {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
}

.radio-options input[type="radio"] {
    width: auto;
    margin: 0;
}

.rating {
    font-size: 2rem;
    font-weight: 700;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.read-more-btn {
    background: none;
    border: none;
    color: #1e40af;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--secondary-color);
}

.remove-btn {
    display: none;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.review-card {
    flex: 0 0 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.1);
}

.review-content {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    max-height: none;
}

.review-content.collapsed {
    max-height: 4.2em;
}

.review-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5em;
    background: linear-gradient(transparent, #f8fafc);
}

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

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.reviews-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="trust1"><stop offset="0" stop-color="%231e40af" stop-opacity="0.03"/><stop offset="1" stop-color="%231e40af" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23trust1)"/><circle cx="800" cy="800" r="120" fill="url(%23trust1)"/></svg>');
    pointer-events: none;
}

.reviews-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(30, 64, 175, 0.2);
    z-index: 1001;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
}

.security-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.section-badge::before {
    content: '🏥';
    margin-right: 0.5rem;
}

.section-color-bg {
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(248, 250, 252) 30%, rgb(226, 232, 240) 100%);
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="150" cy="150" r="100" fill="rgba(255,255,255,0.05)"/><circle cx="850" cy="850" r="120" fill="rgba(255,255,255,0.03)"/></svg>');
    pointer-events: none;
}

.section-cta h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.section-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .subtitle {
    font-size: 1.4rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.section-primary {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-secondary.accreditations-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-secondary.accreditations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="trust1"><stop offset="0" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="1" stop-color="%23ffffff" stop-opacity="0"/></radialGradient><radialGradient id="trust2"><stop offset="0" stop-color="%23fbbf24" stop-opacity="0.03"/><stop offset="1" stop-color="%23fbbf24" stop-opacity="0"/></radialGradient></defs><circle cx="150" cy="150" r="100" fill="url(%23trust1)"/><circle cx="850" cy="200" r="120" fill="url(%23trust2)"/><circle cx="300" cy="800" r="80" fill="url(%23trust1)"/><circle cx="700" cy="700" r="90" fill="url(%23trust2)"/></svg>');
    animation: float-trust 25s ease-in-out infinite;
}

.section-secondary.accreditations-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.section-secondary.doctors-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-secondary.doctors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="medical1"><stop offset="0" stop-color="%231e40af" stop-opacity="0.03"/><stop offset="1" stop-color="%231e40af" stop-opacity="0"/></radialGradient><radialGradient id="medical2"><stop offset="0" stop-color="%233b82f6" stop-opacity="0.02"/><stop offset="1" stop-color="%233b82f6" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23medical1)"/><circle cx="800" cy="300" r="120" fill="url(%23medical2)"/><circle cx="400" cy="800" r="100" fill="url(%23medical1)"/></svg>');
    animation: float-background 30s ease-in-out infinite;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.2;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 2px;
}

.section-title h2 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--primary-color);
    font-size: 3rem;
}

.section-title p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title--animate-down h2 {
    animation: slideInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title--animate-up h2,
.section-title--animate-up p {
    animation: slideInUp 0.8s ease-out;
}

.section-title--animate-up p {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.section-title--constrained {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.section-title--gradient-heading h2 {
    font-size: 2.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title--with-bar::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.selected-appointment {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 2px solid #22c55e;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    display: none;
}

.selected-appointment.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.service-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

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

.service-meta {
    color: #22c55e;
    font-weight: 600;
    font-size: 1.1rem;
}

.service-meta-time {
    color: #64748b;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.service-name {
    font-size: 1.1rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.service-radio-group {
    margin: 2rem 0;
}

.service-radio-option {
    margin-bottom: 1rem;
}

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

.service-radio-option label {
    display: block;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.service-radio-option input[type="radio"]:checked+label {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
}

.services {
    padding: 6rem 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.severity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.severity-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.treatment-card:nth-child(1) .severity-indicator {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.treatment-card:nth-child(2) .severity-indicator {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.treatment-card:nth-child(3) .severity-indicator {
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
}


.social-proof-bar {
    background-color: #f0f9fb;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.5rem;
    /* margin-top: 15px; */
    border-radius: 15px;
    display: inline-block;
    max-width: 220px;
    width: 100%;
}

.special-offer {
    display: none;
    background: linear-gradient(135deg, var(--accent-color) 0%, #16a34a 100%);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.special-offer p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.specialty-badge {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specialty-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.specialty-badge:hover::before {
    left: 100%;
}

.specialty-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
}

.stat-item {
    text-align: center;
    color: var(--text-white);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    will-change: transform;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
    animation: countUp 2s ease-out;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: statsPattern 20s linear infinite;
    pointer-events: none;
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    transform: scale(1.1);
}

.step.active .step-title {
    color: #1e40af;
    font-weight: 600;
}

.step.completed .step-circle {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-navigation-buttons {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 15px #cacaca;
}



.step-title {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
    max-width: 600px;
    gap:1rem;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    z-index: 0;
}

.stepper-container {
    margin-bottom: 2rem;
}

.summary-divider {
    height: 2px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    /* margin: 1rem 0; */
    border-radius: 1px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    gap: 1rem;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: #64748b;
}

.summary-item strong {
    color: #1e40af;
    font-size: 1.1rem;
}

.time-slot {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-slot:hover {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.time-slot.selected {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-color: #1e40af;
}

.time-slots-container {
    margin: 2rem 0;
}

.time-slots-container h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.total-row {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 1.5rem 1rem !important;
    border-radius: 12px;
    margin-top: 1rem;
}

.treatment-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: slideInUp 0.7s ease-out forwards;
    text-align: center;
}

.treatment-card:nth-child(1) {
    animation-delay: 0.4s;
    border-left: 4px solid #22c55e;
}

.treatment-card:nth-child(2) {
    animation-delay: 0.5s;
    border-left: 4px solid #f59e0b;
}

.treatment-card:nth-child(3) {
    animation-delay: 0.6s;
    border-left: 4px solid #1e40af;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(30, 64, 175, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.treatment-card:hover::before {
    opacity: 1;
}

.treatment-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 80px rgba(30, 64, 175, 0.15);
}

.treatment-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.treatment-features {
    list-style: none;
    margin-bottom: 2rem;
}

.treatment-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
    text-align: left;
}

.treatment-features li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.treatment-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    transition: all 0.3s ease;
    justify-self: center;
}

.treatment-card:nth-child(1) .treatment-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.treatment-card:nth-child(2) .treatment-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.treatment-card:nth-child(3) .treatment-icon {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.treatment-card:hover .treatment-icon {
    transform: scale(1.1) rotate(10deg);
}

.treatment-price-addon {
    font-size: 1.2rem;
    font-weight: 600;
    color: #22c55e;
}

.treatment-price-addon del {
    color: #94a3b8;
    margin-left: 0.5rem;
}

.treatment-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.treatment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="medical1"><stop offset="0" stop-color="%231e40af" stop-opacity="0.03"/><stop offset="1" stop-color="%231e40af" stop-opacity="0"/></radialGradient><radialGradient id="medical2"><stop offset="0" stop-color="%233b82f6" stop-opacity="0.02"/><stop offset="1" stop-color="%233b82f6" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="120" fill="url(%23medical1)"/><circle cx="900" cy="200" r="100" fill="url(%23medical2)"/><circle cx="200" cy="900" r="150" fill="url(%23medical1)"/><circle cx="800" cy="800" r="80" fill="url(%23medical2)"/></svg>');
    pointer-events: none;
    animation: floatBackground 20s ease-in-out infinite;
}

.treatment-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    animation: scaleIn 0.5s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
}

.trust-badge::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.trust-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.35);
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    /* margin-top: 1.5rem; */
}

.trust-indicator {
    align-items: center;
    gap: 0.5rem;
    color: #1e40af;
    font-size: 0.9rem;
    padding: 10px;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
}

.trust-indicator-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.trust-indicator-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-indicator-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    display: block;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    /* margin-top: 3rem; */
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.trust-indicators-1 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.booking-section h3,
.trust-indicators-1 h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
    /* background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); */
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    text-align: center;
}

.trust-indicators-1 p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e40af;
    font-size: 0.9rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 10px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    border-radius: 10px;
    box-shadow: -1px 5px 15px #e9e9e9;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
}

.trust-item::before {
    font-size: 1.5rem;
}

.trust-item:nth-child(1)::before {
    content: '🏆';
}

.trust-item:nth-child(2)::before {
    content: '👨‍⚕️';
}

.trust-item:nth-child(3)::before {
    content: '⭐';
}

.trust-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius-lg);
    color: var(--text-white);
    text-align: center;
}

.trust-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-section-1 {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.warning-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
    text-align: center;
}

.warning-card:nth-child(1) {
    animation-delay: 0.3s;
}

.warning-card:nth-child(2) {
    animation-delay: 0.4s;
}

.warning-card:nth-child(3) {
    animation-delay: 0.5s;
}

.warning-card:nth-child(4) {
    animation-delay: 0.6s;
}

.warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.warning-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
}

.warning-card:nth-child(1) .severity-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.warning-card:nth-child(2) .severity-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.warning-card:nth-child(3) .severity-badge {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.warning-card:nth-child(4) .severity-badge {
    background: rgba(6, 182, 212, 0.1);
    color: #0891b2;
}


.warning-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pricing-grid{
    margin: 2rem 0rem;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.warning-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    transition: all 0.3s ease;
}

/* Individual Icon Styles */
.warning-card:nth-child(1) .warning-icon {
    /* background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); */
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.warning-card:nth-child(2) .warning-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.warning-card:nth-child(3) .warning-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.warning-card:nth-child(4) .warning-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.warning-card:nth-child(5) .warning-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

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

.warning-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.when-to-remove {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.when-to-remove::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="bg1"><stop offset="0" stop-color="%231e40af" stop-opacity="0.03"/><stop offset="1" stop-color="%231e40af" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23bg1)"/><circle cx="800" cy="800" r="200" fill="url(%23bg1)"/></svg>');
    pointer-events: none;
}

.why-choose {
    padding: 6rem 0;
    background: #f8fafc;
}

.why-choose-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.why-choose-us-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.why-choose-us-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.why-choose-us-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 2rem;
    position: relative;
    background: linear-gradient(135deg, #1e40af 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-us-content h3::before {
    content: '🔬';
    position: absolute;
    left: -3rem;
    top: 0;
    font-size: 2rem;
    filter: none;
    -webkit-text-fill-color: initial;
}

.why-choose-us-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.why-choose-us-content p strong {
    color: #1e40af;
    font-weight: 600;
}

.why-choose-us-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
    position: relative;
    overflow: hidden;
}

.why-choose-us-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
}

.why-choose-us-icon i {
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.why-choose-us-info {
    flex: 1;
}

.why-choose-us-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #1e40af 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-us-info p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.why-choose-us-point {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.why-choose-us-point:nth-child(1) {
    animation-delay: 0.6s;
}

.why-choose-us-point:nth-child(2) {
    animation-delay: 0.8s;
}

.why-choose-us-point:nth-child(3) {
    animation-delay: 1.0s;
}

.why-choose-us-point:nth-child(4) {
    animation-delay: 1.2s;
}

.why-choose-us-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.why-choose-us-point:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.why-choose-us-point:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(5, 150, 105, 0.02) 100%);
    pointer-events: none;
}

.why-choose-us-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.why-choose-us-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="medical1"><stop offset="0" stop-color="%2310b981" stop-opacity="0.03"/><stop offset="1" stop-color="%2310b981" stop-opacity="0"/></radialGradient><radialGradient id="medical2"><stop offset="0" stop-color="%233b82f6" stop-opacity="0.02"/><stop offset="1" stop-color="%233b82f6" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23medical1)"/><circle cx="800" cy="300" r="120" fill="url(%23medical2)"/><circle cx="400" cy="800" r="100" fill="url(%23medical1)"/></svg>');
    animation: float-medical 25s ease-in-out infinite;
}

#getaddress_input {
    width: auto;
    flex: 1;
}

#finalSummary {
    background: white;
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 0.5rem;

    & .summary-item {
        span:nth-child(2) {
            text-align: right;
        }
    }
}
#dynamic-summary-container{
	display: none;
}

/* ==================================================
   Confirmation Page Styles
   ================================================== */

.confirmation-section {
    padding: 60px 0;
    /* background-color: #f8f9fa;  */
    /* A light background to make the card pop */
}

.confirmation-card {
    max-width: 650px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 40px 50px;
    text-align: center;
    border-top: 5px solid #4caf50;
    /* A nice green accent for success */
}

.confirmation-header {
    margin-bottom: 30px;
}

.confirmation-header .success-icon {
    font-size: 60px;
    color: #4caf50;
    margin-bottom: 15px;
}

.confirmation-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.confirmation-subtext {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}

.appointment-details-list {
    text-align: left;
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    /* Aligns icon with the top of the text */
    gap: 20px;
    margin-bottom: 25px;
}

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

.detail-icon {
    font-size: 1.6rem;
    color: #667eea;
    /* Uses your theme's primary color */
    flex-shrink: 0;
    width: 30px;
    text-align: center;
    margin-top: 5px;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.confirmation-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

/* Using existing button styles for consistency */
.confirmation-footer .btn.secondary-btn {
    background: #f0f2f5;
    color: #555;
    border: 1px solid #e0e4e8;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.confirmation-footer .btn.secondary-btn:hover {
    background: #e2e6ea;
    border-color: #d1d8de;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.payment-breakdown {
    background: linear-gradient(135deg, #ebf8ff 0%, #e6f3ff 100%);
    border: 2px solid #bee3f8;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.payment-title {
    font-size: 18px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 16px;
    text-align: center;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.payment-now {
    background: #4299e1;
    color: white;
    border-radius: 8px;
    padding: 12px;
    margin: 8px 0;
}

.payment-later {
    background: #f7fafc;
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    padding: 12px;
    margin: 8px 0;
}

.payment-label {
    font-weight: 600;
}

.payment-amount {
    /* font-size: 18px; */
    font-weight: 700;
}
.payment-highlight {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 0.7rem;
    text-align: center;
    margin: 15px 0;
}

.payment-highlight h3 {
    /* color: #2e7d32; */
    margin: 0 0 8px 0;
    font-size: 1.2em;
    line-height: 1.2;
}

.payment-highlight p {
    color: #555;
    margin: 0;
    /* font-weight: 500; */
    /* font-size: 1rem; */
}
.payment-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 18px;
    margin: 15px 0;
}

.payment-info h5 {
    margin: 0 0 10px 0;
    color: #856404;
    font-size: 1.1em;
}

.payment-info ul {
    margin: 0;
    padding-left: 18px;
    color: #856404;
}

.payment-info li {
    margin: 8px 0;
    line-height: 1.4;
}
/* =================================== */
/* Responsive Styles */
/* =================================== */

@media screen and (max-width: 991px) {
    .nav-links {
        display: none;
        width: 0%;
        opacity: 0;
        overflow: hidden;
        transition: opacity .7s;
    }

    .close-menu-icon {
        position: absolute;
        display: block !important;
        right: 20px;
        top: 10px;
    }

    .nav-links.active {
        opacity: 1;
        display: block;
        position: absolute;
        width: 40%;
        height: 100vh;
        background: #fff;
        top: 0;
        left: 0;
        padding: 20px;
        border-right: 3px solid #1e40af;
    }

    .mobile-menu-toggle {
        display: flex;
    }

}

@media (max-width: 768px) {
    section {
        padding: 2rem 1rem;
    }

    .nav-links {
        width: 0%;
        opacity: 0;
        overflow: hidden;
        transition: opacity .7s;
    }

    .nav-links.active {
        opacity: 1;
        display: block;
        position: absolute;
        width: 50%;
        height: 100vh;
        background: #fff;
        top: 0;
        left: 0;
        padding: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .floating-card {
        display: none;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .confirmation-section {
        padding: 1rem;
    }
    .reviews-wrapper {
        padding: 0rem;
    }

    .celebrity-testimonial-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

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

    .celebrity-testimonial-text {
        font-size: 1rem;
    }

    .celebrity-image-container img {
        width: 100px;
        height: 100px;
    }

    .platform-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .carousel-container {
        padding: 1rem;
    }

    .carousel-dots {
        display: none;
    }

    .promo-btn-small.multi-line {
        display: none;
    }
    
    .review-card {
        padding: 1rem;
    }

    .carousel-controls {
        gap: 1rem;
        flex-direction: row;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-indicator-value {
        font-size: 2rem;
    }

    .section-primary {
        padding: 3rem 1rem;
    }

    .comparison-feature-table {
        border-radius: 20px;
        /* margin-bottom: 3rem; */
    }

    .comparison-feature-table thead th {
        padding: 1.25rem 1rem;
        font-size: 1.1rem;
    }

    .comparison-feature-table tbody td {
        padding: 1.25rem 1rem;
        font-size: 0.95rem;
        padding-left: 2.5rem;
    }

    .comparison-feature-table tbody td::before {
        left: 0.75rem;
        font-size: 1.1rem;
    }

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

    .benefit-card {
        padding: 2rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .benefit-title {
        font-size: 1.2rem;
    }

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

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

    .stat-label {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 2rem;
    }

    .cta-text {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .cta-button.btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }

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

    .section-title {
        margin-bottom: 3rem;
    }
    .pricing-infobox-stat-footnote,
    .infobox-stat-footnote {
        padding: 1rem 1.5rem 1rem 3rem;
        font-size: 1rem;
    }

    .comparison-table {
        max-width: 100%;
    }

    .comparison-table thead th {
        padding: 1.5rem 1rem;
        font-size: 1.1rem;
    }

    .comparison-table thead th:first-child {
        padding-left: 3rem;
    }

    .comparison-table thead th:last-child {
        padding-right: 3rem;
    }

    .comparison-table td {
        padding: 1rem;
        font-size: 1rem;
    }

    .comparison-table td:first-child {
        padding-left: 3rem;
    }

    .comparison-table td:last-child {
        font-size: 1.2rem;
    }

    .comparison-table td b {
        font-size: 1.3rem;
    }

    .comparison-table tbody tr:first-child td:last-child::after {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }

    .cta-section {
        padding: 2rem 1rem;
        border-radius: 20px;
    }

    .cta-text {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .trust-indicators {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .section-secondary.doctors-section {
        padding: 3rem 0;
    }

    .section-title {
        padding: 0 1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .section-title p {
        font-size: 1.1rem;
    }

    .content-wrapper {
        padding: 0rem;
    }

    .carousel-track {
        padding: 0rem;
        gap: 0rem;
    }

    .doctor-card {
        max-width: 100%;
        padding: 1.5rem;
        margin: 0;
    }

    .doctor-image img {
        width: 120px;
        height: 120px;
    }

    .doctor-image::before {
        width: 140px;
        height: 140px;
    }

    .doctor-name {
        font-size: 1.4rem;
    }

    .doctor-title {
        font-size: 1rem;
    }

    .doctor-description {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .specialties {
        gap: 0.5rem;
    }

    .specialty-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .carousel-controls {
        gap: 1rem;
        margin-top: 2rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-secondary.accreditations-section {
        padding: 4rem 0;
    }

    .accreditations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .accreditation-logo {
        padding: 1.5rem;
        min-height: 120px;
    }

    .accreditation-logo img {
        max-height: 90px;
    }

    .trust-indicators h3 {
        font-size: 1.6rem;
    }

    .trust-indicators p {
        font-size: 1.1rem;
    }

    .accred-trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .accred-trust-badge {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .why-choose-us-section {
        padding: 4rem 0;
    }

    .why-choose-us-container {
        padding: 0 1rem;
    }

    .why-choose-us-content {
        padding: 2rem 1.5rem;
    }

    .why-choose-us-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .why-choose-us-content h3::before {
        left: -2.5rem;
        font-size: 1.6rem;
    }

    .why-choose-us-content p {
        font-size: 1rem;
    }

    .why-choose-us-points {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .why-choose-us-point {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .why-choose-us-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .why-choose-us-icon i {
        font-size: 1.25rem;
    }

    .why-choose-us-info h4 {
        font-size: 1.2rem;
    }

    .why-choose-us-info p {
        font-size: 0.95rem;
    }

    .when-to-remove {
        padding: 3rem 0;
    }

    .pricing-grid{
        margin: 1.5rem 0rem;
    }
    .warning-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .warning-card {
        padding: 2rem 1.5rem;
    }

    .warning-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .warning-title {
        font-size: 1.25rem;
    }

    .section-cta {
        /* margin-top: 3rem; */
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

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

    .section-header .subtitle {
        font-size: 1.2rem;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .treatment-card {
        padding: 2rem 1.5rem;
    }

    .treatment-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .treatment-title {
        font-size: 1.4rem;
    }

    .professional-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .professional-section h3 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: auto;
        /* max-width: 300px; */
    }

    .trust-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .booking-container {
        padding: 20px 0px;
    }

    .booking-section {
        padding: 5px;
    }

    .stepper {
        flex-direction: row;
        gap: 0rem;
    }

    .stepper::before {
        display: none;
    }

    .progress-line {
        display: none;
    }

    .step {
        flex-direction: column;
        justify-content: flex-start;
        gap: 0rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .step-navigation-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

    .content-section {
        padding: 0rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .trust-badges {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .trust-section,
    .cta-section {
        padding: 1.5rem;
        /* margin-left: 1rem; */
        /* margin-right: 1rem; */
        border-radius: var(--border-radius);
    }

    .booking-trust-badges {
        display: grid;
    }

    .continue-to-booking-btn {
        width: 100%;
    }
    /* .payment-highlight {
        margin: 20px 0;
        padding: 20px;
    } */
    .payment-info {
        margin: 1rem 0;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 110px 0 2rem;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }

    .hero-trust-badges {
        align-items: center;
        flex-wrap: wrap;
        /* flex-direction: column; */
    }
    .cta-button-large{
        font-size: 1rem;
    }
    .hero-features {
        justify-items: center;
    }

    .comparison-feature-table thead th:first-child::after {
        content: '';
    }

    .comparison-feature-table tbody td:first-child::before {
        content: '' !important;
    }

    .comparison-feature-table tbody td:first-child {
        padding-left: 2rem;
    }

    .comparison-feature-table tbody td:last-child::before {
        content: '' !important;
    }

    .comparison-feature-table tbody td:last-child {
        padding-left: 2rem;
    }

    .comparison-table thead th:first-child::after {
        content: '';
    }

    .comparison-table thead th:first-child::before {
        content: '' !important;
    }

    .doctor-card {
        flex: 0 0 100%;
    }

    /* nav .cta-button {
        display: none;
    } */

    .hero-accreditation-logo {
        width: 80%;
    }

    .hero-accreditation-logo img {
        max-height: 100%;
        width: 100%;
        transition: opacity 0.3s ease;
    }

    .social-proof-bar {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }

    .celebrity-testimonial-quote-icon {
        font-size: 3rem;
        top: -0.5rem;
    }

    .section-primary {
        padding: 2rem 2rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .comparison-feature-table thead th {
        padding: 1rem 0.75rem;
        font-size: 1rem;
    }

    .comparison-feature-table tbody td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
        padding-left: 2rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

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

    .cta-section {
        /* margin: 0 0.5rem; */
        padding: 2rem;
    }

    .cta-text {
        font-size: 1.2rem;
    }

    .cta-button.btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .pricing-infobox-stat-footnote,
    .infobox-stat-footnote {
        padding: 1rem 1rem 1rem 2.5rem;
        font-size: 0.95rem;
    }

    .comparison-table thead th {
        padding: 1rem 0.5rem;
        font-size: 1rem;
    }

    .comparison-table thead th:first-child {
        padding-left: 2.5rem;
    }

    .comparison-table thead th:last-child {
        padding-right: 2.5rem;
    }

    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.95rem;
    }

    .comparison-table td:first-child {
        padding-left: 2.5rem;
    }

    .comparison-table td:last-child {
        font-size: 1.1rem;
    }

    .comparison-table td b {
        font-size: 1.2rem;
    }

    .cta-text {
        font-size: 1.3rem;
    }

    .custom-calendar {
        padding: 10px;
    }

    .trust-indicator-icon {
        font-size: 1.5rem;
    }

    .trust-indicator-text {
        font-size: 0.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .doctor-card {
        padding: 1rem;
    }

    .doctor-image img {
        width: 100px;
        height: 100px;
    }

    .doctor-image::before {
        width: 120px;
        height: 120px;
    }

    .doctor-name {
        font-size: 1.2rem;
    }

    .specialty-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .carousel-controls {
        /* flex-direction: column; */
        gap: 1rem;
    }

    .carousel-counter {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .accreditation-logo {
        padding: 1rem;
        min-height: 100px;
    }

    .accreditation-logo img {
        max-height: 90px;
    }

    .trust-indicators h3 {
        font-size: 1.4rem;
    }

    .trust-indicators p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .trust-badge {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .why-choose-us-content {
        padding: 1.5rem 1rem;
    }

    .why-choose-us-content h3 {
        font-size: 1.6rem;
    }

    .why-choose-us-content h3::before {
        display: none;
    }

    .why-choose-us-point {
        padding: 1.25rem;
    }

    .why-choose-us-icon {
        width: 45px;
        height: 45px;
    }

    .why-choose-us-info h4 {
        font-size: 1.1rem;
    }

    .why-choose-us-info p {
        font-size: 0.9rem;
    }

    .warning-card {
        padding: 1.5rem;
    }

    .section-cta {
        padding: 2rem 1rem;
    }

    .professional-section {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media screen and (min-width: 769px) {
    .booking-trust-badges {
        /* display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
        display: flex;
        gap: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        transition: none;
    }

    .review-card {
        transition: none;
    }

    .carousel-btn,
    .carousel-dot,
    .celebrity-image-container img {
        transition: none;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .comparison-table tbody tr,
    .cta-button {
        transition: none;
    }

    .pricing-section::before {
        animation: none;
    }

    .cta-button::before {
        transition: none;
    }
}

/* Focus States */
.carousel-btn:focus,
.carousel-dot:focus,
.read-more-btn:focus {
    outline: 2px solid #1e40af;
    outline-offset: 2px;
}

.cta-button.btn:focus {
    outline: 3px solid #1e40af;
    outline-offset: 2px;
}

.warning-card:focus-within {
    outline: 2px solid #1e40af;
    outline-offset: 2px;
}

.treatment-card:focus-within,
.cta-button-primary:focus,
.cta-button-secondary:focus {
    outline: 2px solid #1e40af;
    outline-offset: 2px;
}

.faq-question:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.cta-button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.accreditation-logo:focus-within,
.trust-badge:focus {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .carousel-controls {
        display: none;
    }

    .carousel-track {
        transform: none !important;
    }

    .review-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }

    .pricing-section {
        background: #ffffff;
    }

    .comparison-table {
        box-shadow: none;
        border: 1px solid #000000;
    }

    .cta-section {
        background: #ffffff;
        color: #000000;
        border: 1px solid #000000;
    }

    .cta-button {
        background: #000000;
        color: #ffffff;
    }

    .carousel-controls,
    .cta-section {
        display: none;
    }

    .doctor-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }

    .section-secondary.accreditations-section {
        background: #fff;
        color: #000;
    }

    .accreditation-logo,
    .trust-indicators {
        background: #fff;
        box-shadow: none;
        border: 1px solid #000;
    }

    .trust-badge {
        background: #fff;
        color: #000;
        border: 1px solid #000;
    }

    .why-choose-us-section {
        background: #fff;
        padding: 2rem 0;
    }

    .why-choose-us-content,
    .why-choose-us-point {
        background: #fff;
        box-shadow: none;
        border: 1px solid #000;
        break-inside: avoid;
    }

    .why-choose-us-icon {
        background: #fff;
        border: 1px solid #000;
    }

    .why-choose-us-icon i {
        color: #000;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .comparison-table {
        border: 2px solid #000000;
    }

    .cta-section {
        background: #000000;
        color: #ffffff;
    }

    .cta-button {
        background: #ffffff;
        color: #000000;
        border: 2px solid #000000;
    }

    .doctor-card {
        border: 2px solid #000;
    }

    .specialty-badge {
        border: 1px solid #000;
    }

    .accreditation-logo,
    .trust-indicators {
        border: 2px solid #000;
        background: #fff;
    }

    .section-title h2 {
        text-shadow: none;
    }

    .why-choose-us-content,
    .why-choose-us-point {
        border: 2px solid #000;
        background: #fff;
    }

    .why-choose-us-icon {
        border: 2px solid #000;
    }

    .why-choose-us-content h3,
    .why-choose-us-info h4 {
        -webkit-text-fill-color: initial;
        color: #000;
    }

    .faq-item {
        border: 2px solid var(--text-dark);
    }

    .faq-question {
        border-bottom: 1px solid var(--text-dark);
    }
}

/* Touch-friendly enhancements for mobile */
@media (hover: none) and (pointer: coarse) {
    .cta-button.btn {
        min-height: 54px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* body {
        background: #0f172a;
    } */

    .section-primary {
        color: #e2e8f0;
    }

    .comparison-feature-table,
    .benefit-card,
    .cta-section {
        /* background: rgba(30, 41, 59, 0.95); */
        border-color: rgba(71, 85, 105, 0.3);
    }

    .comparison-feature-table tbody td {
        color: #cbd5e1;
        border-color: rgba(71, 85, 105, 0.3);
    }

    .benefit-description {
        color: #94a3b8;
    }

    .cta-text {
        color: #94a3b8;
    }
}

/* Performance optimizations */
.comparison-table,
.benefit-card,
.stat-item,
.cta-button.btn {
    will-change: transform;
}

.review-card {
    flex: 0 0 50%;
    /* Each card takes up 50% of the viewport width */
    box-sizing: border-box;
    /* Ensures padding is included in the 50% width */
}

/* On smaller screens, make each review take up the full width */
@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;
    }
}

.fixed-bottom-bar {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    /* Optional background */
    padding: 1rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.step-navigation-buttons.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.fixed-bottom-bar.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
/* ============================================= */
/*  Variant 1: Clean & Modern Price Styles
/* ============================================= */
.price-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0 20px 0;
}

.price-line .price-original {
    font-size: 1.5rem;
    color: #718096;
    text-decoration: line-through;
    font-weight: 500;
}

.price-line .price-arrow {
    font-size: 1.5rem;
    color: #a0aec0;
    font-weight: 700;
}

.price-line .price-new {
    font-size: 2.2rem;
    color: #006f96;
    font-weight: 800;
}

.price-line .discount-label {
    font-size: 1rem;
    font-weight: 700;
    color: #28a745;
    background-color: #f0fff4;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #9ae6b4;
}

.hero-offer-box {
    background-color: #f0f9fb;
    border: 2px dashed #0085b3;
    border-radius: 12px;
    padding: 10px;
    margin: 5px auto;
    text-align: center;
    max-width: 450px;
    justify-items: center;
}

.offer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #006f96;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.offer-pricings {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 8px;
}

.offer-pricings .price-original {
    font-size: 1.1rem;
    color: #718096;
    text-decoration: line-through;
}

.offer-pricings .price-new {
    font-size: 1.1rem;
    color: #333;
    font-weight: 800;
}

.offer-saving {
    font-size: 0.9rem;
    font-weight: 700;
    color: #c53030;
    background-color: #fff0f0;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
}
.offer-timer .timer-icon {
	font-size: 2rem;
	color: #006f96;
}

.offer-timer .timer-details {
	display: flex;
	flex-direction: column;
}

.timer-title {
	font-size: 0.9rem;
	color: #555;
	font-weight: 500;
	margin-bottom: 4px;
}

.countdown-timer {
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.time-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fff;
	border-radius: 6px;
	padding: 5px;
}

.time-block span:first-child {
	font-size: 1.2rem;
	font-weight: 700;
	color: #006f96;
	line-height: 1;
}

.time-block .time-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	color: #777;
}

.time-separator {
	font-size: 1.5rem;
	font-weight: 700;
	color: #006f96;
	padding-bottom: 20px;
}
