/* ============================================
   ADINATH HOSPITAL - STYLES
   Modern, Clean, Professional Healthcare Design
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Teal/Medical Theme */
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;
    --primary-50: rgba(13, 148, 136, 0.1);
    
    /* Secondary - Warm accent */
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
    --font-gujarati: 'Noto Sans Gujarati', sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --container-max: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

/* Hindi & Gujarati font support */
body[data-lang="hi"] {
    font-family: var(--font-hindi), var(--font-primary);
}

body[data-lang="gu"] {
    font-family: var(--font-gujarati), var(--font-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   LANGUAGE SELECTOR
   ============================================ */
.lang-selector {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    padding: 6px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.lang-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--gray-200);
}

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

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-icon {
    font-size: 2rem;
}

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

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav a:not(.btn):hover {
    color: var(--primary);
}

.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav a:not(.btn):hover::after {
    width: 100%;
}

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-600);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--primary-50);
    color: var(--primary);
}

.dropdown-menu a::after {
    display: none !important;
}

/* Right-aligned dropdown for Help menu */
.dropdown-right {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(10px);
}

.nav-dropdown:hover .dropdown-right {
    transform: translateX(0) translateY(0);
}

/* Mobile Dropdown State */
@media (max-width: 900px) {
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        background: var(--gray-50);
        border-radius: var(--radius);
        margin-top: 8px;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.open .dropdown-menu {
        max-height: 300px;
        padding: 8px 0;
    }
    
    .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition);
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .lang-selector {
        top: auto;
        bottom: 100px;
        right: 20px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-50), transparent);
    border-radius: 0 0 0 50%;
    opacity: 0.5;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-info {
    display: flex;
    gap: 32px;
}

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

.info-icon {
    font-size: 1.5rem;
}

.info-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.info-item span {
    font-weight: 600;
    color: var(--gray-900);
}

/* Doctor Cards in Hero */
.hero-image {
    position: relative;
}

.doctor-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doctor-card-mini {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.doctor-card-mini:hover {
    transform: translateX(10px);
}

.doctor-avatar {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 50%;
}

.doctor-info-mini strong {
    display: block;
    font-size: 1.1rem;
    color: var(--gray-900);
}

.doctor-info-mini span {
    font-size: 0.9rem;
    color: var(--primary);
}

@media (max-width: 900px) {
    .hero {
        padding: 100px 0 60px; /* Reduced for mobile */
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-features {
        flex-wrap: wrap;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 16px;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 40px 0;
    background: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--section-padding) 0;
}

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

.service-category {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.service-category:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.service-category.facilities {
    background: var(--primary-50);
    border-color: transparent;
}

.category-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.service-category.facilities .category-header {
    border-color: rgba(13, 148, 136, 0.2);
}

.category-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.category-header h3 {
    margin-bottom: 4px;
}

.category-header p {
    color: var(--primary);
    font-weight: 500;
}

.service-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.service-category .btn {
    width: 100%;
    margin-top: 24px;
}

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

/* ============================================
   DOCTORS SECTION
   ============================================ */
.doctors-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.doctor-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.doctor-image {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.doctor-placeholder {
    font-size: 8rem;
}

.doctor-content {
    padding: 32px;
}

.doctor-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.doctor-title {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.doctor-experience {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.doctor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.specialty-tag {
    padding: 4px 12px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.doctor-interests h4 {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.doctor-interests ul {
    margin-bottom: 16px;
}

.doctor-interests li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.doctor-interests li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.doctor-extras {
    margin-bottom: 16px;
}

.yoga-link {
    display: inline-block;
    padding: 8px 16px;
    background: #f0fdf4;
    color: #15803d;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
}

.doctor-social {
    margin-bottom: 20px;
}

.rotary-badge {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.linkedin-link {
    display: inline-block;
    margin-left: 12px;
    padding: 4px 12px;
    background: #0077b5;
    color: white;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.linkedin-link:hover {
    background: #005885;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .doctor-card {
        grid-template-columns: 1fr;
    }
    
    .doctor-image {
        min-height: 200px;
    }
    
    .doctor-placeholder {
        font-size: 5rem;
    }
}

/* ============================================
   YOGA SECTION
   ============================================ */
.yoga-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.yoga-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.yoga-info h2 {
    margin-bottom: 16px;
}

.yoga-info > p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.yoga-features {
    margin-bottom: 32px;
}

.yoga-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--gray-700);
}

.yoga-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.yoga-placeholder {
    font-size: 12rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .yoga-content {
        grid-template-columns: 1fr;
    }
    
    .yoga-image {
        display: none;
    }
}

/* ============================================
   DR. ASHOK'S CORNER
   ============================================ */
.doctor-corner {
    padding: var(--section-padding) 0;
}

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

.corner-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.corner-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.video-placeholder span {
    font-size: 3rem;
    margin-bottom: 8px;
}

.video-placeholder p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.corner-card h4 {
    margin-bottom: 8px;
}

.corner-card > p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.blog-card {
    background: var(--primary-50);
    border-color: transparent;
}

.blog-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 16px;
}

.read-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 500;
}

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

/* ============================================
   WHAT TO EXPECT SECTION
   ============================================ */
.expect-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--white), var(--gray-50));
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.expect-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.5;
}

.step-image img + .step-placeholder {
    display: none;
}

.expect-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.expect-step p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.expect-cta {
    text-align: center;
}

@media (max-width: 900px) {
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   QUICK ACTIONS SECTION
   ============================================ */
.quick-actions-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0d5c54 100%);
    color: white;
}

.quick-actions-section .section-header h2 {
    color: white;
}

.quick-actions-section .section-header p {
    color: rgba(255,255,255,0.8);
}

.quick-actions-section .section-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}

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

.action-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.action-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.action-card h3 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.action-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    flex: 1;
}

.action-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.action-card:hover .action-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 900px) {
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: var(--section-padding) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    text-align: center;
    color: var(--gray-400);
    line-height: 1.8;
}

.gallery-item.placeholder .gallery-placeholder {
    display: block;
}

.gallery-item img + .gallery-placeholder {
    display: none;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item {
        min-height: 150px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 200px;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--section-padding) 0;
}

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

.contact-info h2 {
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.contact-item p {
    color: var(--gray-700);
}

.map-directions-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.map-directions-link:hover {
    text-decoration: underline;
}

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

.contact-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map iframe {
        height: 300px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 24px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-name {
    color: var(--white);
}

.footer-brand .logo-tagline {
    color: var(--primary-light);
}

.footer-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.social-links a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-700);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray-500);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}


/* ============================================
   FLOATING BOOK NOW BUTTON
   ============================================ */
.floating-book-btn {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

.floating-book-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(13, 148, 136, 0.5);
}

.floating-book-icon {
    font-size: 1.3rem;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(13, 148, 136, 0.6);
    }
}

@media (max-width: 768px) {
    .floating-book-btn {
        bottom: 80px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .floating-book-text {
        display: none;
    }
    
    .floating-book-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    
    .floating-book-icon {
        font-size: 1.5rem;
    }
}

/* ============================================
   ACCESSIBILITY TOGGLE
   ============================================ */
.accessibility-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    width: 48px;
    height: 48px;
    background: var(--gray-800);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.accessibility-toggle:hover {
    background: var(--gray-700);
    transform: scale(1.1);
}

/* Large Text Mode */
body.large-text-mode {
    font-size: 120%;
}

body.large-text-mode h1 {
    font-size: 3rem;
}

body.large-text-mode h2 {
    font-size: 2.5rem;
}

body.large-text-mode h3 {
    font-size: 1.8rem;
}

body.large-text-mode p,
body.large-text-mode li,
body.large-text-mode a {
    font-size: 1.2rem;
    line-height: 1.8;
}

body.large-text-mode .btn {
    padding: 18px 36px;
    font-size: 1.2rem;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.trust-badge-icon {
    font-size: 2rem;
}

.trust-badge-text {
    text-align: left;
}

.trust-badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-badge-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-800);
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   FEEDBACK FORM
   ============================================ */
.feedback-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-50), var(--gray-50));
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.star-rating {
    display: flex;
    gap: 8px;
    font-size: 2rem;
    margin: 20px 0;
}

.star-rating span {
    cursor: pointer;
    color: var(--gray-300);
    transition: color 0.2s ease;
}

.star-rating span:hover,
.star-rating span.active {
    color: #fbbf24;
}

    font-size: 2rem;
    margin: 20px 0;
}

.star-rating span {
    cursor: pointer;
    color: var(--gray-300);
    transition: color 0.2s ease;
}

.star-rating span:hover,
.star-rating span.active {
    color: #fbbf24;
}
