@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary: #0066A9; /* Medical Blue from Logo */
    --primary-light: #EBF4FA; /* Soft Blue tint */
    --primary-dark: #004D80;
    --secondary: #7DC342; /* Wellness Green from Logo */
    --secondary-light: #F2F9EC; /* Soft Green tint */
    --secondary-dark: #65A330;
    --lavender: #EBF4FA;
    --rose-gold: #0066A9; /* Replaced with brand blue for primary emphasis */
    --blue-highlight: #EBF4FA;
    --text-main: #2D3748;
    --text-muted: #475569;
    --bg-white: #FFFFFF;
    --bg-cream: #F8FAFC; /* Clean medical white-grey */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 102, 169, 0.15);
    --shadow-premium: 0 20px 40px rgba(0, 102, 169, 0.08);
    --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.7;
}

.bg-cream {
    background-color: var(--bg-cream);
}

.text-muted {
    color: var(--text-muted) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Glassmorphism utility */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 102, 169, 0.1);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

/* Premium Buttons */
.btn-premium {
    background: var(--primary);
    color: #fff !important;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 102, 169, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-premium:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: 0 15px 25px rgba(0, 102, 169, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff !important;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    background: #20BA5C;
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.35);
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 169, 0.2);
}

/* Hero Section Redesign */
.hero-section {
    position: relative;
    padding: 2rem 0 6rem;
    background: linear-gradient(135deg, #F8FAFC 0%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.6rem;
    background: var(--secondary-light);
    color: var(--secondary-dark);
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(125, 195, 66, 0.3);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary);
}

.hero-feature-img {
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
    width: 100%;
    max-width: 520px;
    border: 8px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

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

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 102, 169, 0.08);
}

.trust-badge-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 1.8rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-card);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

/* Doctor Section */
.doctor-section {
    background: var(--bg-cream);
    padding: 7rem 0;
}

.img-doctor {
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    width: 100%;
    max-width: 450px;
    border: 6px solid #fff;
}

.doctor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-card);
    font-weight: 600;
    color: var(--primary);
    margin-right: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-light);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 4rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    opacity: 0.2;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-content {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    width: calc(50% - 40px);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 169, 0.05);
}

.timeline-content:hover {
    box-shadow: var(--shadow-premium);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    z-index: 2;
    box-shadow: 0 0 0 8px var(--primary-light);
}

@media (max-width: 768px) {
    .timeline::before { left: 30px; }
    .timeline-badge { left: 30px; }
    .timeline-content { width: calc(100% - 80px); margin-left: 80px !important; }
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    margin: 1rem;
    border: 1px solid rgba(0, 102, 169, 0.05);
}

.verified-badge {
    background: var(--secondary-light);
    color: var(--secondary-dark);
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* FAQs */
.accordion-item {
    border: 1px solid rgba(0, 102, 169, 0.08) !important;
    margin-bottom: 1rem;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--text-main);
    background: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
}

/* Footer */
.footer {
    background: #0F172A;
    color: #CBD5E0;
    padding: 6rem 0 2rem;
}

.footer-title {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-link:hover {
    color: var(--secondary);
}

.sticky-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sticky-whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Animated Background Glows */
.hero-glow-1 {
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 169, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    animation: pulseGlow 8s infinite alternate ease-in-out;
}

.hero-glow-2 {
    bottom: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(125, 195, 66, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    animation: pulseGlow 10s infinite alternate-reverse ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(0.8) translate(0, 0); opacity: 0.5; }
    100% { transform: scale(1.2) translate(30px, 20px); opacity: 0.9; }
}

/* Floating interactive badges */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.interactive-img {
    border-radius: 32px;
    border: 10px solid rgba(255, 255, 255, 0.85);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.interactive-img:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: rgba(255, 255, 255, 1);
}

.floating-badge-top {
    position: absolute;
    top: 30px;
    left: -30px;
    z-index: 3;
    animation: floatAnim 4s infinite alternate ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.floating-badge-bottom {
    position: absolute;
    bottom: 40px;
    right: -20px;
    z-index: 3;
    animation: floatAnim 5s infinite alternate-reverse ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.floating-badge-top:hover, .floating-badge-bottom:hover {
    transform: translateY(-8px) scale(1.08) !important;
    box-shadow: 0 25px 50px rgba(0, 102, 169, 0.18);
    border-color: var(--primary);
}

@keyframes floatAnim {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

.pulse-dot {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulseDotAnim 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulseDotAnim {
    to { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

.interactive-trust-card {
    cursor: pointer;
    border: 2px solid transparent !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.interactive-trust-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--primary) !important;
    box-shadow: 0 15px 30px rgba(0, 102, 169, 0.12);
}

@media (max-width: 768px) {
    .floating-badge-top { left: 10px; top: 10px; }
    .floating-badge-bottom { right: 10px; bottom: 10px; }
}
