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

:root {
    /* Professional Medical Color Palette */
    --primary-red: #FF4757;           /* Logo red - CTA & accents */
    --primary-navy: #1A365D;          /* Trust & professionalism */
    --secondary-blue: #2563EB;        /* Interactive elements */
    
    --success-green: #10B981;         /* Health & success */
    --soft-mint: #D1FAE5;             /* Light success backgrounds */
    
    --neutral-dark: #1F2937;          /* Primary text */
    --neutral-medium: #4A5568;        /* Secondary text */
    --neutral-light: #F7FAFC;         /* Light backgrounds */
    --neutral-border: #E2E8F0;        /* Borders */
    
    --white: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 54, 93, 0.12);
    --shadow-lg: 0 8px 24px rgba(26, 54, 93, 0.16);
    --shadow-red: 0 4px 16px rgba(255, 71, 87, 0.2);
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--neutral-dark);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Image Quality Settings */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
}

/* High quality image rendering for modern browsers */
@supports (image-rendering: -webkit-optimize-contrast) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

@supports (image-rendering: crisp-edges) {
    img {
        image-rendering: crisp-edges;
    }
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--neutral-border);
}

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

.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: var(--neutral-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link.active {
    color: var(--primary-navy);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
}

.logo-tagline {
    font-size: 12px;
    color: var(--neutral-medium);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 5px 0;
    transition: 0.3s;
}

.btn-phone {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    color: var(--primary-navy);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-whatsapp {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #E63946 100%);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E63946 0%, var(--primary-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
    background: #1fb855;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--white) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 18px;
    color: var(--neutral-medium);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neutral-dark);
    font-weight: 500;
    padding: 10px 18px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.hero-image-placeholder {
    width: 100%;
    display: flex;
    justify-content: center;
}

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

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 19px;
    color: var(--neutral-medium);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    background: var(--neutral-light);
}

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

.problem-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--neutral-border);
    box-shadow: var(--shadow-sm);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.problem-icon svg {
    filter: drop-shadow(0 2px 6px rgba(255, 71, 87, 0.15));
}

.problem-card h3 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

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

/* Solution Section */
.solution-section {
    background: var(--white);
}

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

.solution-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--neutral-light);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.solution-image-placeholder {
    width: 100%;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    filter: drop-shadow(0 2px 6px rgba(26, 54, 93, 0.1));
}

.benefit-text h3 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.benefit-text p {
    color: var(--neutral-medium);
}

/* Why Delay Section */
.why-delay-section {
    background: var(--neutral-light);
}

.delay-grid {
    display: grid;
    gap: 30px;
}

.delay-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 25px;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 16px;
    border: 2px solid var(--neutral-border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.delay-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.delay-image {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.delay-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.delay-card:hover .delay-image img {
    transform: scale(1.05);
}

.delay-content {
    display: grid;
    grid-template-columns: 200px 50px 1fr;
    gap: 20px;
    align-items: center;
}

.delay-problem {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-dark);
}

.delay-problem svg {
    width: 32px;
    height: 32px;
    color: var(--primary-red);
    stroke: var(--primary-red);
    flex-shrink: 0;
}

.delay-arrow {
    font-size: 24px;
    color: var(--primary-red);
    text-align: center;
}

.delay-solution strong {
    color: var(--primary-navy);
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

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

.steps-container {
    display: grid;
    gap: 30px;
}

.step-item {
    display: grid;
    grid-template-columns: 140px 80px 1fr;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--neutral-border);
}

.step-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-red), var(--success-green));
    transition: width 0.3s ease;
}

.step-item:hover::before {
    width: 8px;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-red);
}

.step-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 5px solid var(--success-green);
}

.step-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-item:hover .step-image::after {
    opacity: 1;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.step-item:hover .step-image img {
    transform: scale(1.1);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #E63946 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-red);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: rotate(360deg) scale(1.1);
}

.step-content h3 {
    font-size: 22px;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    color: var(--neutral-medium);
    line-height: 1.7;
}

/* Unique Offers Section */
.unique-offers-section {
    background: var(--white);
}

/* Specializations Section */
.specializations-section {
    background: var(--neutral-light);
    padding: 80px 0;
}

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

.specialization-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--neutral-border);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.specialization-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.specialization-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.specialization-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.specialization-card:hover .specialization-image img {
    transform: scale(1.05);
}

.specialization-card h3 {
    font-size: 26px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.specialization-card p {
    color: var(--neutral-medium);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.specialization-link {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.specialization-card:hover .specialization-link {
    gap: 10px;
}

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

.offer-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--neutral-border);
    box-shadow: var(--shadow-sm);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-red);
}

.offer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.offer-icon svg {
    filter: drop-shadow(0 2px 6px rgba(255, 71, 87, 0.15));
}

.offer-card h3 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.offer-card p {
    color: var(--neutral-medium);
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0F172A 100%);
    color: var(--white);
}

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

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.booking-info p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--neutral-border);
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: white;
    color: #1A365D;
}

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

/* Placeholder styles */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
    opacity: 1;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #9CA3AF;
    opacity: 1;
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #9CA3AF;
    opacity: 1;
}

.form-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--neutral-medium);
    margin-top: 15px;
}

.form-privacy a {
    color: var(--primary-red);
    text-decoration: none;
}

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

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

.video-testimonial-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.video-testimonial-card video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #000;
}

.video-testimonial-card p {
    color: var(--neutral-medium);
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    margin: 0;
}

/* Hero video */
.hero-image video {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--neutral-border);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--success-green);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--neutral-medium);
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--neutral-medium);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid var(--neutral-border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--primary-red);
}

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

.faq-question:hover {
    background: rgba(255, 71, 87, 0.03);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--primary-navy);
    margin: 0;
}

.faq-toggle {
    font-size: 28px;
    color: var(--primary-red);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--neutral-medium);
    line-height: 1.6;
}

/* Doctors Section */
.doctors-section {
    background: var(--neutral-light);
}

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

.doctor-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.doctor-image {
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--neutral-light);
}

.doctor-info {
    padding: 30px;
}

.doctor-info h3 {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.doctor-specialty {
    color: var(--neutral-medium);
    font-weight: 600;
    margin-bottom: 5px;
}

.doctor-experience {
    color: var(--neutral-medium);
    font-size: 14px;
    margin-bottom: 15px;
}

.doctor-description {
    color: var(--neutral-medium);
    font-style: italic;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 15px;
    margin-right: 20px;
}

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

.contact-item h3 {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--neutral-medium);
}

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

.contact-item a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background: var(--neutral-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Фирменные цвета соцсетей */
.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-youtube:hover {
    background: #FF0000;
}

.social-tiktok:hover {
    background: #000000;
}

.social-whatsapp:hover {
    background: #25D366;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
}

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

/* Fixed Call Button (Mobile Only) */
.fixed-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none; /* Hidden on desktop */
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-red);
    z-index: 999;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: callButtonPulse 2s infinite;
}

@keyframes callButtonPulse {
    0% {
        transform: scale(1);
        box-shadow: var(--shadow-red);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-red);
    }
}

.fixed-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
}

.fixed-call-button svg {
    width: 20px;
    height: 20px;
}

/* Form Row for Date/Time */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group select,
.form-group input[type="date"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: #1A365D;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select:focus,
.form-group input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235F6368' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Стили для option в select */
.form-group select option {
    color: #1A365D;
    background: white;
    padding: 10px;
    font-size: 16px;
}

.form-group select option:disabled {
    color: #9CA3AF;
}

.form-group select option:checked {
    background: #F0F9FF;
    color: #1A365D;
}

/* Стили для placeholder в date input */
.form-group input[type="date"]::-webkit-datetime-edit-text,
.form-group input[type="date"]::-webkit-datetime-edit-month-field,
.form-group input[type="date"]::-webkit-datetime-edit-day-field,
.form-group input[type="date"]::-webkit-datetime-edit-year-field {
    color: #1A365D;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    filter: invert(0.5);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
    animation: whatsappShake 0.5s;
}

@keyframes whatsappShake {
    0%, 100% { transform: scale(1.15) rotate(0deg); }
    25% { transform: scale(1.15) rotate(-10deg); }
    75% { transform: scale(1.15) rotate(10deg); }
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    animation: whatsappIconBounce 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-content,
    .solution-content,
    .booking-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile - Hidden by default with hamburger menu */
    .header {
        padding: 10px 0;
    }

    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    .logo {
        justify-content: flex-start;
    }

    .logo-image {
        height: 60px;
    }

    /* Hamburger Menu Button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-red);
        transition: 0.3s;
        border-radius: 2px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hide navigation and actions by default */
    .main-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    /* Mobile menu overlay */
    .main-nav.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        z-index: 1000;
        padding: 80px 20px 120px;
        overflow-y: auto;
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    /* Show actions inside nav when active */
    .main-nav.active + .header-actions {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--white);
        z-index: 1001;
        padding: 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 12px;
    }

    .nav-link {
        font-size: 18px;
        padding: 15px;
        background: var(--neutral-light);
        border-radius: 8px;
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .header-actions.active {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        padding-top: 20px;
    }

    .btn-phone {
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        padding: 15px;
        background: var(--neutral-light);
        border-radius: 8px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 16px;
    }

    /* Hero Mobile */
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 22px;
        text-align: center;
        font-weight: 700;
        line-height: 1.3;
        color: var(--primary-red);
    }

    .hero-description {
        font-size: 16px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
        padding: 10px;
        background: var(--neutral-light);
        border-radius: 8px;
    }

    .hero-image {
        display: none;
    }

    /* Sections Mobile */
    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Problem Section Mobile */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-card {
        padding: 25px 20px;
    }

    .problem-icon {
        font-size: 44px;
    }

    .problem-card h3 {
        font-size: 18px;
    }

    .problem-card p {
        font-size: 15px;
    }

    /* Solution Section Mobile */
    .solution-benefits {
        gap: 20px;
    }

    .benefit-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }

    .benefit-icon {
        font-size: 32px;
        min-width: 40px;
    }

    .benefit-text h3 {
        font-size: 18px;
    }

    .benefit-text p {
        font-size: 14px;
    }

    /* Why Delay Mobile */
    .delay-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .delay-image {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }

    .delay-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .delay-problem {
        font-size: 18px;
        text-align: center;
        justify-content: center;
    }

    .delay-problem svg {
        width: 28px;
        height: 28px;
    }

    .delay-arrow {
        display: none;
    }
    .delay-arrow {
        transform: rotate(90deg);
        font-size: 20px;
    }

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

    .delay-solution strong {
        font-size: 17px;
    }

    .delay-solution p {
        font-size: 14px;
    }

    /* Steps Mobile */
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .step-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin: 0 auto;
    }

    .step-content h3 {
        font-size: 19px;
    }

    .step-content p {
        font-size: 15px;
    }

    /* Specializations Mobile */
    .specializations-section {
        padding: 50px 0;
    }

    .specializations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .specialization-image {
        height: 180px;
    }

    .specialization-card h3 {
        font-size: 22px;
    }

    .specialization-card p {
        font-size: 15px;
    }

    /* Offers Mobile */
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .offer-icon {
        font-size: 44px;
    }

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

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

    /* Booking Mobile */
    .booking-content {
        gap: 30px;
    }

    .booking-info h2 {
        font-size: 26px;
        text-align: center;
    }

    .booking-info p {
        font-size: 16px;
        text-align: center;
    }

    .booking-features {
        gap: 12px;
    }

    .booking-form {
        padding: 25px 20px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 14px;
    }

    /* Testimonials Mobile */
    .video-testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .video-testimonial-card {
        padding: 15px;
    }

    .video-testimonial-card video {
        height: 300px;
        margin-bottom: 10px;
    }

    /* Hero video mobile */
    .hero-image video {
        max-width: 100%;
        height: 300px;
    }

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

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .author-info strong {
        font-size: 16px;
    }

    .author-info span {
        font-size: 13px;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 18px 15px;
    }

    .faq-question h3 {
        font-size: 16px;
        line-height: 1.4;
        padding-right: 30px;
    }

    .faq-toggle {
        font-size: 24px;
    }

    .faq-answer p {
        padding: 0 15px 18px;
        font-size: 15px;
        line-height: 1.6;
    }

    /* Doctors Mobile */
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .doctor-info {
        padding: 25px 20px;
    }

    .doctor-info h3 {
        font-size: 22px;
    }

    .doctor-specialty,
    .doctor-experience {
        font-size: 15px;
    }

    .doctor-description {
        font-size: 15px;
    }

    /* Contact Mobile */
    .contact-content {
        gap: 40px;
    }

    .contact-info {
        gap: 25px;
    }

    .contact-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }

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

    .contact-icon svg {
        width: 28px;
        height: 28px;
    }

    .contact-item h3 {
        font-size: 17px;
    }

    .contact-item p {
        font-size: 15px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-column h4 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 15px;
    }

    .footer-description {
        font-size: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .footer-legal a {
        font-size: 13px;
    }

    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        left: auto;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }

    /* Show Fixed Call Button on Mobile */
    .fixed-call-button {
        display: flex;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        left: auto;
    }

    /* Form Row Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 24px;
    }

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

    .hero-description {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 20px;
        font-size: 15px;
    }

    .logo-image {
        height: 55px;
    }

    .problem-card,
    .offer-card,
    .testimonial-card,
    .delay-card {
        padding: 20px 15px;
    }

    .booking-form {
        padding: 20px 15px;
    }

    .booking-info h2 {
        font-size: 22px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .fixed-call-button {
        padding: 0;
        width: 55px;
        height: 55px;
        font-size: 15px;
        bottom: 15px;
        right: 15px;
        left: auto;
    }

    .fixed-call-button svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 22px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .btn-large {
        padding: 12px 16px;
        font-size: 14px;
    }

    .logo-image {
        height: 50px;
    }
}

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

.hero-content,
.problem-card,
.benefit-item,
.offer-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp,
    a[href^="tel:"],
    a[href*="wa.me"] {
        min-height: 48px;
        min-width: 48px;
    }

    .faq-question {
        min-height: 64px;
    }

    /* Better tap feedback */
    a, button, .faq-question, .problem-card, .offer-card {
        -webkit-tap-highlight-color: rgba(45, 93, 171, 0.15);
    }

    /* Prevent double-tap zoom */
    * {
        touch-action: manipulation;
    }
}

/* Prevent text selection on interactive elements */
button, 
.btn-primary, 
.btn-secondary, 
.btn-whatsapp,
.faq-question,
.step-number {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Better mobile input styling - prevent zoom on iOS */
@media (max-width: 768px) {
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Optimize animations for mobile */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile-specific utilities */
@media (max-width: 768px) {
    /* Hide decorative elements on mobile */
    .hero-image-placeholder,
    .solution-image-placeholder {
        display: none;
    }

    /* Show images on mobile */
    .solution-image img {
        max-width: 100%;
        border-radius: 12px;
    }

    /* Stack everything vertically */
    .hero-content,
    .solution-content,
    .booking-content,
    .contact-content {
        display: flex;
        flex-direction: column;
    }

    /* Better spacing for mobile */
    .hero-text,
    .booking-info,
    .contact-info {
        width: 100%;
    }

    /* Improve readability */
    p, li, span {
        line-height: 1.6;
    }

    /* Better button spacing */
    .hero-buttons,
    .header-actions {
        gap: 12px;
    }

    /* Optimize images */
    img {
        max-width: 100%;
        height: auto;
    }
}


/* Promo Popup Styles */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.promo-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-popup {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--neutral-light) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-align: center;
}

.promo-popup-overlay.active .promo-popup {
    transform: scale(1);
    opacity: 1;
}

.promo-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--neutral-medium);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.promo-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-red), #E63946);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    animation: badgePulse 2s infinite;
}

.promo-badge svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.promo-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.promo-old-price {
    font-size: 24px;
    color: var(--neutral-medium);
    text-decoration: line-through;
    opacity: 0.6;
}

.promo-new-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-red);
    animation: priceShine 2s infinite;
}

@keyframes priceShine {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 71, 87, 0.3); }
    50% { text-shadow: 0 0 20px rgba(255, 71, 87, 0.6); }
}

.promo-description {
    font-size: 16px;
    color: var(--neutral-medium);
    margin-bottom: 25px;
    line-height: 1.5;
}

.promo-timer {
    background: var(--neutral-light);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.timer-label {
    font-size: 14px;
    color: var(--neutral-medium);
    margin-bottom: 10px;
    font-weight: 600;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-block span:first-child {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-red);
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timer-label-small {
    font-size: 11px;
    color: var(--neutral-medium);
    margin-top: 5px;
}

.timer-separator {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-red);
}

.promo-cta {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #E63946 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-red);
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.promo-note {
    font-size: 12px;
    color: var(--neutral-medium);
    margin-top: 15px;
    opacity: 0.8;
}

/* Gift Box Animation - Улучшенный 3D дизайн */
.gift-box {
    position: fixed;
    width: 90px;
    height: 90px;
    bottom: 100px;
    right: 30px;
    transform: scale(0);
    opacity: 0;
    pointer-events: all;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    perspective: 1000px;
}

.gift-box.popup-mode {
    position: absolute;
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    transform: translate(-50%, -50%) scale(0);
}

.gift-box.popup-mode.active {
    transform: translate(-50%, -50%) scale(1);
}

.gift-box.float-mode {
    transform: scale(1);
    opacity: 1;
    animation: giftFloat 3s ease-in-out infinite, giftGlow 2s ease-in-out infinite;
}

@keyframes giftFloat {
    0%, 100% { transform: scale(1) translateY(0) rotateY(0deg); }
    25% { transform: scale(1.05) translateY(-8px) rotateY(5deg); }
    50% { transform: scale(1.08) translateY(-12px) rotateY(0deg); }
    75% { transform: scale(1.05) translateY(-8px) rotateY(-5deg); }
}

@keyframes giftGlow {
    0%, 100% { 
        filter: drop-shadow(0 8px 15px rgba(255, 71, 87, 0.5)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    }
    50% { 
        filter: drop-shadow(0 12px 25px rgba(255, 71, 87, 0.8)) drop-shadow(0 0 35px rgba(255, 215, 0, 0.6));
    }
}

.gift-box:hover {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 15px 30px rgba(255, 71, 87, 0.9));
}

/* Основная коробка - более реалистичная */
.gift-box-bottom {
    width: 100%;
    height: 60%;
    background: linear-gradient(145deg, #DC143C 0%, #FF1744 40%, #DC143C 100%);
    border-radius: 8px;
    position: absolute;
    bottom: 0;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.4),
        inset 0 -3px 8px rgba(0, 0, 0, 0.3),
        inset 0 3px 8px rgba(255, 255, 255, 0.2),
        inset -3px 0 8px rgba(0, 0, 0, 0.2),
        inset 3px 0 8px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform-style: preserve-3d;
}

/* Добавляем 3D эффект боковых граней */
.gift-box-bottom::before {
    content: '';
    position: absolute;
    right: -4px;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.3), transparent);
    border-radius: 0 8px 8px 0;
}

.gift-box-bottom::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(180deg, rgba(0,0,0,0.4), transparent);
    border-radius: 0 0 8px 8px;
}

/* Крышка - более объёмная */
.gift-box-top {
    width: 105%;
    height: 28%;
    background: linear-gradient(145deg, #FF4757 0%, #FF6B7A 50%, #FF4757 100%);
    border-radius: 10px 10px 4px 4px;
    position: absolute;
    top: 30%;
    left: -2.5%;
    animation: giftLidBounce 2s ease-in-out infinite;
    box-shadow: 
        0 6px 15px rgba(0, 0, 0, 0.35),
        inset 0 3px 6px rgba(255, 255, 255, 0.3),
        inset 0 -2px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
}

/* 3D эффект для крышки */
.gift-box-top::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(145deg, #FF6B7A, #FF8E9E);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 4px rgba(255, 255, 255, 0.4);
}

@keyframes giftLidBounce {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
    }
    50% { 
        transform: translateY(-8px) rotateX(-8deg);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
    }
}

/* Лента - более реалистичная */
.gift-ribbon {
    width: 22%;
    height: 100%;
    background: linear-gradient(90deg, #FFB700 0%, #FFD700 50%, #FFB700 100%);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.6),
        inset -2px 0 4px rgba(0, 0, 0, 0.2),
        inset 2px 0 4px rgba(255, 255, 255, 0.4);
    z-index: 1;
}

/* Горизонтальная лента */
.gift-ribbon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 100%;
    background: linear-gradient(180deg, #FFB700 0%, #FFD700 50%, #FFB700 100%);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

/* Бант - красивый и объёмный */
.gift-bow {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    z-index: 2;
    animation: bowFloat 2s ease-in-out infinite;
}

.gift-bow::before,
.gift-bow::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 30px;
    background: linear-gradient(145deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50% 50% 0 0;
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.3),
        inset -1px 2px 4px rgba(255, 255, 255, 0.5),
        inset 1px -2px 4px rgba(0, 0, 0, 0.2);
}

.gift-bow::before {
    left: -8px;
    transform: rotate(-35deg);
}

.gift-bow::after {
    right: -8px;
    transform: rotate(35deg);
}

/* Центр банта */
.gift-bow svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.6);
}

@keyframes bowFloat {
    0%, 100% { 
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% { 
        transform: translateX(-50%) translateY(-6px) scale(1.08);
    }
}

/* Значок скидки */
.gift-badge {
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #FF1744, #DC143C);
    color: white;
    font-size: 15px;
    font-weight: 900;
    padding: 8px 12px;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(255, 23, 68, 0.7),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: badgePulse 1.5s ease-in-out infinite;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

@keyframes badgePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 6px 20px rgba(255, 23, 68, 0.7);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 8px 30px rgba(255, 23, 68, 1);
    }
}

/* Popup режим */
.gift-box.popup-mode .gift-box-bottom {
    width: 160px;
    height: 95px;
}

.gift-box.popup-mode .gift-box-top {
    width: 168px;
    height: 45px;
    left: -4px;
}

.gift-box.popup-mode .gift-ribbon {
    width: 35px;
    height: 160px;
}

.gift-box.popup-mode .gift-bow {
    width: 70px;
    height: 70px;
    top: 20%;
}

.gift-box.popup-mode .gift-bow::before,
.gift-box.popup-mode .gift-bow::after {
    width: 35px;
    height: 48px;
}

.gift-box.popup-mode .gift-bow::before {
    left: -12px;
}

.gift-box.popup-mode .gift-bow::after {
    right: -12px;
}

.gift-box.popup-mode .gift-bow svg {
    width: 28px;
    height: 28px;
}

.gift-box.popup-mode .gift-badge {
    width: 55px;
    height: 55px;
    font-size: 18px;
    top: 65%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-popup {
        padding: 30px 20px;
        max-width: 90%;
    }

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

    .promo-new-price {
        font-size: 36px;
    }

    .timer-block span:first-child {
        font-size: 24px;
        padding: 8px 12px;
        min-width: 50px;
    }

    .timer-separator {
        font-size: 20px;
    }

    .promo-cta {
        font-size: 16px;
        padding: 15px 25px;
    }

    .gift-box {
        width: 80px;
        height: 80px;
        bottom: 20px;
        left: 20px;
        right: auto;
    }

    .gift-box.popup-mode {
        width: 120px;
        height: 120px;
    }

    .gift-bow {
        font-size: 22px;
        top: -12px;
    }

    .gift-box.popup-mode .gift-bow {
        font-size: 30px;
        top: -15px;
    }
}

/* Checkmark lists styling */
.offer-card ul li {
    position: relative;
    padding-left: 28px;
    list-style: none;
}

.offer-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z' stroke='%232D5DAB' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Professional Enhancements */
section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.3px;
}

p {
    line-height: 1.8;
}

/* Improved Card Shadows */
.specialization-card,
.offer-card,
.testimonial-card,
.problem-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialization-card:hover,
.offer-card:hover,
.problem-card:hover {
    transform: translateY(-8px);
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}

/* Arrow between steps */
.step-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: white;
    font-weight: 800;
    z-index: 11;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--success-green), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    animation: arrowPulse 2.5s ease-in-out infinite;
    border: 3px solid white;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    }
    50% {
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.7);
    }
}

/* Proktologiya hero background mobile fix */
@media (max-width: 768px) {
    .hero[style*="проктология.webp"] {
        background-position: left center !important;
        background-size: 150% !important;
    }
}

@media (max-width: 480px) {
    .hero[style*="проктология.webp"] {
        background-position: left center !important;
        background-size: 180% !important;
    }
}


/* ===== НОВЫЕ СТИЛИ ДЛЯ ПРОДАЮЩИХ ЭЛЕМЕНТОВ ===== */

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(255, 71, 87, 0.5);
    }
}

/* Doctor Section Responsive */
@media (max-width: 968px) {
    .doctor-section > .container > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Pricing Cards Hover Effect */
.pricing-section > .container > div > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Guarantees Section Responsive */
@media (max-width: 768px) {
    .guarantees-section h2 {
        font-size: 32px !important;
    }
    
    .guarantees-section > .container > div:last-of-type {
        grid-template-columns: 1fr !important;
    }
}

/* Stats Grid Responsive */
@media (max-width: 640px) {
    .hero-content > div > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* Button Full Width */
.btn-full {
    width: 100%;
    display: block;
}

/* Smooth Transitions */
* {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Doctor Info Toggle - Mobile Only */
@media (max-width: 768px) {
    .doctor-info-toggle {
        display: block !important;
    }
    
    .doctor-info-extra {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out, opacity 0.3s ease;
        opacity: 0;
    }
    
    .doctor-info-extra.active {
        max-height: 2000px;
        opacity: 1;
        transition: max-height 0.8s ease-in-out, opacity 0.5s ease 0.2s;
    }
    
    .doctor-info-toggle:hover {
        background: linear-gradient(135deg, #4A90E2 0%, #2D5DAB 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(45, 93, 171, 0.3);
    }
    
    .doctor-info-toggle svg {
        transition: transform 0.3s ease;
    }
    
    .doctor-info-toggle.active svg {
        transform: rotate(180deg);
    }
    
    /* Adjust doctor section layout for mobile */
    .doctor-section > .container > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .doctor-info-main {
        margin-bottom: 0 !important;
    }
}

/* Desktop - Always show all info */
@media (min-width: 769px) {
    .doctor-info-toggle {
        display: none !important;
    }
    
    .doctor-info-extra {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
    }
}
