/* Dental World Muzaffarpur Design System */

:root {
    /* Color Palette */
    --primary: hsl(196, 90%, 35%);
    --primary-light: hsl(196, 85%, 95%);
    --primary-dark: hsl(196, 95%, 20%);
    --secondary: hsl(162, 75%, 40%);
    --secondary-light: hsl(162, 70%, 94%);
    --secondary-dark: hsl(162, 80%, 25%);
    --accent: hsl(38, 95%, 50%); /* For ratings & reviews */
    
    /* Neutral Colors */
    --bg-light: #f6fafd;
    --bg-white: #ffffff;
    --bg-dark: #0a131c;
    --text-dark: #1c2a38;
    --text-muted: #5b6f82;
    --text-light: #ffffff;
    --border-color: rgba(28, 42, 56, 0.08);
    
    /* Layout Details */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(10, 19, 28, 0.05);
}

/* Global Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.25;
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center-wrapper {
    max-width: 700px;
    margin: 0 auto 56px auto;
}

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

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

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(14, 116, 144, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 116, 144, 0.35);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.logo-icon {
    transition: transform 0.5s ease;
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

.brand-name {
    display: block;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-sub {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-btn-mobile {
    display: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
}

.call-action-btn:hover {
    color: var(--primary-dark);
    transform: scale(1.02);
}

.book-btn {
    padding: 10px 20px;
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(14, 116, 144, 0.15);
}

.book-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, transparent 60%);
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-light) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    z-index: -1;
    filter: blur(40px);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1.1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--secondary-light);
    color: var(--secondary-dark);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.badge-star {
    color: var(--accent);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-dark) 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    border-top: none;
    padding-top: 0;
    margin-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    padding: 18px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(10, 19, 28, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    min-width: 140px;
    align-items: center;
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 19, 28, 0.1);
}

.stat-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-visual {
    flex: 0.9;
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 19, 28, 0.12);
    border: 8px solid var(--bg-white);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition-smooth);
}

.visual-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.visual-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to top, rgba(10, 19, 28, 0.9) 0%, transparent 100%);
    color: var(--text-light);
}

.overlay-info h4 {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 4px;
}

.overlay-info p {
    font-size: 13px;
    opacity: 0.8;
}

/* Key Highlights Section */
.highlights-section {
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.highlight-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(10, 19, 28, 0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 19, 28, 0.08);
}

.hl-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.highlight-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.highlight-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-group {
    flex: 1;
    position: relative;
    display: flex;
    gap: 20px;
}

.about-img-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(10, 19, 28, 0.06);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.large-img {
    flex: 1.2;
    height: 440px;
}

.small-img {
    flex: 0.8;
    height: 320px;
    align-self: flex-end;
    margin-bottom: -40px;
}

.about-text-content {
    flex: 1;
}

.section-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
}

.about-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.doctor-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.doc-feature-item {
    display: flex;
    gap: 16px;
}

.tick-box {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 12px;
}

.doc-feature-item strong {
    display: block;
    color: var(--primary-dark);
    font-size: 15px;
    margin-bottom: 2px;
}

.doc-feature-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.author-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.author-details h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.author-details p {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(10, 19, 28, 0.02);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 19, 28, 0.08);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--text-light);
    transform: scale(1.05) rotate(5deg);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(10, 19, 28, 0.04);
}

.gallery-media-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 125%; /* 4:5 Portrait Ratio */
    background-color: var(--bg-light);
}

.gallery-item img, .gallery-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 19, 28, 0.75) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item:hover .media-overlay {
    opacity: 1;
}

.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.08);
}

.play-btn-circle, .zoom-btn-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 12px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .play-btn-circle, .gallery-item:hover .zoom-btn-circle {
    transform: translateY(0);
}

.media-title {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* Testimonials / Reviews Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
}

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

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    min-width: 100%;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(10, 19, 28, 0.04);
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 24px;
    right: 48px;
    font-size: 96px;
    font-family: serif;
    color: rgba(14, 116, 144, 0.05);
    line-height: 1;
}

.rating-stars {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 24px;
}

.review-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.reviewer-meta h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.reviewer-verified {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 500;
}

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

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

/* Appointment Form & Booking */
.booking-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.booking-container {
    display: flex;
    align-items: stretch;
    gap: 80px;
}

.booking-info-panel {
    flex: 1;
}

.booking-info-panel h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.booking-info-panel p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method-item {
    display: flex;
    gap: 20px;
}

.cm-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-method-item p, .cm-link {
    font-size: 14px;
    color: var(--text-muted);
}

.cm-link:hover {
    color: var(--primary);
}

.booking-form-wrapper {
    flex: 1.1;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(10, 19, 28, 0.02);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.1);
}

/* Success Message inside Form */
.form-success-msg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    z-index: 10;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 16px;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* Locations & Maps */
.locations-section {
    padding: 100px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.location-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(10, 19, 28, 0.02);
}

.loc-badge {
    position: absolute;
    top: 24px;
    right: 40px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--primary-light);
    color: var(--primary);
}

.new-badge {
    background-color: var(--secondary-light);
    color: var(--secondary-dark);
}

.location-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.loc-address {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 24px;
}

.map-placeholder {
    width: 100%;
    height: 220px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 32px 0;
    font-size: 14px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.footer-brand p {
    max-width: 320px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 24px;
}

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

.footer-links a:hover {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    font-size: 13px;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 19, 28, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img, .lightbox-content video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 40px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
}

/* Single Location Styling */
.single-location-container {
    max-width: 900px;
    margin: 0 auto;
}

.location-card-large {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 48px;
    position: relative;
    box-shadow: 0 20px 50px rgba(10, 19, 28, 0.04);
}

.loc-details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.loc-detail-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.loc-detail-col strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
}

.loc-detail-col span {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

.map-placeholder-large {
    width: 100%;
    height: 320px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 32px;
}

.location-actions {
    display: flex;
    justify-content: center;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #20ba5a;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* FAQ Section for Local SEO */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.faq-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(10, 19, 28, 0.04);
    border-color: var(--primary-light);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.faq-answer {
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 16px;
    }
    .nav-link {
        font-size: 14px;
    }
    .header-actions {
        gap: 12px;
    }
    .call-action-btn {
        font-size: 14px;
    }
    .book-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    .brand-name {
        font-size: 16px;
    }
    .brand-sub {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        max-width: 500px;
        width: 100%;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .booking-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        gap: 40px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(10, 19, 28, 0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 20px;
        font-weight: 600;
    }
    
    .call-action-btn, .book-btn {
        display: none;
    }
    
    .nav-btn-mobile {
        display: block;
        padding: 14px 28px;
        background-color: var(--primary);
        color: var(--text-light);
        border-radius: var(--border-radius-sm);
        font-weight: 600;
    }
    
    .grid-3, .locations-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .about-image-group {
        width: 100%;
        height: 380px;
    }
    
    .large-img {
        height: 100%;
    }
    
    .small-img {
        display: none; /* Hide secondary image on small devices for simplicity */
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form-wrapper {
        padding: 32px 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 8px;
    }
    
    .lightbox-next {
        right: 8px;
    }
}
