/* ================================
   Reset & Base
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
}

/* ================================
   Header & Navigation
   ================================ */
header {
    background: #000;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

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

.logo img {
    height: 45px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    position: relative;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #d4af37;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.cta-button-outline {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.cta-button-outline:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button {
    background: #d4af37;
    color: white;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.cta-button:hover {
    background: #b8941f;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ================================
   Hero
   ================================ */
.hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

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

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons .cta-button {
    font-size: 1.1rem;
    padding: 1.125rem 2.25rem;
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1.125rem 2.25rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
}

.secondary-button:hover {
    background: white;
    color: #000;
    transform: translateY(-1px);
    border-color: white;
}

/* ================================
   Medical Team / Gallery
   ================================ */
.medical-team {
    padding: 40px 0;
    background: #f8fafa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.team-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.image-gallery {
    width: 100%;
}

.gallery-main {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

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

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0,0,0,0.05);
    border-radius: 0 0 12px 12px;
    justify-content: center;
}

.thumbnail {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    background: #fff;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: #d4af37;
    transform: scale(1.08);
}

.team-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.team-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.credentials {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    margin-bottom: 1rem;
}

.credentials h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 1rem 0;
    color: #666;
    position: relative;
    padding-left: 0;
    line-height: 1.6;
}

.credentials li:before {
    display: none;
}

.credentials li strong {
    color: #000;
    display: block;
    margin-bottom: 0.5rem;
}

/* ================================
   Pricing
   ================================ */
.pricing {
    padding: 20px 0 60px;
    background: #f8fafa;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid #e8eef0;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #d4af37;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #fff 0%, #f8fafa 100%);
    border: 2px solid #d4af37;
    transform: scale(1.05);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 2rem;
}

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

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #666;
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ================================
   About / FAQ / CTA / Footer
   ================================ */
.about {
    padding: 100px 0;
    background: #f8fafa;
}

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

.about-text h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.faq {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid #e8eef0;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem 0;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #d4af37;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: visible;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

footer {
    background: #000;
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content p {
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ================================
   Full Page Service Overlay Styles
   ================================ */
.service-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-overlay.active {
    display: block;
    opacity: 1;
}

.service-overlay-header {
    background: #000;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 2001;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.service-overlay-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-overlay-nav .logo img {
    height: 40px;
}

.service-nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    position: relative;
}

.service-nav-links li {
    position: relative;
}

.service-nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.service-nav-links a:hover {
    color: #d4af37;
}

.service-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
}

.service-nav-links li:hover .service-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.service-dropdown a:last-child {
    border-bottom: none;
}

.service-dropdown a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.service-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-close-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.1);
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-hero {
    background: linear-gradient(135deg, #f8fafa 0%, #fff 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.2;
}

.service-hero .subtitle {
    font-size: 1.3rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.service-details {
    padding: 80px 0;
    background: white;
}

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

.service-benefit-card {
    background: #f8fafa;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.service-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.service-benefit-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-pricing-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.service-pricing-content {
    position: relative;
    z-index: 1;
}

.service-price {
    font-size: 4rem;
    font-weight: 700;
    color: #d4af37;
    margin: 2rem 0;
}

.service-price-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.service-cta-section {
    background: #f8fafa;
    padding: 80px 0;
    text-align: center;
}

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

/* ================================
   Floating Action Buttons
   ================================ */
.floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
}

.floating-btn {
    position: absolute;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #000;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #d4af37;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    background: #d4af37;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.floating-btn.phone {
    right: 20px;
}

.floating-btn.whatsapp {
    left: 20px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* ================================
   Responsive
   ================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        padding: 1rem 0;
        z-index: 999;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        color: white;
        font-size: 1.5rem;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-toggle .hamburger {
        display: block;
        width: 24px;
        height: 2px;
        background: white;
        position: relative;
    }
    .nav-toggle .hamburger::before,
    .nav-toggle .hamburger::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: white;
        left: 0;
    }
    .nav-toggle .hamburger::before {
        top: -6px;
    }
    .nav-toggle .hamburger::after {
        top: 6px;
    }

    .cta-button-outline {
        display: none;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    .about-content, .team-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .enhancement-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .option-card.featured {
        transform: none;
    }

    .pricing-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-image img, .about-image img {
        height: 300px;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-hero,
    .modal-section {
        padding: 40px 20px;
    }
    
    .modal-hero h1 {
        font-size: 2rem;
    }
    
    .modal-benefits {
        grid-template-columns: 1fr;
    }
}