/* ===== CSS VARIABLES & THEME ===== */
:root {
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --accent: #10b981;
    --accent-dark: #059669;
    --text: #0f172a;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-lg: rgba(0, 0, 0, 0.12);
    --navbar-bg: #1a0000;
    --footer-bg: #1a0000;
    --gradient-hero: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 40%, #d1d5db 100%);
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

[data-theme="dark"] {
    --primary: #60a5fa;
    --primary-light: #93c5fd;
    --primary-dark: #2563eb;
    --accent: #34d399;
    --accent-dark: #10b981;
    --text: #f1f5f9;
    --text-light: #94a3b8;
    --bg: #0f172a;
    --bg-alt: #1e293b;
    --bg-card: #1e293b;
    --border: #334155;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-lg: rgba(0, 0, 0, 0.5);
    --navbar-bg: rgba(35, 0, 0, 0.97);
    --footer-bg: #020617;
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a5f 100%);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    transition: background-color var(--transition), color var(--transition);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #2d0a0a 0%, #5c1515 40%, #3a0808 70%, #1a0000 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(100, 20, 20, 0.3);
    padding: 0.8rem 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px var(--shadow-lg);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: white;
    padding: 4px;
}

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

.logo-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(20deg);
}

.theme-icon {
    font-size: 1.1rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: white;
    border-radius: 3px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--gradient-hero);
    padding: 140px 2rem 100px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-info {
    flex: 1;
    max-width: 650px;
}

.welcome-tag {
    display: inline-block;
    background: rgba(80, 0, 0, 0.1);
    color: #5c1515;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(80, 0, 0, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero .qualifications {
    font-size: 1.3rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero .doctor-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #5c1515;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-appointment {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 36px;
    background: linear-gradient(135deg, #3d0c0c 0%, #5c1515 100%);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: 0 8px 25px rgba(60, 12, 12, 0.35);
    border: none;
    cursor: pointer;
}

.btn-appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(60, 12, 12, 0.5);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 36px;
    background: linear-gradient(135deg, #3d0c0c 0%, #5c1515 100%);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: 0 8px 25px rgba(60, 12, 12, 0.35);
    border: none;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(60, 12, 12, 0.5);
}

.doctor-photo {
    width: 100%;
    max-width: 600px;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    position: relative;
    transition: all 0.5s ease;
}

.doctor-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
}

.doctor-photo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 70px rgba(16, 185, 129, 0.25);
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

/* ===== STATS SECTION ===== */
.stats-section {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    margin-top: -50px;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.stat-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: all var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #333333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #5c1515, #3d0c0c);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid #7a1c1c;
    box-shadow: 0 4px 15px rgba(60, 12, 12, 0.3);
}

.section-header h2 {
    font-size: 2.8rem;
    color: #111111;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.05rem;
    color: #111111;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    background: var(--bg-alt);
    padding: 100px 2rem;
}

.services-overview-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #e88a8a, #d46a6a);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px var(--shadow);
    border: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffd700;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(60, 12, 12, 0.4);
}

.service-icon {
    margin-bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(92, 21, 21, 0.08);
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CLINIC INFO SECTION ===== */
.clinic-section {
    background: var(--bg);
    padding: 100px 2rem;
}

.clinic-section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.clinic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.clinic-details {
    background: #f9fafb;
    padding: 3rem;
    border-radius: var(--radius);
    color: #111111;
    box-shadow: 0 5px 20px var(--shadow);
    border: 1px solid var(--border);
}

.clinic-details h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #111111;
}

.clinic-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.clinic-detail-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinic-detail-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0.3rem;
}

.clinic-detail-text p {
    font-size: 0.9rem;
    color: #111111;
    line-height: 1.6;
}

.expertise-card {
    background: var(--bg-alt);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.expertise-card h3 {
    font-size: 1.4rem;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.expertise-card-subtitle {
    font-size: 0.92rem;
    color: #111111;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.organs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.organ-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, #e88a8a, #d46a6a);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    border: none;
    transition: all var(--transition);
}

.organ-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(60, 12, 12, 0.4);
}

.organ-dot {
    display: none;
}

.expertise-tags {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.expertise-tag {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 4px solid #5c1515;
    font-size: 1.1rem;
    font-weight: 800;
    color: #5c1515;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all var(--transition);
}

.expertise-tag:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px var(--shadow-lg);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 80px 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.facility-badge {
    display: inline-block;
    background: linear-gradient(135deg, #5c1515, #3d0c0c);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid #7a1c1c;
    animation: pulse 2.5s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(60, 12, 12, 0.3);
}

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

.cta-content h2 {
    font-size: 2.2rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 40px;
    background: white;
    color: var(--accent-dark);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* ===== ABOUT PAGE ===== */
.page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 2rem 80px;
}

.page-section h1 {
    font-size: 2.2rem;
    color: #5c1515;
    margin-bottom: 2rem;
    font-weight: 800;
    white-space: nowrap;
    text-align: center;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-intro-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius);
    border-left: 5px solid #5c1515;
    box-shadow: 0 5px 20px var(--shadow);
}

.about-intro-text {
    font-size: 1.3rem;
    color: #111111;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-intro-card h3 {
    font-size: 1.5rem;
    color: #5c1515;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-points {
    list-style: none;
    padding: 0;
}

.about-points li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    color: #111111;
    line-height: 1.6;
    font-weight: 600;
    font-style: italic;
    font-family: 'Georgia', serif;
}

.about-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5c1515;
    font-weight: 700;
}

.about-text h2 {
    font-size: 1.6rem;
    color: #5c1515;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.about-text p {
    font-size: 1rem;
    color: #111111;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.info-box {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    border: 1px solid var(--border);
}

.info-box h3 {
    color: #5c1515;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.info-box ul {
    list-style: none;
    color: #111111;
}

.info-box li {
    margin: 0.6rem 0;
    line-height: 1.8;
    color: #111111;
    font-size: 1.1rem;
}

.specialist-item {
    position: relative;
    padding-left: 1.8rem;
}

.specialist-item::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #5c1515;
    font-size: 1.3rem;
    font-weight: 700;
}

.achievements {
    margin: 3rem 0;
}

.achievement-item {
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    margin: 1rem 0;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 10px var(--shadow);
    transition: all var(--transition);
}

.achievement-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px var(--shadow-lg);
}

.achievement-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.achievement-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.92rem;
}

/* ===== SERVICES PAGE ===== */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-detail {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius);
    border-left: 5px solid #5c1515;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all var(--transition);
    border-top: none;
}

.service-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-top-color: #5c1515;
}

.service-image {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.service-detail h3 {
    color: #5c1515;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail h4 {
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-detail p {
    color: #111111;
    line-height: 1.7;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.service-detail ul {
    list-style-position: inside;
    color: #111111;
    font-size: 0.92rem;
}

.service-detail ul ul {
    padding-left: 1.5rem;
    margin-top: 0.3rem;
}

.service-detail li {
    margin: 0.5rem 0;
}

/* ===== ENDOUROLOGY & MINIMALLY INVASIVE PAGES ===== */
.page-intro {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius);
    margin-bottom: 3rem;
    border-left: 5px solid #5c1515;
    box-shadow: 0 5px 20px var(--shadow);
}

.page-intro p,
.page-intro li {
    color: #111111;
    line-height: 1.8;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.expertise-section-page {
    margin: 3rem 0;
}

.expertise-section-page h2 {
    color: #5c1515;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.expertise-item {
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid #5c1515;
    box-shadow: 0 2px 10px var(--shadow);
    transition: all var(--transition);
}

.expertise-item:hover {
    transform: translateY(-3px) translateX(3px);
    box-shadow: 0 8px 25px rgba(92, 21, 21, 0.2);
}

.expertise-item p {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
}

.benefits-section {
    background: linear-gradient(135deg, #5c1515 0%, #3d0c0c 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--radius);
    margin: 3rem 0;
}

.benefits-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    backdrop-filter: blur(10px);
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: white;
}

.benefit-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.surgery-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border);
    border-top: 4px solid #5c1515;
}

.surgery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.surgery-card h3 {
    color: #5c1515;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.surgery-card h4 {
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.surgery-card p {
    color: #111111;
    line-height: 1.7;
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
}

.surgery-card ul {
    list-style-position: inside;
    color: #111111;
    font-size: 0.92rem;
}

.surgery-card li {
    margin: 0.4rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.comparison-table th {
    background: #5c1515;
    color: white;
    padding: 0.8rem 1rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
}

.comparison-table td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: #111111;
}

.comparison-table tr:hover td {
    background: var(--bg-alt);
}

.faq-section {
    margin-top: 3rem;
}

.faq-section h2 {
    font-size: 1.8rem;
    color: #5c1515;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.faq-item {
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px var(--shadow);
    border-left: 4px solid #5c1515;
    transition: all var(--transition);
}

.faq-item:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 15px var(--shadow-lg);
}

.faq-item h4 {
    color: #5c1515;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #111111;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-box {
    background: var(--bg-alt);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.contact-info-box h3 {
    color: #5c1515;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: #5c1515;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.info-item p {
    color: #111111;
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px var(--shadow);
    border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
    color: #5c1515;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: all var(--transition);
    background: var(--bg);
    color: var(--text);
}

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

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-dark);
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    display: none;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.appointment-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.appointment-btn {
    padding: 14px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    color: white;
}

.appointment-btn.whatsapp {
    background: #25d366;
}

.appointment-btn.whatsapp:hover {
    background: #20ba58;
    transform: translateY(-2px);
}

.appointment-btn.phone {
    background: #5c1515;
}

.appointment-btn.phone:hover {
    background: #3d0c0c;
    transform: translateY(-2px);
}

.working-hours {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin-top: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    border: 1px solid var(--border);
}

.working-hours h3 {
    color: #5c1515;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-day {
    font-weight: 600;
    color: #5c1515;
}

.hour-time {
    color: #111111;
}

.map-container {
    margin-top: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: var(--bg-alt);
    padding: 80px 2rem;
}

.reviews-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Google Review Header */
.google-review-header {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px var(--shadow);
    border: 1px solid var(--border);
}

.google-doc-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.google-doc-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.google-doc-details h4 {
    font-size: 0.9rem;
    color: #111111;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.google-rating-number {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
}

.google-rating-stars {
    color: #f59e0b;
    font-size: 1rem;
}

.google-based-on {
    font-size: 0.8rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.google-powered {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.google-review-link {
    display: inline-block;
    background: #4285f4;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Reviews Slider */
.reviews-slider {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: flex;
    gap: 1.5rem;
    animation: scrollReviews 30s linear infinite;
    width: max-content;
}

.reviews-grid:hover {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.review-card:hover {
    box-shadow: 0 5px 20px var(--shadow-lg);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e88a8a, #d46a6a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111111;
}

.review-stars {
    color: #f59e0b;
    font-size: 0.85rem;
}

.review-text {
    color: #333333;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== BLOGS PAGE ===== */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 3px 15px var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-logo-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #2d0a0a 0%, #5c1515 40%, #3a0808 70%, #1a0000 100%);
    padding: 2rem;
    height: 250px;
}

.blog-logo-img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 12px;
    object-fit: contain !important;
    background: white;
    padding: 8px;
}

.blog-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.blog-logo-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.blog-logo-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-align: center;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.1rem;
    color: #5c1515;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.blog-article {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: var(--radius);
    border-left: 5px solid #5c1515;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    overflow: hidden;
}

.blog-article.watermarked::before {
    content: "Dr. Bhondave's Super Speciality Urology Centre";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-35deg);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(92, 21, 21, 0.06);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.blog-article.watermarked > * {
    position: relative;
    z-index: 1;
}

.blog-article p {
    font-size: 1.05rem;
    color: #111111;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.blog-article ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-article li {
    font-size: 1rem;
    color: #111111;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.blog-conclusion {
    font-weight: 700;
    font-size: 1.1rem !important;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid #5c1515;
}

.blog-author-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
    text-align: right;
}

.blog-author-info p {
    font-size: 0.95rem !important;
    margin-bottom: 0.8rem !important;
}

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

    .blog-article {
        padding: 1.5rem;
    }
}

.google-map-embed {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    border: 1px solid var(--border);
}

.google-map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .review-card {
        min-width: 280px;
        max-width: 280px;
    }

    .google-doc-info {
        flex-direction: column;
        text-align: center;
    }

    .google-map-embed iframe {
        height: 300px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #2d0a0a 0%, #5c1515 40%, #3a0808 70%, #1a0000 100%);
    color: white;
    padding: 60px 2rem 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    display: block;
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.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 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(-110%) translateY(-50%);
}

.whatsapp-tooltip {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateX(-100%) translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 998;
    box-shadow: 0 4px 15px var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-header {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-info {
        text-align: center;
        max-width: 100%;
    }

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

    .doctor-photo {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 380/450;
        margin: 0 auto;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, #2d0a0a 0%, #5c1515 50%, #1a0000 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .theme-toggle {
        margin-left: auto;
        margin-right: 1rem;
    }

    .hero {
        padding: 120px 1.5rem 80px;
        min-height: auto;
    }

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

    .hero .qualifications {
        font-size: 1.05rem;
    }

    .stats-section {
        margin-top: -30px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .services-overview {
        padding: 60px 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .clinic-section {
        padding: 60px 1.5rem;
    }

    .page-section {
        padding: 100px 1.5rem 60px;
    }

    .page-section h1 {
        font-size: 1.8rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

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

    .expertise-list {
        grid-template-columns: 1fr;
    }

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

    .appointment-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 1rem 60px;
    }

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

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

    .btn-appointment, .btn-call {
        justify-content: center;
    }

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

    .stat-item {
        padding: 1.2rem 0.8rem;
    }

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

    .back-to-top {
        bottom: 30px;
        right: 20px;
    }

    .doctor-photo {
        height: 350px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-title {
        font-size: 0.65rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .page-section h1 {
        font-size: 1.2rem;
        white-space: normal;
    }

    .google-map-embed iframe {
        height: 250px;
    }

    .blog-logo-header {
        height: 180px;
        padding: 1.5rem;
    }

    .blog-logo-img {
        width: 60px !important;
        height: 60px !important;
    }

    .blog-article {
        padding: 1.5rem;
    }

    .about-intro-card {
        padding: 1.5rem;
    }

    .clinic-details, .expertise-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .expertise-section-page h2 {
        font-size: 1.5rem;
    }

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