/* ============================================
   SOOD MEDICAL SERVICES - Complete Website CSS
   ============================================ */

:root {
    --primary: #F58220;
    --primary-dark: #E07010;
    --primary-light: #FFF3E6;
    --secondary: #1E293B;
    --text: #334155;
    --text-light: #64748B;
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --border: #E2E8F0;
    --success: #10B981;
    --danger: #EF4444;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--secondary); font-weight: 700; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { color: var(--text-light); font-size: 1.1rem; }
.section-badge {
    display: inline-block; background: var(--primary-light); color: var(--primary-dark);
    padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem;
}

.btn {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem;
    border-radius: 9999px; font-weight: 600; text-decoration: none; border: none; cursor: pointer;
    transition: all 0.3s; font-size: 0.95rem;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 12px rgba(245,130,32,0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,130,32,0.4); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--primary-light); }
.btn-danger { background: var(--danger); color: white; box-shadow: 0 4px 12px rgba(239,68,68,0.3); }
.btn-danger:hover { background: #DC2626; transform: translateY(-2px); }
.btn-dark { background: var(--secondary); color: white; }
.btn-dark:hover { background: #0F172A; transform: translateY(-2px); }

.top-bar {
    background: var(--secondary);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar a { color: white; text-decoration: none; transition: color 0.3s; }
.top-bar a:hover { color: var(--primary); }
.top-bar i { color: var(--primary); margin-right: 0.5rem; }
.emergency-top { background: var(--danger); padding: 0.25rem 0.75rem; border-radius: 9999px; font-weight: 600; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } }

header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.logo-img {
    width: auto; height: 60px; display: flex; align-items: center; justify-content: center;
    position: relative;
}
.logo-img img {
    height: 100%; width: auto; max-width: 180px;
    object-fit: contain;
}
.logo-text h1 { font-size: 1.35rem; color: var(--secondary); line-height: 1.2; font-family: 'Playfair Display', serif; }
.logo-text span { font-size: 0.7rem; color: var(--primary); font-weight: 600; letter-spacing: 0.05em; font-family: 'Inter', sans-serif; }
.logo-text .sanskrit { font-size: 0.65rem; color: var(--text-light); font-style: italic; margin-top: 2px; font-family: 'Inter', sans-serif; }

nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--secondary); font-weight: 500; font-size: 0.9rem;
    position: relative; padding: 0.5rem 0; transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: width 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { width: 100%; }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--secondary); cursor: pointer; }

.page-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #334155 100%);
    padding: 4rem 0 3rem;
    color: white;
    text-align: center;
}
.page-banner h1 { color: white; font-size: 3rem; margin-bottom: 0.5rem; }
.page-banner p { color: #94A3B8; font-size: 1.1rem; }
.page-banner .breadcrumb {
    display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem;
    font-size: 0.875rem; color: #94A3B8;
}
.page-banner .breadcrumb a { color: var(--primary); text-decoration: none; }
.page-banner .breadcrumb a:hover { text-decoration: underline; }

.card {
    background: white; border-radius: 1rem; border: 1px solid var(--border);
    overflow: hidden; transition: all 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }

.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

footer { background: #0F172A; color: #94A3B8; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-img { width: auto; height: 50px; margin-bottom: 1rem; }
.footer-brand .logo-img img { max-width: 150px; }
.footer-brand h3 { color: white; font-size: 1.25rem; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; text-decoration: none;
}
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-links h4 { color: white; font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #94A3B8; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.875rem; }

.whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    background: #25D366; color: white; width: 60px; height: 60px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none; transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }

.img-placeholder {
    background: linear-gradient(135deg, #E2E8F0 0%, #F1F5F9 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); position: relative; overflow: hidden;
}
.img-placeholder::after {
    content: 'IMAGE PLACEHOLDER'; position: absolute; bottom: 1rem;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
    background: rgba(0,0,0,0.5); color: white; padding: 0.25rem 0.75rem; border-radius: 4px;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .page-banner h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .header-inner { padding: 0.75rem 0; }
    .logo-text h1 { font-size: 1.1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .page-banner h1 { font-size: 2rem; }
    .top-bar .container { justify-content: center; }
}
