/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #f8bbd0;
    --secondary-color: #0891b2;
    --secondary-dark: #0e7490;
    --success-color: #22c55e;
    --background: #ffffff;
    --background-light: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --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);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    color: var(--text-secondary);
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary,
.btn-secondary,
.btn-large,
.btn-white {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, #fce7f3 0%, #dbeafe 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(8, 145, 178, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 24px;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--primary-light);
    opacity: 0.5;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.stat span {
    color: var(--text-secondary);
    font-size: 14px;
}

.hero-image-placeholder {
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 16px;
}

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

/* ============================================
   Benefits Section
   ============================================ */
.benefits {
    background: var(--background);
}

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

.benefit-card {
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    line-height: 1.7;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    background: var(--background-light);
}

.steps {
    display: grid;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.step-content {
    background: white;
    padding: 24px 32px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
}

/* ============================================
   Features Section
   ============================================ */
.features {
    background: white;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-image-placeholder {
    width: 100%;
    box-shadow: var(--shadow-xl);
    border-radius: 20px;
    overflow: hidden;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
}

.feature-check {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--success-color), #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: var(--background-light);
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stars {
    color: #fbbf24;
    font-size: 24px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 2px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--text-primary);
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 32px;
    color: var(--primary-color);
}

.contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-item p {
    margin: 0;
}

.emergency-notice {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 16px;
    border-radius: 8px;
    margin-top: 32px;
}

.emergency-notice strong {
    display: block;
    margin-bottom: 8px;
    color: #92400e;
}

.emergency-notice p {
    color: #92400e;
    font-size: 14px;
    margin: 0;
}

/* Form Styles */
.contact-form {
    background: var(--background-light);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px !important;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

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

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

    .hero-badge {
        justify-content: center;
    }

    .hero-tagline {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

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

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

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 0 60px;
    }

    section {
        padding: 60px 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

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

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

    .step {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        margin: 0 auto;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .contact-form {
        padding: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* ============================================
   Additional Styles for New Sections
   ============================================ */

/* Hero Enhancements - Premium Typography */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.3px;
}

.hero-badge i {
    font-size: 14px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1F2937;
    margin-bottom: 12px;
}

.highlight {
    color: #E91E63;
    position: relative;
    display: inline;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(233, 30, 99, 0.12);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle-large {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-tagline i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.hero-main-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.stat-icon-wrapper i {
    font-size: 32px;
    color: white;
}

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

.stat-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.stat-card p {
    font-size: 0.95rem;
}

/* ============================================
   Google Reviews Section
   ============================================ */
.google-reviews {
    background: var(--background-light);
    padding: 80px 0;
}

.google-rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    padding: 24px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.google-logo {
    font-size: 48px;
}

.google-logo i {
    color: #4285f4;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.rating-stars .stars {
    display: flex;
    gap: 4px;
    font-size: 20px;
    color: #fbbf24;
}

.review-count {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.google-review-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.google-review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.reviewer-details h4 {
    font-size: 1.1rem;
    margin: 0 0 4px 0;
    color: var(--text-primary);
}

.review-time {
    font-size: 13px;
    color: var(--text-secondary);
}

.google-icon {
    font-size: 24px;
    color: #4285f4;
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 18px;
    color: #fbbf24;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
}

.view-all-reviews {
    text-align: center;
    margin-top: 48px;
}

.view-all-reviews .btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Products Section */
.products {
    background: #f8f9fa;
    padding: 80px 0;
}

.heading-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.divider {
    display: flex;
    justify-content: center;
    margin: 16px 0 32px;
}

.divider .line {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-slider {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    padding: 32px;
}

.product-body h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.product-features img {
    width: 24px;
    height: 24px;
}

.product-video {
    margin-top: 24px;
    border-radius: 10px;
    overflow: hidden;
}

/* Real Results Gallery Section */
.real-results-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3f7 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.real-results-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(8, 145, 178, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 60px;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 40px 30px 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gallery-caption i {
    font-size: 24px;
    color: #e91e63;
}

.gallery-caption p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.gallery-prev {
    left: 0;
}

.gallery-next {
    right: 0;
}

.gallery-nav i {
    font-size: 20px;
}

.gallery-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 6px;
}

.gallery-cta {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.gallery-cta-text {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.gallery-cta-text i {
    color: var(--primary-color);
    font-size: 24px;
}

.gallery-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Certifications & Medical Reports Section */
.certifications-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.trust-badge {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trust-badge:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.15);
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63 0%, #0891b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.trust-badge:hover .badge-icon {
    transform: rotate(360deg) scale(1.1);
}

.badge-icon i {
    font-size: 36px;
    color: white;
}

.trust-badge h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.trust-badge p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.medical-reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.report-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: start;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.report-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary-color);
    box-shadow: 0 12px 36px rgba(8, 145, 178, 0.15);
}

.report-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fce7f3 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.report-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.report-content h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.report-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.report-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.report-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.report-meta i {
    color: var(--primary-color);
    font-size: 14px;
}

.report-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.report-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

.report-link i {
    font-size: 16px;
}

.report-thumbnail {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}

.report-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.report-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(233, 30, 99, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.report-thumbnail:hover .report-overlay {
    opacity: 1;
}

.report-thumbnail:hover .report-img {
    transform: scale(1.1);
}

.report-overlay i {
    color: white;
    font-size: 32px;
}

.certification-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.highlight-box {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #fce7f3 0%, #dbeafe 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.highlight-box i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: block;
}

.highlight-box h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Certifications Gallery Slider */
.cert-gallery-container {
    margin: 60px 0;
}

.cert-gallery-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.cert-gallery-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    background: #000;
}

.cert-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.cert-gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cert-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.cert-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.cert-gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.cert-gallery-nav i {
    color: var(--primary-color);
    font-size: 20px;
}

.cert-gallery-prev {
    left: 0;
}

.cert-gallery-next {
    right: 0;
}

.cert-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cert-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cert-gallery-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.cert-gallery-dot:hover {
    background: var(--secondary-color);
}

.certification-cta {
    text-align: center;
    padding: 48px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-top: 60px;
}

.certification-cta p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 500;
}

.certification-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.doctor-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.doctor-category {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 14px;
}

.doctor-name {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.doctor-position {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.doctor-quote {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding-left: 24px;
    margin: 0;
}

/* Parent Feedback Section */
.parent-feedback {
    padding: 80px 0;
    background: var(--background-light);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Trusted Hospitals Section */
.trusted-hospitals {
    padding: 80px 0;
    background: white;
}

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

.hospital-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hospital-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.hospital-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: white;
    padding: 16px;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background: var(--background-light);
}

.awards-content {
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: center;
}

.awards-content img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* Contact Enhancements */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.contact-buttons .btn-large {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-video {
    background: var(--background-light);
    padding: 32px;
    border-radius: 20px;
}

.contact-video h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-video iframe {
    border-radius: 10px;
}

.cta-note {
    text-align: center;
    margin-top: 16px;
    color: var(--text-secondary);
    font-style: italic;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 4px;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* ============================================
   Jaundice Calculator Section
   ============================================ */
.jaundice-calculator-section {
    margin: 60px 0 50px;
    position: relative;
    z-index: 2;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.15);
    padding: 48px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(233, 30, 99, 0.1);
}

.calculator-header {
    text-align: center;
    margin-bottom: 36px;
}

.calculator-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.calculator-subtitle {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.calculator-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.calc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fce7f3, #dbeafe);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.calc-badge i {
    color: var(--primary-color);
    font-size: 14px;
}

.jaundice-form {
    max-width: 800px;
    margin: 0 auto;
}

.calc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.calc-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.calc-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.calc-form-group label i {
    color: var(--primary-color);
    font-size: 16px;
}

.calc-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: white;
}

.calc-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.blood-group-row {
    margin-bottom: 24px;
}

.blood-group-row > label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.blood-group-row > label i {
    color: var(--primary-color);
}

.radio-group {
    display: flex;
    gap: 24px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.calc-form-actions {
    text-align: center;
    margin: 28px 0 16px;
}

.btn-calculator {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    border: none;
    font-size: 18px;
    padding: 18px 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-calculator:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.3);
}

.calc-whatsapp-note {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #dcfce7, #d1fae5);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid #86efac;
    margin-top: 8px;
}

.calc-whatsapp-note i {
    font-size: 32px;
    color: #25D366;
    flex-shrink: 0;
}

.calc-whatsapp-note p {
    font-size: 14px;
    color: #166534;
    margin: 0;
    line-height: 1.6;
}

/* Doctor Consulting Note */
.doctor-consulting-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #fce7f3, #dbeafe);
    padding: 20px 24px;
    border-radius: 12px;
    margin-top: 24px;
    border: 1px solid rgba(233, 30, 99, 0.15);
}

.doctor-consulting-note i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.doctor-consulting-note p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

/* ============================================
   Grow Together Section
   ============================================ */
.grow-together-content {
    position: relative;
    z-index: 1;
}

.grow-together-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.grow-stat {
    text-align: center;
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.grow-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.grow-stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.grow-stat-icon i {
    font-size: 32px;
    color: white;
}

.grow-stat h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.grow-stat p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.grow-together-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.grow-card-header {
    margin-bottom: 32px;
}

.grow-card-header i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.grow-card-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.grow-card-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.grow-together-form {
    margin-bottom: 24px;
}

.grow-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.grow-form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.grow-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.grow-form-group label i {
    color: var(--primary-color);
}

.grow-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.grow-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.grow-form-actions {
    text-align: center;
}

.grow-form-actions .btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.grow-contact-direct {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.grow-contact-direct p {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.grow-contact-direct .btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* WhatsApp Hero Button */
.btn-whatsapp-hero {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp-hero:hover {
    background: linear-gradient(135deg, #128C7E, #075E54) !important;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float a {
    display: block;
    background: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float img {
    display: block;
}

/* ============================================
   Partner Form Section
   ============================================ */
.partner-section {
    background: linear-gradient(135deg, #fce7f3 0%, #dbeafe 100%);
    padding: 80px 0;
    position: relative;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(8, 145, 178, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.partner-contact-bar {
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.partner-contact-content {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 24px 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    }
}

.partner-contact-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.partner-contact-text i {
    font-size: 24px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.partner-contact-content .btn-large {
    background: white;
    color: #128C7E;
    border: none;
    white-space: nowrap;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-contact-content .btn-large:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.partner-contact-content .btn-large i {
    color: #25D366;
    font-size: 20px;
}

.partner-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partner-form {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: white;
}

.form-group select {
    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='%23e91e63' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
    display: block;
}

.captcha-group {
    max-width: 400px;
}

.captcha-question {
    background: var(--background-light);
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    border: 2px solid var(--border-color);
}

.captcha-question span {
    color: var(--primary-color);
}

.form-actions {
    margin-top: 32px;
    text-align: center;
}

.form-actions .btn-large {
    min-width: 300px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-success,
.form-error {
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-weight: 500;
    text-align: center;
}

.form-success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* ============================================
   Enhanced Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

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

    .hospitals-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .hero-features-list {
        margin-bottom: 24px;
    }

    .hero-feature-item {
        font-size: 1rem;
    }

    .contact-buttons {
        margin-top: 24px;
    }

    .google-reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-rating-badge {
        flex-direction: column;
        padding: 24px;
    }

    .calc-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .calculator-card {
        padding: 32px 24px;
    }

    .calculator-badges {
        flex-direction: column;
        align-items: center;
    }

    .grow-together-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .grow-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .grow-together-card {
        padding: 32px 24px;
    }

    .gallery-slider {
        height: 450px;
    }

    .gallery-slider-wrapper {
        padding: 0 50px;
    }

    .gallery-caption p {
        font-size: 16px;
    }

    .gallery-cta-text {
        font-size: 18px;
        flex-direction: column;
    }

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

    .medical-reports-grid {
        grid-template-columns: 1fr;
    }

    .report-card {
        grid-template-columns: auto 1fr;
        padding: 24px;
    }

    .report-thumbnail {
        grid-column: 1 / -1;
        width: 100%;
        height: 200px;
        margin-top: 16px;
    }

    .certification-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cert-gallery-slider {
        height: 450px;
    }

    .cert-gallery-slider-wrapper {
        padding: 0 50px;
    }
}

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

    .product-slider {
        height: 200px;
    }

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

    .doctor-quote {
        font-size: 1.1rem;
    }

    .video-container iframe {
        height: 250px !important;
    }

    .contact-video {
        padding: 20px;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 50px;
    }

    .calculator-card {
        padding: 24px 16px;
    }

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

    .calc-whatsapp-note {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .grow-together-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .grow-stat {
        padding: 24px 16px;
    }

    .grow-together-card {
        padding: 24px 16px;
    }

    .grow-card-header i {
        font-size: 36px;
    }

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

    .form-actions .btn-large {
        width: 100%;
        min-width: auto;
    }

    .captcha-group {
        max-width: 100%;
    }

    .partner-contact-content .btn-large {
        width: 100%;
        justify-content: center;
    }

    .partner-contact-bar {
        margin: 0 20px 40px;
    }

    .gallery-slider {
        height: 350px;
    }

    .gallery-slider-wrapper {
        padding: 0 40px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav i {
        font-size: 16px;
    }

    .gallery-caption {
        padding: 20px 15px 15px;
    }

    .gallery-caption i {
        font-size: 20px;
    }

    .gallery-caption p {
        font-size: 14px;
    }

    .gallery-cta {
        padding: 30px 20px;
        margin-top: 60px;
    }

    .gallery-cta-text {
        font-size: 16px;
    }

    .gallery-cta-buttons {
        flex-direction: column;
    }

    .gallery-cta-buttons .btn-large {
        width: 100%;
    }

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

    .trust-badge {
        padding: 24px 16px;
    }

    .badge-icon {
        width: 60px;
        height: 60px;
    }

    .badge-icon i {
        font-size: 28px;
    }

    .report-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .report-icon {
        width: 50px;
        height: 50px;
    }

    .report-icon i {
        font-size: 24px;
    }

    .report-content h3 {
        font-size: 1.2rem;
    }

    .report-link {
        width: 100%;
        justify-content: center;
    }

    .certification-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-box {
        padding: 24px 20px;
    }

    .highlight-box i {
        font-size: 36px;
    }

    .cert-gallery-slider {
        height: 350px;
    }

    .cert-gallery-slider-wrapper {
        padding: 0 40px;
    }

    .cert-gallery-nav {
        width: 40px;
        height: 40px;
    }

    .cert-gallery-nav i {
        font-size: 16px;
    }

    .cert-gallery-caption {
        padding: 15px;
        font-size: 0.9rem;
    }

    .certification-cta {
        padding: 30px 20px;
    }

    .certification-cta p {
        font-size: 1rem;
    }

    .certification-cta-buttons {
        flex-direction: column;
    }

    .certification-cta-buttons .btn-large {
        width: 100%;
    }
}
