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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.phone-link {
    color: #0054A6;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #003d7a;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
    padding: 40px 0;
    min-height: calc(100vh - 80px);
    max-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(236, 0, 140, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 84, 166, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
    height: 100%;
    animation: fadeInLeft 0.8s ease-out;
}

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

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
}

.hero-headline {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #EC008C 0%, #d1007a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(236, 0, 140, 0.1);
}

.hero-subheadline {
    font-size: 19px;
    color: #555;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.3px;
    position: relative;
    padding-left: 30px;
    animation: fadeInSlide 0.8s ease-out;
}

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

.hero-subheadline::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #EC008C 0%, #d1007a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(236, 0, 140, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(236, 0, 140, 0.3), 0 0 0 0 rgba(236, 0, 140, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 2px 8px rgba(236, 0, 140, 0.3), 0 0 0 8px rgba(236, 0, 140, 0);
        transform: scale(1.05);
    }
}

.hero-free-ribbon-wrapper {
    position: relative;
    margin-bottom: 0;
    margin-top: 20px;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}


.hero-free-ribbon {
    background: linear-gradient(135deg, #EC008C 0%, #d1007a 100%);
    color: white;
    padding: 10px 30px;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(236, 0, 140, 0.4);
    clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
    margin-bottom: -6px;
    text-align: center;
    animation: slideDown 0.6s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-free-ribbon .free-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-free-ribbon .camp-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    line-height: 1.3;
    opacity: 0.95;
}

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

.hero-free-ribbon::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: -1;
}

.hero-free-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: -1;
}

.hero-services-box {
    background: #f8f8f8;
    border: 2px solid #EC008C;
    border-radius: 10px;
    padding: 18px 25px;
    margin-top: 0;
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    box-shadow: 0 4px 15px rgba(236, 0, 140, 0.2);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.3px;
    animation: slideUpHighlight 1s ease-out 0.4s both, borderPulse 3s ease-in-out infinite;
}

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

@keyframes borderPulse {
    0%, 100% {
        border-color: #EC008C;
        box-shadow: 0 4px 15px rgba(236, 0, 140, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 0 0 rgba(236, 0, 140, 0.4);
    }
    50% {
        border-color: #ff00a0;
        box-shadow: 0 4px 15px rgba(236, 0, 140, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 0 4px rgba(236, 0, 140, 0.1);
    }
}

.hero-services-box:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(236, 0, 140, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 0 6px rgba(236, 0, 140, 0.15);
}

.hero-services-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 0, 140, 0.02) 0%, transparent 100%);
    border-radius: 12px;
    pointer-events: none;
}

/* Hide mobile info on desktop */
.hero-mobile-info {
    display: none;
}

.hero-packages {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin-top: 10px;
}

.hero-camp-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin-top: 15px;
}

.hero-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(236, 0, 140, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

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

.hero-image-wrapper img {
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: 580px;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

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

.hero-ivf-title {
    font-size: 56px;
    font-weight: 700;
    color: #0054A6;
    line-height: 1.1;
    margin-bottom: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-starting {
    font-size: 18px;
    font-weight: 700;
    color: #0054A6;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-price-banner {
    background: #EC008C;
    color: white;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(236, 0, 140, 0.25);
}

.price-symbol {
    font-size: 18px;
    font-weight: 600;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Free Services Banner */
.hero-free-services-wrapper {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-free-ribbon {
    background: #EC008C;
    color: white;
    padding: 12px 35px;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(236, 0, 140, 0.35);
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
    margin-bottom: -5px;
}

.hero-free-ribbon::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: -1;
}

.hero-free-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 25px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: -1;
}

.hero-services-box {
    background: #f5f5f5;
    border: 2px solid #EC008C;
    border-radius: 8px;
    padding: 18px 30px;
    margin-top: -5px;
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-free-camp {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-on {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.hero-days {
    font-size: 24px;
    font-weight: 700;
    color: #EC008C;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.hero-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.hero-service-item i {
    color: #0054A6;
    font-size: 18px;
    flex-shrink: 0;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-left: 20px;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

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

.hero-form-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(236, 0, 140, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EC008C 0%, #0054A6 100%);
}

.hero-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(236, 0, 140, 0.15);
}

.hero-form-title {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #EC008C 0%, #d1007a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-form .form-group {
    margin-bottom: 18px;
}

.hero-form .form-input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
    color: #333;
}

.hero-form .form-input::placeholder {
    color: #999;
    font-weight: 400;
}

.hero-form .form-input:focus {
    outline: none;
    border-color: #EC008C;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(236, 0, 140, 0.1), 0 2px 8px rgba(236, 0, 140, 0.15);
    transform: translateY(-1px);
}

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

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #EC008C;
    font-size: 16px;
    z-index: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-form .form-input:focus ~ i,
.input-with-icon:focus-within i {
    color: #EC008C;
    transform: translateY(-50%) scale(1.1);
}

.input-with-icon .form-input {
    padding-left: 45px;
}

.btn-hero-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0054A6 0%, #0066cc 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 6px 20px rgba(0, 84, 166, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-hero-submit:hover {
    background: linear-gradient(135deg, #003d7a 0%, #0054A6 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 84, 166, 0.45);
}

.btn-hero-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 84, 166, 0.35);
}

.hero-privacy {
    margin-top: 15px;
    text-align: center;
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.privacy-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #EC008C;
}

/* Buttons */
.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #EC008C;
    color: white;
}

.btn-primary:hover {
    background: #d1007a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 0, 140, 0.4);
}

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

.btn-whatsapp:hover {
    background: #20ba5a;
    color: white;
}

.btn-call {
    background: #0054A6;
    color: white;
}

.btn-call:hover {
    background: #003d7a;
    color: white;
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    min-width: 0;
    width: 100%;
}

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

.stat-item h3 {
    font-size: 48px;
    color: #DB0C80;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-item p {
    font-size: 18px;
    color: #666;
    font-weight: 600;
    word-break: keep-all;
    word-wrap: break-word;
    hyphens: none;
    line-height: 1.3;
    max-width: 100%;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    color: #DB0C80;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Happy Patients Section */
.happy-patients {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Prime IVF Promotional Section */
.prime-promo-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #EC008C 0%, #d1007a 100%);
    position: relative;
    overflow: hidden;
}

.prime-promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.prime-promo-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255, 255, 255, 0.08) 8px, rgba(255, 255, 255, 0.08) 16px);
    pointer-events: none;
    opacity: 0.6;
}

.promo-stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.promo-stat-center {
    position: relative;
    margin: 0;
}


.promo-stat-circle {
    background: white;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
    box-sizing: border-box;
}

.promo-stat-circle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 2px 15px rgba(255, 255, 255, 0.4) inset;
}

.promo-stat-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-stat-circle:hover::before {
    opacity: 1;
}

.promo-stat-circle:nth-child(2) {
    animation-delay: 0.2s;
}

.promo-stat-circle:nth-child(3) {
    animation-delay: 0.4s;
}

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

.promo-stat-icon {
    color: #EC008C;
    font-size: 26px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    padding: 0 5px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-stat-image {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: none;
}

.promo-stat-circle:hover .promo-stat-icon {
    transform: scale(1.1);
}

.promo-stat-number {
    color: #74C0FC;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    text-align: center;
    max-width: 100%;
    padding: 0 8px;
}

.promo-stat-label {
    color: #2a2a2a;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    max-width: 100%;
    padding: 0 8px;
}

.promo-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.promo-headline {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.3px;
    text-align: center;
}

.promo-description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 400;
    letter-spacing: 0.1px;
    text-align: center;
    max-width: 95%;
    margin: 0 auto;
}

.patients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.patient-image-card {
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 8px;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.patient-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.patient-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.3s;
}

.patient-image-bottom {
    object-position: center top;
}

.patient-image-card:hover .patient-image {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Offers Section */
.offers-section {
    padding: 80px 0;
    background: white;
}

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

.offer-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card i {
    font-size: 48px;
    color: #0054A6;
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 24px;
    color: #DB0C80;
    margin-bottom: 15px;
}

.offer-card p {
    color: #666;
    font-size: 16px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 48px;
    color: #EC008C;
    margin-bottom: 20px;
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    font-size: 22px;
    color: #DB0C80;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 16px;
}

/* Specialists Section */
.specialists-section {
    padding: 80px 0;
    background: white;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.specialist-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.specialist-card:hover {
    transform: translateY(-5px);
}

.specialist-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 8px 20px rgba(0, 84, 166, 0.3);
    position: relative;
    border: 1px solid #0054A6;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    background: white;
    padding: 0;
    box-sizing: border-box;
    display: block;
    border: 1px solid #0054A6;
}

.specialist-card h3 {
    font-size: 24px;
    color: #DB0C80;
    margin-bottom: 10px;
}

.qualification {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.designation {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

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

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.welcome-subtitle {
    text-align: center;
    font-size: 24px;
    color: #DB0C80;
    margin-bottom: 20px;
    font-weight: 600;
}

.welcome-text {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-choose-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.why-choose-item i {
    font-size: 40px;
    color: #0054A6;
    margin-bottom: 20px;
    display: block;
}

.why-choose-item h3 {
    font-size: 22px;
    color: #DB0C80;
    margin-bottom: 15px;
    text-align: center;
}

.mobile-break {
    display: none;
}

.mobile-break-hide {
    display: inline;
}

.why-choose-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

/* Treatments Section */
.treatments-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.treatment-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.treatment-card:hover {
    transform: translateY(-5px);
}

.treatment-card i {
    font-size: 48px;
    color: #EC008C;
    margin-bottom: 20px;
}

.treatment-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.treatment-card h3 {
    font-size: 22px;
    color: #DB0C80;
    margin-bottom: 15px;
}

.treatment-card p {
    color: #666;
    font-size: 16px;
}

/* Centres Section */
.centres-section {
    padding: 80px 0;
    background: white;
}

.centres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.centre-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.centre-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.centre-card h3 {
    font-size: 22px;
    color: #DB0C80;
    margin-bottom: 15px;
}

.centre-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.centre-card i {
    color: #EC008C;
    margin-right: 8px;
}

/* Feedback Section */
.feedback-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feedback-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feedback-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.feedback-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.feedback-card h4 {
    color: #DB0C80;
    font-size: 18px;
    font-weight: 600;
}

/* Feedback Swiper */
.feedback-swiper-wrapper {
    display: none;
}

.feedback-swiper {
    padding: 20px 0 50px 0;
    width: 100%;
}

.feedback-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.feedback-swiper .swiper-pagination {
    bottom: 10px;
}

.feedback-swiper .swiper-pagination-bullet {
    background: #DB0C80;
    opacity: 0.5;
}

.feedback-swiper .swiper-pagination-bullet-active {
    background: #DB0C80;
    opacity: 1;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-subtitle {
    text-align: center;
    font-size: 24px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 600;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #0054A6;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
    color: #333;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(236, 0, 140, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 84, 166, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section .section-title,
.contact-section .contact-subtitle {
    color: #333;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-section .contact-subtitle {
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-address h4,
.contact-details p {
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-address p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.contact-buttons .btn {
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.contact-buttons .btn i {
    font-size: 18px;
}

.contact-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.country-code {
    padding: 12px 15px;
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    border-right: 1px solid #ddd;
}

.phone-input-group input {
    flex: 1;
    padding: 12px;
    border: none;
    font-size: 16px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s;
}

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

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

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    color: #0054A6;
    margin-bottom: 30px;
    font-size: 28px;
}

/* Popup Modal Styles */
.popup-modal {
    z-index: 3000;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.popup-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 380px;
    position: relative;
    animation: popupSlideIn 0.5s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.popup-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EC008C 0%, #0054A6 100%);
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.popup-header {
    background: linear-gradient(135deg, #EC008C 0%, #d1007a 100%);
    padding: 22px 25px 18px 25px;
    text-align: center;
    color: white;
}

.popup-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
    color: white;
}

.popup-subtitle {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
    margin: 0;
    color: white;
}

.popup-get-highlight {
    font-size: 19px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    animation: pulseGlow 2s ease-in-out infinite;
    letter-spacing: 0.5px;
    padding: 0 4px;
    transform: scale(1.08);
}

.popup-a-highlight {
    font-size: 19px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    animation: pulseGlow 2s ease-in-out infinite;
    letter-spacing: 0.5px;
    padding: 0 4px;
    transform: scale(1.08);
}

.popup-free-highlight {
    font-size: 20px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    animation: pulseGlow 2s ease-in-out infinite;
    letter-spacing: 1px;
    padding: 0 4px;
    transform: scale(1.1);
}

.popup-consultation-highlight {
    font-size: 18px;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    animation: pulseGlow 2s ease-in-out infinite;
    letter-spacing: 0.5px;
    padding: 0 4px;
    transform: scale(1.05);
}

.popup-form {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popup-form .form-group {
    display: flex;
    flex-direction: column;
}

.popup-form .form-group label {
    color: #333;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
}

.popup-form .form-input-modal {
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.popup-form .form-input-modal:focus {
    outline: none;
    border-color: #EC008C;
    box-shadow: 0 0 0 3px rgba(236, 0, 140, 0.1);
}

.btn-popup-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #EC008C 0%, #d1007a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 3px;
    box-shadow: 0 4px 15px rgba(236, 0, 140, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-popup-submit:hover {
    background: linear-gradient(135deg, #d1007a 0%, #b8006b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 0, 140, 0.5);
}

.btn-popup-close {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #666;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
}

.btn-popup-close:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
}

.popup-modal .close {
    color: #333;
    font-size: 28px;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-modal .close:hover {
    color: #000;
    background: rgba(255, 255, 255, 1);
    transform: rotate(90deg);
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {
    .popup-modal {
        z-index: 3000;
        padding: 10px;
    }

    .popup-modal-content {
        width: 92%;
        max-width: 360px;
        margin: 8% auto;
        border-radius: 12px;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .popup-header {
        padding: 20px 18px 15px 18px;
    }

    .popup-title {
        font-size: 22px;
    }

    .popup-subtitle {
        font-size: 13px;
    }

    .popup-get-highlight {
        font-size: 17px;
    }

    .popup-a-highlight {
        font-size: 17px;
    }

    .popup-free-highlight {
        font-size: 18px;
    }

    .popup-consultation-highlight {
        font-size: 16px;
    }

    .popup-form {
        padding: 22px 18px;
        gap: 15px;
    }

    .popup-form .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .popup-form .form-input-modal {
        padding: 11px 12px;
        font-size: 15px;
    }

    .btn-popup-submit {
        padding: 13px;
        font-size: 15px;
    }

    .popup-modal .close {
        font-size: 26px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .popup-modal {
        z-index: 3000;
        padding: 5px;
    }

    .popup-modal-content {
        width: 92%;
        max-width: 340px;
        margin: 5% auto;
        border-radius: 12px;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .popup-header {
        padding: 18px 15px 12px 15px;
    }

    .popup-title {
        font-size: 20px;
    }

    .popup-subtitle {
        font-size: 12px;
    }

    .popup-get-highlight {
        font-size: 15px;
    }

    .popup-a-highlight {
        font-size: 15px;
    }

    .popup-free-highlight {
        font-size: 16px;
    }

    .popup-consultation-highlight {
        font-size: 14px;
    }

    .popup-form {
        padding: 18px 15px;
        gap: 14px;
    }

    .popup-form .form-group label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .popup-form .form-input-modal {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-popup-submit {
        padding: 12px;
        font-size: 14px;
    }

    .popup-modal .close {
        font-size: 24px;
        top: 8px;
        right: 8px;
    }
}

/* Promotional Card Section */
.promo-card-section {
    padding: 40px 20px;
    background: #f8f9fa;
}

.promo-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #EC008C 0%, #d1007a 50%, #b8006b 100%);
    border-radius: 25px;
    padding: 60px 50px 0 50px;
    box-shadow: 0 20px 60px rgba(236, 0, 140, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.promo-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-person {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Person Avatar Styles */
.person-avatar {
    width: 180px;
    height: 220px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-face {
    width: 120px;
    height: 120px;
    background: #ffdbac;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.avatar-hair {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 80px;
    background: #2c1810;
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

.person-woman .avatar-hair {
    width: 150px;
    height: 90px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: -25px;
}

.avatar-hair-man {
    width: 130px;
    height: 60px;
    top: -15px;
    border-radius: 50% 50% 0 0;
    background: #6b6b6b;
}

.avatar-eyes {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.eye {
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    display: block;
}

.avatar-smile {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    border: 3px solid #000;
    border-top: none;
    border-radius: 0 0 50px 50px;
}

.avatar-beard {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 50px;
    background: #6b6b6b;
    border-radius: 0 0 50px 50px;
    z-index: 1;
}

.avatar-body {
    width: 140px;
    height: 100px;
    background: #0054A6;
    border-radius: 70px 70px 20px 20px;
    margin-top: -10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.person-woman .avatar-body {
    background: #d1007a;
    width: 150px;
    height: 110px;
    border-radius: 75px 75px 25px 25px;
}

.promo-text-center {
    text-align: center;
    color: #000;
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 3;
}

.promo-main-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-main-icon i {
    font-size: 60px;
    color: #0054A6;
    background: rgba(0, 84, 166, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 84, 166, 0.2);
}

.promo-ivf {
    font-size: 52px;
    font-weight: 800;
    color: #0054A6;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.promo-starting {
    font-size: 16px;
    font-weight: 600;
    color: #0054A6;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.promo-price-banner {
    background: linear-gradient(135deg, #EC008C 0%, #d1007a 100%);
    padding: 16px 40px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(236, 0, 140, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.promo-price-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.promo-price {
    font-size: 36px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.promo-camp-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.promo-free {
    color: #1a1a1a;
    font-weight: 800;
}

.promo-camp {
    color: #0054A6;
    font-weight: 800;
}

.promo-days {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.promo-on,
.promo-amp {
    color: #000;
}

.promo-saturday,
.promo-sunday {
    color: #EC008C;
}

.promo-services {
    margin: 25px 0 30px 0;
    text-align: left;
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

.promo-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
    color: #2a2a2a;
    font-size: 17px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.promo-service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.promo-service-icon {
    color: #0054A6;
    font-size: 24px;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.promo-service-item span {
    flex: 1;
    text-align: left;
}

.promo-service-item .fa-check-circle {
    color: #0054A6;
    font-size: 22px;
    flex-shrink: 0;
}

.btn-promo {
    background: linear-gradient(135deg, #EC008C 0%, #d1007a 100%);
    color: white;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(236, 0, 140, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-promo:hover {
    background: linear-gradient(135deg, #d1007a 0%, #b8006b 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(236, 0, 140, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: #003d7a;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Thank You Page */
.thankyou-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
    position: relative;
}

.thankyou-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(236, 0, 140, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 84, 166, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.thankyou-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 600px;
    padding-top: 0;
}

.thankyou-image-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 450px;
    height: 50%;
    max-height: 580px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    padding-top: 0;
}

.thankyou-image-wrapper::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(236, 0, 140, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.thankyou-image {
    width: 100%;
    height: auto;
    max-width: 450px;
    max-height: 580px;
    object-fit: contain;
    object-position: center top;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.thankyou-content {
    background: white;
    border-radius: 20px;
    padding: 30px 28px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
    animation: slideUp 0.6s ease-out;
    margin-top: 250px;
}

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

.thankyou-icon {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 15px;
    animation: scaleIn 0.5s ease-out 0.2s both;
}

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

.thankyou-title {
    font-size: 28px;
    font-weight: 800;
    color: #EC008C;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #EC008C 0%, #d1007a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thankyou-message {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.thankyou-submessage {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.thankyou-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: nowrap;
}

.thankyou-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 0;
}

.thankyou-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.thankyou-info-item i {
    font-size: 20px;
    color: #0054A6;
    flex-shrink: 0;
}

.thankyou-info-item h3 {
    font-size: 12px;
    color: #666;
    margin-bottom: 3px;
    font-weight: 600;
}

.thankyou-info-item a {
    font-size: 14px;
    color: #0054A6;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.thankyou-info-item a:hover {
    color: #EC008C;
}

.thankyou-actions {
    margin-top: 15px;
}

.thankyou-actions .btn {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Success Card */
.success-card {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.success-card.show {
    display: flex;
}

.success-card-content {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideUp 0.3s ease;
}

.success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
    animation: scaleIn 0.3s ease;
}

.success-title {
    font-size: 24px;
    color: #EC008C;
    margin-bottom: 10px;
    font-weight: 700;
}

.success-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.success-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.success-close:hover {
    color: #333;
}

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

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

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

/* Mobile Action Buttons */
.mobile-action-buttons {
    display: none;
}

.mobile-action-container {
    display: flex;
    align-items: center;
    background: #EC008C;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
}

.mobile-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-action-btn i {
    font-size: 20px;
}

.mobile-action-divider {
    width: 1px;
    height: 40px;
    background: white;
    opacity: 0.3;
}

/* Mobile Sticky Action Button */
.mobile-sticky-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #EC008C;
    box-shadow: 0 -2px 10px rgba(236, 0, 140, 0.3);
    align-items: stretch;
    width: 100%;
}

.mobile-sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    transition: background 0.3s ease;
    background: transparent;
}

.mobile-sticky-btn:hover,
.mobile-sticky-btn:active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.mobile-sticky-btn i {
    font-size: 20px;
    margin-bottom: 2px;
}

.mobile-sticky-btn span {
    font-size: 12px;
    line-height: 1.2;
}

.mobile-sticky-divider {
    width: 1px;
    background: white;
    opacity: 0.3;
    margin: 8px 0;
}

/* Callback Modal Specific Styles */
.callback-modal-content {
    padding: 35px;
}

.callback-modal-title {
    color: #0054A6;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.callback-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input-modal {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input-modal:focus {
    outline: none;
    border-color: #0054A6;
}

.instruction-label {
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.callback-modal-form .form-group label {
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.btn-callback-submit {
    width: 100%;
    padding: 14px;
    background: #EC008C;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
}

.btn-callback-submit:hover {
    background: #d1007a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 0, 140, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        padding-bottom: 70px;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
    }

    .mobile-sticky-actions {
        display: flex;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo-img {
        height: 40px;
    }

    .hero-banner {
        padding: 10px 0 25px 0;
        min-height: auto;
        max-height: none;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero-left {
        text-align: center;
        order: 1;
        padding-right: 0;
        height: auto;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        padding: 0 20px;
    }

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

    .hero-headline {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        position: relative;
        z-index: 10;
        font-weight: 800;
        background: linear-gradient(135deg, #C8007A 0%, #A0006B 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        padding: 15px 20px;
        display: inline-block;
    }

    .hero-headline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(236, 0, 140, 0.08) 0%, rgba(200, 0, 122, 0.05) 100%);
        border-radius: 12px;
        z-index: -1;
        border: 1px solid rgba(236, 0, 140, 0.15);
        box-shadow: 0 4px 15px rgba(236, 0, 140, 0.1);
    }

    .hero-subheadline {
        display: none;
    }

    .hero-free-ribbon-wrapper {
        display: none;
    }

    .hero-services-box {
        display: none;
    }

    .hero-mobile-info {
        display: block;
        width: 100%;
        max-width: 85%;
        margin: 25px auto 0;
        text-align: center;
        order: 2;
    }

    .hero-form-card {
        order: 1;
    }

    .hero-subheadline-mobile {
        font-size: 14px;
        color: #555;
        margin-bottom: 15px;
        font-weight: 600;
        line-height: 1.6;
        letter-spacing: 0.3px;
        position: relative;
        padding-left: 25px;
        text-align: center;
        animation: fadeInSlide 0.8s ease-out;
    }

    .hero-subheadline-mobile::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
        background: linear-gradient(135deg, #EC008C 0%, #d1007a 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(236, 0, 140, 0.3);
        animation: pulseGlow 2s ease-in-out infinite;
    }

    .hero-free-ribbon-wrapper-mobile {
        position: relative;
        margin-top: 15px;
        display: inline-block;
        width: 100%;
        max-width: 100%;
    }


    .hero-free-ribbon-mobile {
        background: linear-gradient(135deg, #EC008C 0%, #d1007a 100%);
        color: white;
        padding: 8px 20px;
        font-size: 20px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        z-index: 2;
        box-shadow: 0 4px 15px rgba(236, 0, 140, 0.4);
        clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
        margin-bottom: -6px;
        text-align: center;
        animation: slideDown 0.6s ease-out;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }

    .hero-free-ribbon-mobile .free-text-mobile {
        font-size: 20px;
        font-weight: 800;
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .hero-free-ribbon-mobile .camp-text-mobile {
        font-size: 12px;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0.3px;
        line-height: 1.3;
        opacity: 0.95;
    }

    .hero-free-ribbon-mobile::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 20px;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        clip-path: polygon(0 0, 100% 0, 0 100%);
        z-index: -1;
    }

    .hero-free-ribbon-mobile::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 20px;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        clip-path: polygon(0 0, 100% 0, 100% 100%);
        z-index: -1;
    }

    .hero-services-box-mobile {
        background: #f8f8f8;
        border: 2px solid #EC008C;
        border-radius: 10px;
        padding: 12px 15px;
        font-size: 12px;
        font-weight: 700;
        color: #333;
        box-shadow: 0 4px 15px rgba(236, 0, 140, 0.2);
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        animation: slideUpHighlight 1s ease-out 0.4s both, borderPulse 3s ease-in-out infinite;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hero-services-box-mobile:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 20px rgba(236, 0, 140, 0.4), 0 0 0 6px rgba(236, 0, 140, 0.15);
    }

    .hero-content-wrapper {
        position: relative;
        min-height: 500px;
    }

    .hero-left {
        position: relative;
        z-index: 5;
        margin-bottom: 0;
    }

    .hero-center {
        order: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -70px;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
    }

    .hero-image-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
    }

    .hero-image-wrapper::before {
        display: none;
    }

    .hero-image-wrapper img {
        max-width: 85%;
        width: 85%;
        height: auto;
        max-height: 75%;
        object-fit: contain;
        object-position: center;
        filter: none;
        opacity: 1;
    }

    .hero-right {
        width: 100%;
        order: 3;
        padding-left: 0;
        height: auto;
        align-items: center;
        flex-direction: column;
        position: relative;
        z-index: 10;
        min-height: 500px;
        display: flex;
        justify-content: flex-end;
        padding-top: 120px;
    }

    .hero-form-card {
        padding: 20px 18px;
        max-width: 85%;
        margin: 200px auto 0 auto;
        position: relative;
        z-index: 10;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(5px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
    }

    .hero-form-title {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .hero-form .form-group {
        margin-bottom: 12px;
    }

    .input-with-icon i {
        font-size: 14px;
        left: 12px;
    }

    .input-with-icon .form-input {
        padding-left: 38px;
        padding: 10px 10px 10px 38px;
        font-size: 14px;
    }

    .btn-hero-submit {
        padding: 12px;
        font-size: 14px;
        margin-top: 5px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

    .stat-item {
        padding: 18px 10px;
        min-height: auto;
        min-width: 0;
        width: 100%;
    }

    .stat-item h3 {
        font-size: 32px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .stat-item p {
        font-size: 13px;
        line-height: 1.3;
        word-break: keep-all;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
    }

    .patients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
    }

    .prime-promo-section {
        padding: 50px 0;
    }

    .promo-stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-content: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .promo-stat-center {
        position: relative;
        left: auto;
        transform: none;
    }

    .promo-stat-circle {
        margin: 0 auto;
    }

    .promo-stats-container .promo-stat-circle:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 200px;
    }


    .promo-stat-circle {
        width: 170px;
        height: 170px;
        padding: 18px;
        overflow: visible;
    }

    .promo-stat-icon {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .promo-stat-image {
        width: 40px;
        height: 40px;
    }

    .promo-stat-number {
        font-size: 26px;
        margin-bottom: 5px;
        padding: 0 10px;
    }

    .promo-stat-label {
        font-size: 11px;
        padding: 0 10px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .promo-headline {
        font-size: 26px;
        margin-bottom: 22px;
    }

    .promo-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .patient-image-card {
        padding: 0;
    }

    .patient-image-card {
        aspect-ratio: 4/3;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .offer-card {
        padding: 25px 15px;
    }

    .offer-card i {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .offer-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .offer-card p {
        font-size: 12px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card i {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .treatments-grid,
    .centres-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 50px 0;
    }
    
    .contact-content {
        max-width: 95%;
        gap: 30px;
        padding: 0 10px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    
    .contact-form {
        gap: 18px;
    }
    
    .form-group input {
        padding: 14px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .contact-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }
    
    .contact-buttons .btn i {
        font-size: 18px;
    }

    .feedback-grid {
        display: none;
    }

    .feedback-swiper-wrapper {
        display: block;
    }

    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }

    .promo-card-section {
        padding: 25px 15px;
    }

    .promo-card {
        padding: 30px 20px 0 20px;
        border-radius: 20px;
    }

    .promo-text-center {
        padding: 25px 20px;
        margin: 0 10px;
        border-radius: 15px;
    }

    .promo-card-content {
        flex-direction: row;
        gap: 15px;
        align-items: flex-end;
        min-height: 200px;
    }

    .promo-person {
        display: flex;
        flex: 0 0 auto;
        align-items: flex-end;
    }

    .person-image {
        width: 100px;
        max-height: 180px;
    }

    .person-image-right {
        width: 130px;
        max-height: 220px;
    }

    .promo-text-center {
        flex: 1;
        padding: 0 10px;
    }

    .promo-ivf {
        font-size: 32px;
        margin-bottom: 3px;
    }

    .promo-starting {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .promo-price-banner {
        padding: 8px 20px;
        margin-bottom: 15px;
    }

    .promo-price {
        font-size: 22px;
    }

    .promo-camp-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .promo-days {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .promo-services {
        margin: 15px 0 20px 0;
    }

    .promo-service-item {
        font-size: 12px;
        gap: 10px;
        margin-bottom: 8px;
    }

    .promo-service-item i {
        font-size: 16px;
    }

    .btn-promo {
        padding: 12px 25px;
        font-size: 14px;
        border-radius: 8px;
    }

    /* Thank You Page Responsive */
    .thankyou-section {
        padding: 50px 0;
    }

    .thankyou-wrapper {
        min-height: 450px;
        align-items: flex-start;
        padding-top: 0;
    }

    .thankyou-image-wrapper {
        display: flex;
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 100%;
        max-width: 500px;
        height: 55%;
        max-height: 650px;
        align-items: flex-start;
        justify-content: center;
        z-index: 1;
        pointer-events: none;
        padding-top: 20px;
    }

    .thankyou-image-wrapper::before {
        content: '';
        position: absolute;
        width: 120%;
        height: 120%;
        background: radial-gradient(circle, rgba(236, 0, 140, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        z-index: -1;
        animation: pulse 3s ease-in-out infinite;
    }

    .thankyou-image {
        width: 100%;
        height: auto;
        max-width: 450px;
        max-height: 580px;
        object-fit: contain;
        object-position: center top;
        display: block;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
        transition: transform 0.3s ease;
    }

    .thankyou-content {
        padding: 35px 30px;
        max-width: 450px;
        margin-top: 250px;
    }

    .thankyou-icon {
        font-size: 55px;
        margin-bottom: 15px;
    }

    .thankyou-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .thankyou-message {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .thankyou-submessage {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .thankyou-info {
        gap: 12px;
        margin-bottom: 20px;
        flex-wrap: nowrap;
    }

    .thankyou-info-item {
        flex: 1;
        padding: 12px 15px;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 12px;
        max-width: 100%;
        width: 100%;
    }

    .hero-banner {
        padding: 10px 0 25px 0;
    }

    .hero-content-wrapper {
        gap: 0;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero-left {
        gap: 15px;
        width: 100%;
        max-width: 85%;
        margin: 0 auto;
        padding: 0 15px;
    }

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

    .hero-headline {
        font-size: 20px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 8px;
        position: relative;
        z-index: 10;
        font-weight: 800;
        background: linear-gradient(135deg, #C8007A 0%, #A0006B 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        padding: 12px 18px;
        display: inline-block;
    }

    .hero-headline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(236, 0, 140, 0.08) 0%, rgba(200, 0, 122, 0.05) 100%);
        border-radius: 10px;
        z-index: -1;
        border: 1px solid rgba(236, 0, 140, 0.15);
        box-shadow: 0 4px 15px rgba(236, 0, 140, 0.1);
    }

    .hero-subheadline {
        display: none;
    }

    .hero-free-ribbon-wrapper {
        display: none;
    }

    .hero-services-box {
        display: none;
    }

    .hero-subheadline-mobile {
        font-size: 13px;
        padding-left: 22px;
    }

    .hero-subheadline-mobile::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .hero-services-box-mobile {
        padding: 10px 12px;
        font-size: 11px;
    }

    .hero-free-ribbon-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .hero-free-ribbon {
        padding: 5px 12px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
    }

    .hero-services-box {
        padding: 8px 6px;
        font-size: 10px;
        white-space: normal;
        overflow: visible;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        line-height: 1.3;
    }

    .hero-content-wrapper {
        min-height: 450px;
    }

    .hero-left {
        position: relative;
        z-index: 5;
        margin-bottom: 0;
    }

    .hero-center {
        display: flex;
        min-height: 450px;
        top: -50px;
    }

    .hero-image-wrapper {
        width: 100%;
        height: 100%;
    }

    .hero-image-wrapper::before {
        display: none;
    }

    .hero-image-wrapper img {
        width: 80%;
        height: auto;
        max-height: 70%;
        object-fit: contain;
        filter: none;
        opacity: 1;
    }

    .hero-right {
        min-height: 450px;
        padding-top: 100px;
    }

    .hero-image {
        height: auto;
    }

    .hero-ivf-title {
        font-size: 36px;
    }

    .hero-starting {
        font-size: 14px;
    }

    .hero-price-banner {
        padding: 8px 16px;
    }

    .price-amount {
        font-size: 24px;
    }

    .hero-free-camp {
        font-size: 18px;
    }

    .hero-days {
        font-size: 18px;
    }

    .hero-service-item {
        font-size: 14px;
    }

    .hero-form-card {
        padding: 18px 15px;
        max-width: 80%;
        margin: 180px auto 0 auto;
    }

    .hero-form-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hero-form .form-group {
        margin-bottom: 10px;
    }

    .input-with-icon i {
        font-size: 13px;
        left: 10px;
    }

    .input-with-icon .form-input {
        padding: 9px 9px 9px 32px;
        font-size: 13px;
    }

    .btn-hero-submit {
        padding: 11px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .promo-card-section {
        padding: 20px 10px;
    }

    .promo-card {
        padding: 20px 10px 0 10px;
    }

    .promo-card-content {
        gap: 10px;
        align-items: flex-end;
        min-height: 180px;
    }

    .promo-person {
        align-items: flex-end;
    }

    .person-image {
        width: 90px;
        max-height: 160px;
    }

    .person-image-right {
        width: 120px;
        max-height: 200px;
    }

    .promo-ivf {
        font-size: 28px;
        margin-bottom: 2px;
    }

    .promo-starting {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .promo-price-banner {
        padding: 6px 15px;
        margin-bottom: 12px;
    }

    .promo-price {
        font-size: 18px;
    }

    .promo-camp-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .promo-days {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .promo-services {
        margin: 12px 0 15px 0;
    }

    .promo-service-item {
        font-size: 11px;
        gap: 8px;
        margin-bottom: 6px;
    }

    .promo-service-item i {
        font-size: 14px;
    }

    .btn-promo {
        padding: 10px 20px;
        font-size: 13px;
    }

    .stats-section {
        padding: 30px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 8px;
    }

    .stat-item {
        padding: 15px 8px;
        min-height: auto;
        min-width: 0;
        width: 100%;
    }

    .stat-item h3 {
        font-size: 28px;
        margin-bottom: 6px;
        line-height: 1.1;
    }

    .stat-item p {
        font-size: 11px;
        line-height: 1.2;
        word-break: keep-all;
        word-wrap: break-word;
        hyphens: none;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .patients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .prime-promo-section {
        padding: 40px 0;
    }

    .promo-stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
        max-width: 100%;
        padding: 0 10px;
    }

    .promo-stat-center {
        position: relative;
        left: auto;
        transform: none;
    }

    .promo-stats-container .promo-stat-circle:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 180px;
    }

    .promo-stats-container::before {
        display: none;
    }

    .promo-stat-circle {
        width: 160px;
        height: 160px;
        padding: 16px;
        overflow: visible;
    }

    .promo-stat-icon {
        font-size: 34px;
        margin-bottom: 6px;
    }

    .promo-stat-image {
        width: 38px;
        height: 38px;
    }

    .promo-stat-number {
        font-size: 24px;
        margin-bottom: 4px;
        padding: 0 8px;
    }

    .promo-stat-label {
        font-size: 10px;
        padding: 0 8px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .promo-headline {
        font-size: 20px;
        margin-bottom: 18px;
        padding: 0 15px;
        line-height: 1.3;
    }

    .promo-description {
        font-size: 15px;
        padding: 0 15px;
        line-height: 1.7;
    }

    .patient-image-card {
        padding: 10px;
    }

    .patient-image-card {
        aspect-ratio: 4/3;
        padding: 5px;
    }

    .hero-image {
        max-width: 250px;
        height: 250px;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-card i {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .offers-grid {
        gap: 10px;
    }

    .offer-card {
        padding: 20px 10px;
    }

    .offer-card i {
        font-size: 32px;
    }

    .offer-card h3 {
        font-size: 14px;
    }

    .offer-card p {
        font-size: 11px;
    }

    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .specialist-card {
        padding: 30px 20px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-choose-item {
        padding: 20px 15px;
    }

    .why-choose-item i {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .why-choose-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .mobile-break {
        display: inline;
    }

    .mobile-break-hide {
        display: none;
    }

    .section-title {
        font-size: 24px;
    }

    .success-card-content {
        padding: 30px 20px;
        max-width: 90%;
    }

    .success-icon {
        font-size: 50px;
    }

    .success-title {
        font-size: 20px;
    }

    .success-message {
        font-size: 14px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-content {
        max-width: 100%;
        gap: 25px;
        padding: 0 15px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    .contact-form {
        gap: 16px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .form-group input {
        padding: 12px;
        font-size: 15px;
        border-radius: 8px;
    }
    
    .contact-buttons {
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    
    .contact-buttons .btn {
        padding: 14px;
        font-size: 15px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }
    
    .contact-buttons .btn i {
        font-size: 16px;
    }
    
    .contact-section .section-title {
        font-size: 28px;
    }
    
    .contact-section .contact-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Thank You Page Responsive */
    .thankyou-section {
        padding: 40px 0;
        min-height: calc(100vh - 150px);
    }

    .thankyou-wrapper {
        min-height: 400px;
    }

    .thankyou-image-wrapper {
        display: flex;
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 100%;
        max-width: 360px;
        height: 48%;
        max-height: 450px;
        align-items: flex-start;
        justify-content: center;
        z-index: 1;
        pointer-events: none;
        padding-top: 15px;
    }

    .thankyou-image {
        width: 100%;
        height: auto;
        max-width: 360px;
        max-height: 450px;
        object-fit: contain;
        object-position: center top;
        display: block;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
        transition: transform 0.3s ease;
    }

    .thankyou-image-wrapper::before {
        display: none;
    }

    .thankyou-content {
        padding: 30px 25px;
        margin: 0 15px;
        max-width: 90%;
        margin-top: 200px;
    }

    .thankyou-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .thankyou-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .thankyou-message {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .thankyou-submessage {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .thankyou-info {
        flex-wrap: nowrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .thankyou-info-item {
        flex: 1;
        padding: 10px 12px;
        min-width: 0;
    }

    .thankyou-info-item i {
        font-size: 22px;
    }

    .thankyou-info-item h3 {
        font-size: 13px;
    }

    .thankyou-info-item a {
        font-size: 15px;
    }

    .thankyou-actions .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

