/*
Theme Name: Dr. Amit Khandelwal - Cardiologist
Theme URI: https://dramit.com
Author: QlikWise
Author URI: https://qlikwise.com
Description: A professional, animated WordPress theme for Dr. Amit Khandelwal - Interventional Cardiologist. Features modern design, smooth animations, appointment booking, and patient-focused layout.
Version: 2.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dr-amit
Tags: one-column, custom-menu, featured-images, theme-options, custom-logo, medical, doctor, healthcare

Dr. Amit Khandelwal - Interventional Cardiologist Website Theme
*/

/* ==========================================
   CSS VARIABLES & ROOT STYLES
   ========================================== */
:root {
    /* Primary Colors - DARK RED (Maroon) dominant, Blue secondary */
    --primary-color: #7B1818;
    --primary-dark: #5C1010;
    --primary-light: #9B2828;
    --secondary-color: #1a4f8b;
    --secondary-light: #3a6fa8;

    /* Pastel Accent Colors (5% usage) */
    --accent-pastel-blue: #a8c5e2;
    --accent-pastel-pink: #f4d4d4;
    --accent-pastel-green: #b8d4c8;

    /* Legacy accent variables (mapped to new pastels) */
    --accent-gold: #a8c5e2;
    --accent-teal: #b8d4c8;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f5f7fa;
    --light-gray: #e8ecf0;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;

    /* Simplified Backgrounds (no gradients) */
    --gradient-primary: var(--primary-color);
    --gradient-hero: rgba(123, 24, 24, 0.95);
    --gradient-card: var(--white);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    /* Spacing - Mobile First */
    --section-padding: 50px;
    --container-width: 1200px;

    /* Simplified Shadows (2-tier system) */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 6px 16px rgba(0, 0, 0, 0.15);

    /* Reduced Border Radius (traditional look) */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-full: 20px;

    /* Transitions (simplified) */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
    --transition-bounce: 0.3s ease;
}

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


html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* AOS Animations - elements visible by default until AOS takes over */
html:not(.aos-ready) [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* Links */
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-light {
    background-color: var(--off-white);
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-white { color: var(--white); }
.text-gold { color: var(--accent-gold); }

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.section-subtitle::before { left: -20px; }
.section-subtitle::after { right: -20px; }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: var(--transition-slow);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 95, 122, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(123, 24, 24, 0.3);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(123, 24, 24, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.btn-phone {
    background: var(--accent-gold);
    color: var(--black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--black);
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.125rem;
}

.btn i {
    font-size: 1.1em;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 20px 0;
}

.site-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.site-header.scrolled .nav-link {
    color: var(--dark-gray);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--primary-color);
}

.site-header.scrolled .site-logo img {
    filter: none;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;

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



@media screen and (max-width: 768px) {
    .header-inner {
        gap: 15px;
    }
}

@media screen and (max-width: 576px) {
    .header-inner {
        gap: 10px;
    }
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    flex: 0 0 auto;
}

.site-logo img,
.site-logo-img {
    height: 130px;
    width: 130px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.logo-name {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.site-header.scrolled .logo-name {
    color: var(--primary-color);
}

.logo-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

.site-header.scrolled .logo-title {
    color: var(--medium-gray);
}

/* Header Social Links (Desktop Only) */
.header-social {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.header-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.75rem;
    transition: var(--transition-normal);
}

.header-social a:hover {
    background: var(--white);
    color: var(--primary-color);
}

.site-header.scrolled .header-social a {
    background: rgba(0, 0, 0, 0.08);
    color: var(--dark-gray);
}

.site-header.scrolled .header-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-menu {
    display: flex;
    gap: 10px;
    white-space: nowrap;
    flex-wrap: nowrap;
}


.nav-link {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-normal);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

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

.header-cta .btn {
    padding: 12px 25px;
    font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.site-header.scrolled .mobile-menu-toggle span {
    background: var(--dark-gray);
}

.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);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Animated elements removed for traditional design */

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

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.hero-badge i {
    color: var(--accent-gold);
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

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

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    animation: fadeInUp 0.8s ease 1s forwards;
    opacity: 0;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.5s forwards;
    opacity: 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--accent-gold), var(--primary-light), var(--accent-gold));
    border-radius: var(--radius-lg);
    z-index: -1;
    animation: borderGlow 3s ease infinite;
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: cover;
    max-height: 500px;
    object-position: center top;
}

.hero-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--white);
    gap: 15px;
}

.hero-image-placeholder i {
    font-size: 4rem;
    color: var(--accent-gold);
}

.hero-image-placeholder span {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Hero Image Slider - Horizontal Sliding */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    min-height: 450px;
    max-height: 550px;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--accent-gold), var(--primary-light), var(--accent-gold));
    border-radius: var(--radius-lg);
    z-index: -1;
    animation: borderGlow 3s ease infinite;
}

@media screen and (max-width: 768px) {
    .hero-slide img {
        min-height: 350px;
        max-height: 400px;
    }
}

@media screen and (max-width: 576px) {
    .hero-slide img {
        min-height: 280px;
        max-height: 350px;
    }
}

/* Floating cards removed for traditional design */

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator i {
    font-size: 1.5rem;
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--off-white);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

@media screen and (max-width: 992px) {
    .about-section::before {
        display: none; /* Remove the half background on mobile */
    }
    
    .about-section {
        background: var(--white); /* Full white background on mobile */
    }
}

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

.about-image {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.about-image-background {
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 150px);
    z-index: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

@media screen and (max-width: 992px) {
    .about-image-background {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 500px;
        height: 100%;
        border-radius: var(--radius-lg);
    }
}

.about-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
    filter: grayscale(10%);
}

.about-image-wrapper {
    position: relative;
    display: block;
    width: 100%;
    z-index: 1;
    min-height: 500px;
}

.about-image-main {
    width: 100%;
    max-width: 600px;
    height: 600px;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.experience-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
    margin-top: 5px;
}

.about-text {
    padding-left: 40px;
}

.about-text .section-subtitle {
    text-align: left;
    padding-left: 0;
}

.about-text .section-subtitle::before {
    display: none;
}

.about-text .section-title {
    text-align: left;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-description {
    margin-bottom: 30px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

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

.highlight-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(26, 95, 122, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.highlight-text {
    font-weight: 500;
    color: var(--dark-gray);
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--off-white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.credential-badge i {
    color: var(--accent-gold);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    background: var(--off-white);
    position: relative;
}

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

.service-card {
    background: var(--white);
    color: var(--dark-gray);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(26, 79, 139, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

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

.service-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.service-link i {
    transition: var(--transition-normal);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-choose-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
}

.why-choose-section .section-subtitle {
    color: var(--accent-gold);
}

.why-choose-section .section-subtitle::before,
.why-choose-section .section-subtitle::after {
    background: var(--accent-gold);
}

.why-choose-section .section-title {
    color: var(--white);
}

.why-choose-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-choose-card {
    text-align: center;
    padding: 40px 25px;
    /* background: rgba(255, 255, 255, 0.95); */
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-normal);
}


.why-choose-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--accent-gold);
}

.why-choose-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 10px;
}

.why-choose-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    background: var(--white);
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 40px;
    text-align: center;
}

.testimonial-content {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--off-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ==========================================
   APPOINTMENT SECTION (CTA)
   ========================================== */
.appointment-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #7B1818 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(15deg);
}

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

.appointment-text h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.appointment-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.appointment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.appointment-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.appointment-feature i {
    color: var(--accent-gold);
}

.appointment-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.appointment-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.appointment-form-title {
    text-align: center;
    color: var(--black);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

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

.appointment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

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

.appointment-form textarea {
    resize: vertical;
    min-height: 100px;
}

.appointment-form .btn {
    width: 100%;
    padding: 18px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    background: var(--off-white);
}

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

.contact-info {
    padding-right: 40px;
}

.contact-info .section-subtitle,
.contact-info .section-title {
    text-align: left;
}

.contact-info .section-subtitle::before {
    display: none;
}

.contact-intro {
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    color: var(--medium-gray);
    font-size: 1rem;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.opd-timings {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.opd-timings h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.opd-timings ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.opd-timings li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--light-gray);
}

.opd-timings li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.opd-timings .day {
    font-weight: 500;
    color: var(--dark-gray);
}

.opd-timings .time {
    color: var(--primary-color);
    font-weight: 500;
}

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

.contact-map-item {
    width: 100%;
}

.map-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.map-title i {
    color: var(--secondary-color);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 300px;
    margin-bottom: 10px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-address {
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--black);
    color: var(--white);
    position: relative;
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
    .footer-about .footer-logo {
        justify-content: center;
    }
}

.footer-about .footer-logo img,
.footer-about .footer-logo-img {
    height: 130px;
    width: 130px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-about .footer-logo-text {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a,
.footer-social .social-link {
    width: 45px;
    height: 45px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.footer-social a:hover,
.footer-social .social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-social a:active,
.footer-social .social-link:active {
    transform: scale(0.95);
}

.footer-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

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

.footer-bottom a {
    color: var(--accent-gold);
}

/* ==========================================
   FLOATING ACTION BUTTONS
   ========================================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

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

.floating-btn.phone {
    background: var(--primary-color);
}

.floating-btn.scroll-top {
    background: var(--secondary-color);
    opacity: 0;
    visibility: hidden;
}

.floating-btn.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media screen and (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 992px) {
    /* Hide header social links on mobile */
    .header-social {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .hero-image {
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-floating-card {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: flex-start;
    }

    .about-image {
        order: 1;
        width: 100%;
        margin-bottom: 20px;
    }

    .about-text {
        order: 2;
        padding-left: 0;
        text-align: center;
        width: 100%;
    }

    .about-text .section-subtitle,
    .about-text .section-title {
        text-align: center;
    }

    .about-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-image-main {
        margin: 0 auto;
    }

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

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

    .contact-info {
        padding-right: 0;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link {
        color: var(--dark-gray);
        font-size: 1.1rem;
    }

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

    .header-cta {
        flex-direction: column;
        width: 100%;
    }

    .header-cta .btn {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-inner {
        gap: 15px;
    }

    .site-logo {
        flex: 1;
    }

    /* Better dropdown menu on mobile */
    .has-dropdown .dropdown-menu {
        position: static;
        display: none;
        background: rgba(0, 0, 0, 0.05);
        box-shadow: none;
        padding: 10px 0;
        margin: 10px 0;
        border-radius: var(--radius-sm);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
        max-height: 1000px;
        padding: 10px 0;
    }

    .dropdown-trigger {
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .dropdown-trigger .dropdown-icon {
        transition: transform 0.3s ease;
    }

    .has-dropdown.active .dropdown-trigger .dropdown-icon {
        transform: rotate(180deg);
    }

    .has-dropdown .dropdown-menu li a {
        padding: 12px 20px;
        display: block;
        color: var(--dark-gray);
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .has-dropdown .dropdown-menu li a:hover {
        background: rgba(26, 95, 122, 0.1);
        color: var(--primary-color);
        padding-left: 25px;
    }

    /* Services grid on tablet */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 15px;
    }

    .site-header {
        padding: 12px 0;
    }

    .header-inner {
        gap: 12px;
    }

    .site-logo {
        gap: 8px;
    }

    .site-logo img,
    .site-logo-img {
        height: 90px;
        width: 90px;
    }

    .logo-name {
        font-size: 1rem;
    }

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

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-content {
        padding: 20px 0 40px;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

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

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

    .about-content {
        gap: 40px;
    }

    .about-image {
        min-height: 400px;
    }

    .about-image-main {
        height: 500px;
        max-width: 100%;
    }

    .about-image-background {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 500px;
        height: 100%;
        border-radius: var(--radius-lg);
    }
    
    .about-bg-image {
        object-position: center center;
    }
    
    .about-image {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-about {
        text-align: center;
    }

    .footer-about .footer-logo {
        justify-content: center;
        margin: 0 auto 25px;
    }

    .footer-about p {
        text-align: center;
        margin: 0 auto 25px;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
        text-align: center;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 auto;
    }
    
    .footer-social a,
    .footer-social .social-link {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-contact {
        text-align: center;
    }

    .footer-contact ul {
        gap: 20px;
        align-items: center;
    }
    
    .footer-contact li {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
    }
    
    .footer-contact li i {
        font-size: 1.5rem;
        margin: 0;
    }
    
    .footer-contact li span,
    .footer-contact li a {
        text-align: center;
        font-size: 1rem;
        word-break: break-word;
        display: block;
        padding: 5px 0;
    }

    .testimonial-content {
        padding: 40px 25px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Disable hover effects on mobile for better performance */
    .service-card:hover,
    .why-choose-card:hover,
    .testimonial-content:hover,
    .btn:hover {
        transform: none;
    }

    /* Ensure touch targets are accessible */
    .btn,
    .nav-link,
    input,
    select,
    textarea {
        min-height: 44px;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --section-padding: 50px;
        --container-width: 100%;
    }

    .container {
        padding: 0 12px;
    }

    .header-inner {
        gap: 8px;
    }

    .logo-name {
        font-size: 0.85rem;
    }

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

    .floating-buttons {
        bottom: 12px;
        right: 12px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-height: 44px; /* Touch-friendly */
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 10px 0 30px;
        gap: 30px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

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

    .hero-description {
        font-size: 0.95rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    .hero-image-frame img {
        max-height: 400px;
    }

    .about-content {
        gap: 30px;
    }

    .about-image {
        min-height: 300px;
    }

    .about-image-wrapper {
        max-width: 100%;
    }

    .about-image-main {
        max-width: 100%;
        height: 400px;
    }

    .about-image-background {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 100%;
        height: 100%;
        border-radius: var(--radius-lg);
    }
    
    .about-bg-image {
        object-position: center center;
    }
    
    .about-image {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        min-height: 350px;
    }
    
    .about-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .about-text {
        padding-left: 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-credentials {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .why-choose-card {
        padding: 30px 20px;
    }

    .testimonials-slider {
        max-width: 100%;
    }

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

    .testimonial-content {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .appointment-content {
        gap: 30px;
    }

    .appointment-form-wrapper {
        padding: 25px 15px;
    }

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

    .appointment-buttons {
        flex-direction: column;
        width: 100%;
    }

    .appointment-buttons .btn {
        width: 100%;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }

    .contact-icon {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-text {
        text-align: center;
        width: 100%;
    }

    .contact-text h4 {
        text-align: center;
    }

    .contact-text p,
    .contact-text a {
        text-align: center;
        display: block;
        margin: 5px 0;
    }

    .contact-maps {
        gap: 25px;
    }

    .contact-map {
        min-height: 250px;
        height: 250px;
    }

    .map-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .map-address {
        font-size: 0.85rem;
    }

    .opd-timings {
        padding: 20px 15px;
    }

    .footer-top {
        padding: 50px 0 40px;
    }

    .footer-grid {
        gap: 30px;
    }

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

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

    .section-description {
        font-size: 0.95rem;
    }

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

    .stat-label {
        font-size: 0.85rem;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Touch-friendly improvements */
    .nav-link {
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    img {
        height: auto;
    }

    /* Better form inputs on mobile */
    .appointment-form input,
    .appointment-form select,
    .appointment-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 15px;
        min-height: 44px;
    }

    /* Better table display */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Better image display */
    .service-card img,
    .testimonial-avatar {
        width: 100%;
        height: auto;
    }

    /* Better spacing for sections */
    .section {
        padding: 50px 0;
    }

    /* Better breadcrumb */
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Better floating buttons spacing */
    .floating-buttons {
        gap: 12px;
        bottom: 15px;
        right: 15px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}

/* Additional mobile optimizations */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header-inner {
        gap: 6px;
    }

    .site-logo {
        gap: 6px;
    }

    .site-logo img,
    .site-logo-img {
        height: 75px;
        width: 75px;
    }

    .logo-name {
        font-size: 0.8rem;
    }

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

    .floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

    .about-image-main {
        height: 350px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .testimonial-content {
        padding: 25px 15px;
    }

    .appointment-form-wrapper {
        padding: 20px 15px;
    }

    .footer-top {
        padding: 40px 0 30px;
    }
}

/* Landscape mobile optimization */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero-content {
        padding: 10px 0 20px;
    }
}

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-heart {
    width: 80px;
    height: 80px;
    position: relative;
    animation: pulse 1s ease infinite;
}

.preloader-heart svg {
    width: 100%;
    height: 100%;
    fill: var(--secondary-color);
}

/* ==========================================
   PAGE TEMPLATES
   ========================================== */
.page-header {
    background: var(--gradient-primary);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.breadcrumb a,
.breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.breadcrumb .separator {
    color: var(--accent-gold);
}

/* ==========================================
   WORDPRESS SPECIFIC
   ========================================== */
.wp-block-image img {
    border-radius: var(--radius-sm);
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================
   GALLERY TOGGLE BUTTONS
   ========================================== */
.gallery-toggle {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    background: transparent;
    color: var(--primary-color);
}

.gallery-toggle-btn:hover {
    background: rgba(123, 24, 24, 0.1);
}

.gallery-toggle-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-toggle-btn i {
    font-size: 1.1em;
}

.gallery-content {
    animation: fadeIn 0.3s ease;
}

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

@media screen and (max-width: 576px) {
    .gallery-toggle {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .gallery-toggle-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 12px 25px;
    }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.video-responsive {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-responsive iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* FORCE vertical videos on mobile */
@media (max-width: 768px) {

    .video-grid {
        display: block !important;   /* KILLS flex/grid */
    }

    .video-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }

    .video-responsive {
        width: 100%;
    }

    .video-responsive iframe {
        width: 100% !important;
        height: 100% !important;
    }
}
