/* ============================================
   Sri Samayapuram Mahamariamman Devasthanam
   Main Stylesheet — Part 1: Reset, Variables, Base
   ============================================ */

:root {
    --primary: #b8860b;
    --primary-dark: #8b6508;
    --secondary: #8b0000;
    --accent: #d4af37;
    --bg: #fdf8f0;
    --bg-alt: #f5ede0;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Remove tap flash on iOS */
* { -webkit-tap-highlight-color: transparent; }

/* Touch feedback on buttons */
.btn:active        { opacity: 0.85; -webkit-transform: scale(0.98); transform: scale(0.98); }
.filter-btn:active { opacity: 0.7; }

/* Mobile nav backdrop */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.active { display: block; opacity: 1; }

html { scroll-behavior: smooth; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }

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

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--secondary); line-height: 1.3; }

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   Top Bar — HIDDEN (content moved to footer)
   ============================================ */
.top-bar { display: none; }

/* ============================================
   Header — Two-Row Layout
   ============================================ */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Row 1: Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--secondary);
    padding: 16px 0 10px;
}
.logo img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}
.logo-text {
    text-align: center;
    flex: 1;
}
.logo-text h1 {
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.3px;
}
.logo .tagline {
    font-size: 0.82rem;
    color: var(--text-light);
    font-family: var(--font-body);
    margin-top: 2px;
}

/* Row 2: Navigation */
.nav {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary), #a00);
    border-radius: 0;
}
.nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 0;
}
.nav a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    transition: var(--transition);
    border-radius: 0;
}
.nav a:hover, .nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 20px;
    top: 22px;
}
.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
    touch-action: pan-y;
}
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,0,0,0.7), rgba(184,134,11,0.5));
}
.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
    z-index: 2;
}
.om-symbol { font-size: 3rem; margin-bottom: 0.8rem; text-shadow: 0 0 30px rgba(212,175,55,0.5); }
.slide-content h2 { font-size: 2.2rem; margin-bottom: 0.8rem; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.slide-content p { font-size: 1.05rem; margin-bottom: 1.5rem; max-width: 700px; opacity: 0.95; }

.slider-controls { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; padding: 0 20px; z-index: 3; transform: translateY(-50%); }
.slider-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(139,0,0,0.4);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); }

.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}
.slider-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active { background: var(--accent); border-color: var(--accent); }

/* ============================================
   News Ticker
   ============================================ */
.news-ticker {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 10px 0;
}
.news-ticker .container { display: flex; align-items: center; gap: 15px; }
.ticker-label {
    background: var(--secondary);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}
.ticker-content { flex: 1; overflow: hidden; font-size: 0.9rem; }
.ticker-track {
    display: inline-flex;
    white-space: nowrap;
    -webkit-animation: ticker-scroll 35s linear infinite;
    animation: ticker-scroll 35s linear infinite;
}
.ticker-track:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.ticker-text { padding-right: 60px; }
@-webkit-keyframes ticker-scroll {
    0%   { -webkit-transform: translateX(0); transform: translateX(0); }
    100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 50px 0; }
.section-header { text-align: center; margin-bottom: 30px; }
.section-header h2 { font-size: 1.8rem; margin-bottom: 8px; }
.section-header.left-aligned { text-align: left; }
.section-subtitle { color: var(--text-light); font-size: 0.95rem; }
.decorative-line {
    width: 80px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 0 auto 15px;
    border-radius: 3px;
}
.left-aligned .decorative-line { margin-left: 0; }

/* ============================================
   Welcome Section
   ============================================ */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}
.welcome-image { position: relative; }
.welcome-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.image-frame {
    position: absolute;
    top: 12px; left: 12px; right: -12px; bottom: -12px;
    border: 3px solid var(--accent);
    border-radius: var(--radius);
    z-index: -1;
}
.welcome-text h3 { font-size: 1.35rem; margin-bottom: 0.8rem; }
.welcome-text p { margin-bottom: 1rem; }
.vision-box {
    background: var(--bg-alt);
    padding: 20px 25px;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
}
.vision-box i { color: var(--accent); font-size: 1.5rem; margin-bottom: 8px; }
.vision-box span { display: block; margin-top: 8px; font-weight: 600; color: var(--primary); font-size: 0.9rem; }

/* ============================================
   Highlights Section
   ============================================ */
.highlights-section { background: var(--bg-alt); }
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.highlight-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.highlight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.highlight-icon {
    width: 70px; height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}
.highlight-card h3 { font-size: 1.6rem; color: var(--primary); margin-bottom: 4px; }
.highlight-card small { color: var(--text-light); font-size: 0.8rem; }

/* ============================================
   Goddess Section (Home)
   ============================================ */
.goddess-section { position: relative; background: var(--secondary); color: var(--white); overflow: hidden; }
.goddess-bg {
    position: absolute; inset: 0;
    background: url('../images/goddess-deity.jpg') center/cover;
    opacity: 0.15;
}
.goddess-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.goddess-text h2 { color: var(--accent); }
.goddess-text p { color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.goddess-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ============================================
   Location Section
   ============================================ */
.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.location-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.location-card i { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.location-card h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* ============================================
   Facilities Section
   ============================================ */
.facilities-section { background: var(--bg-alt); }
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.facility-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.facility-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.facility-icon {
    width: 60px; height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--secondary), #c0392b);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}
.facility-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.facility-card p { font-size: 0.9rem; color: var(--text-light); }

/* ============================================
   Gallery Preview (Horizontal Scroll)
   ============================================ */
.gallery-preview-section { background: var(--white); }
.gallery-scroll-wrapper { position: relative; min-width: 0; }
.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
    flex: 0 0 280px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 280px; height: 200px; object-fit: cover; }

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    box-shadow: var(--shadow);
    cursor: pointer;
    font-size: 1rem;
    color: var(--primary);
    z-index: 2;
    transition: var(--transition);
}
.scroll-btn:hover { background: var(--primary); color: var(--white); }
.scroll-left { left: -10px; }
.scroll-right { right: -10px; }

/* ============================================
   Donation Section
   ============================================ */
.donation-section {
    background: linear-gradient(135deg, var(--bg-alt), #f0e6d0);
}
.donation-content { text-align: center; }
.donation-content h2 { font-size: 1.7rem; margin-bottom: 0.8rem; }
.donation-content > p { max-width: 700px; margin: 0 auto 2rem; }
.donation-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}
.bank-info, .contact-cta {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.bank-info h3, .contact-cta h3 { margin-bottom: 15px; font-size: 1.2rem; }
.bank-info p, .contact-cta p { margin-bottom: 8px; font-size: 0.95rem; }

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, #5a0000, var(--secondary));
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 30px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.footer-logo img { width: 55px; height: 55px; object-fit: contain; }
.footer-logo h3 { color: var(--accent); font-size: 1.1rem; }
.footer-col h3 { color: var(--accent); font-size: 1.1rem; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }
.footer-col ul li a i { margin-right: 8px; font-size: 0.7rem; }
.contact-list li { display: flex; gap: 10px; font-size: 0.9rem; }
.contact-list li i { color: var(--accent); margin-top: 4px; flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
}
.visitor-counter i { color: var(--accent); font-size: 0.85rem; }
.visitor-counter strong { color: var(--accent); }

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================
   Page Banner (Inner Pages)
   ============================================ */
.page-banner {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(139,0,0,0.8), rgba(184,134,11,0.6));
}
.banner-content {
    position: relative; z-index: 1;
    text-align: center; color: var(--white);
}
.banner-content h2 { font-size: 2rem; margin-bottom: 8px; }
.breadcrumb { font-size: 0.95rem; }
.breadcrumb a { color: var(--accent); }
.breadcrumb i { font-size: 0.7rem; margin: 0 8px; }

/* ============================================
   Page Content (Inner Pages)
   ============================================ */
/* Sub-Navigation (About the Temple) */
.sub-nav {
    background: var(--bg-alt);
    border-bottom: 2px solid var(--accent);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 998;
}
.sub-nav .container {
    display: flex;
    justify-content: center;
    gap: 5px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0;
}
.sub-nav .container::-webkit-scrollbar { display: none; }
.sub-nav-link {
    padding: 14px 22px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.sub-nav-link:hover, .sub-nav-link.active {
    color: var(--secondary);
    border-bottom-color: var(--accent);
    background: rgba(184,134,11,0.08);
}
.sub-nav-link i { margin-right: 6px; }

/* Timeline Table */
.timeline-table { overflow-x: auto; margin-top: 20px; }
.timeline-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.timeline-table th {
    background: linear-gradient(135deg, var(--secondary), #a00);
    color: var(--white);
    padding: 14px 20px;
    text-align: left;
    font-size: 0.9rem;
}
.timeline-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--bg-alt);
    font-size: 0.9rem;
}
.timeline-table tr:last-child td { border-bottom: none; }
.timeline-table tr:hover td { background: var(--bg-alt); }

.page-content { padding: 30px 0 40px; }
.page-content .section-header { margin-bottom: 10px; }
.page-content .content-block { margin-bottom: 18px; }
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 35px;
}
.content-block.full-width { grid-template-columns: 1fr; }
.content-block h3 { font-size: 1.3rem; margin-bottom: 12px; }
.content-block h3 i { color: var(--primary); margin-right: 8px; }
.content-block p { margin-bottom: 1rem; }
.content-text.full { grid-column: 1 / -1; }
.content-image {
    display: flex;
    flex-direction: column;
}
.content-image img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: contain;
    object-position: center top;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.image-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

/* Highlight Block */
.highlight-block {
    background: linear-gradient(135deg, var(--bg-alt), #f0e6d0);
    padding: 28px;
    border-radius: var(--radius);
    border-left: 5px solid var(--accent);
}
.highlight-inner h3 { margin-bottom: 15px; }

/* Feature List */
.feature-list { list-style: none; }
.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.feature-list li i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }

/* Forms Grid (Ashta forms) */
.forms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.form-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--accent);
}
.form-card h4 { color: var(--primary); margin-bottom: 8px; font-size: 1.1rem; }
.form-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* Goddess Intro — narrower image, wider text */
.goddess-intro { grid-template-columns: 2fr 3fr; align-items: stretch; }

/* Guru Section */
.guru-section { align-items: stretch; grid-template-columns: 3fr 2fr; }
.guru-title { color: var(--primary); font-weight: 600; font-size: 0.95rem; margin-bottom: 1rem; }

/* Mission Grid */
.mission-block { text-align: center; }
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 25px;
}
.mission-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.mission-card i { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }

/* Specs Highlight */
.specs-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}
.spec {
    background: var(--white);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Structure Details Grid (new layout) */
.structure-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    min-width: 0;
    width: 100%;
}
.structure-detail {
    background: var(--white);
    padding: 20px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--accent);
    min-width: 0;
    overflow: hidden;
}
.structure-detail h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--secondary);
}
.structure-detail h3 i { color: var(--primary); margin-right: 8px; }
.structure-detail p { font-size: 0.9rem; margin-bottom: 0.8rem; }
.structure-detail .feature-list li { font-size: 0.9rem; }
.structure-detail.span-full { grid-column: 1 / -1; }

/* Structure Grid */
.structure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}
.structure-image img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Sub Temples */
.sub-temples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}
.sub-temple-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--accent);
}
.sub-temple-card i { font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
.sub-temple-card h4 { margin-bottom: 10px; }
.sub-temple-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* Gopuram Grid */
.gopuram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 25px;
}
.gopuram-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}
.gopuram-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}
.gopuram-card.featured h4 { color: var(--white); }
.gopuram-height { font-size: 2rem; font-weight: 700; font-family: var(--font-heading); color: var(--primary); }
.gopuram-card.featured .gopuram-height { color: var(--white); }

/* Campus Grid */
.campus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.campus-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.campus-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.campus-card i { font-size: 1.8rem; color: var(--primary); margin-bottom: 10px; }
.campus-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.campus-card p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

/* Location Details Grid */
.location-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}
.location-details-grid h4 { color: var(--primary); margin-bottom: 8px; }

/* ============================================
   News & Events Page
   ============================================ */
.featured-event {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.event-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}
.featured-event-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}
.featured-event-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-event-text { padding: 28px; }
.event-date { color: var(--primary); font-weight: 600; display: block; margin-bottom: 8px; }
.featured-event-text h3 { font-size: 1.5rem; margin-bottom: 12px; }
.event-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.tag {
    background: var(--bg-alt);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Events Timeline */
.events-timeline { position: relative; padding-left: 30px; }
.events-timeline::before {
    content: '';
    position: absolute;
    left: 10px; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 3px;
}
.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px; top: 15px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}
.timeline-date {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 12px 8px;
    border-radius: var(--radius);
}
.timeline-date .day { display: block; font-size: 1.2rem; font-weight: 700; }
.timeline-date .month { display: block; font-size: 0.75rem; }
.timeline-content {
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex: 1;
}
.timeline-content h4 { margin-bottom: 8px; }
.event-status {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
}
.event-status.upcoming { background: #fff3cd; color: #856404; }
.event-status.ongoing  { background: #d4edda; color: #155724; }
.event-status.completed { background: #e8f4f8; color: #0c5460; }

/* Compact timeline variant */
.events-timeline.compact .timeline-item { margin-bottom: 12px; align-items: center; }
.events-timeline.compact .timeline-date { padding: 6px 8px; width: 72px; }
.events-timeline.compact .timeline-date .day { font-size: 0.85rem; font-weight: 700; }
.events-timeline.compact .timeline-date .month { font-size: 0.7rem; }
.events-timeline.compact .timeline-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    gap: 12px;
}
.events-timeline.compact .timeline-content h4 { margin-bottom: 0; font-size: 0.95rem; flex: 1; }
.events-timeline.compact .event-status { margin-top: 0; flex-shrink: 0; }

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-image { position: relative; }
.news-image img { width: 100%; height: 200px; object-fit: cover; }
.news-date {
    position: absolute;
    bottom: 10px; left: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}
.news-body { padding: 20px; }
.news-body h4 { margin-bottom: 10px; font-size: 1.05rem; }
.news-body p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* Admin Notice */
.admin-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #e8f4fd;
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 40px;
    border-left: 4px solid #2196f3;
}
.admin-notice i { color: #2196f3; font-size: 1.2rem; margin-top: 2px; }
.admin-notice p { margin: 0; font-size: 0.9rem; }

/* ============================================
   Photo Gallery Page
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.filter-btn {
    padding: 8px 22px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    background: transparent;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}
.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-color: var(--primary);
}

.gallery-date-browser {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.date-nav-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.date-nav-btn:hover { background: var(--primary); color: var(--white); }
.current-period { font-weight: 600; font-size: 1.1rem; color: var(--secondary); }

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
/* Gallery card — starts invisible, JS adds .visible to animate in */
.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}
.gallery-card.visible { opacity: 1; transform: translateY(0); }
.gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gallery-card.hidden { display: none; }

/* Skeleton loaders */
.skeleton {
    background: linear-gradient(90deg, #f0e8d8 25%, #e8dcc8 50%, #f0e8d8 75%);
    background-size: 200% 100%;
    -webkit-animation: skeleton-pulse 1.4s ease-in-out infinite;
    animation: skeleton-pulse 1.4s ease-in-out infinite;
    border-radius: var(--radius);
}
@-webkit-keyframes skeleton-pulse {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
@keyframes skeleton-pulse {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.skeleton-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.skeleton-img   { height: 220px; }
.skeleton-title { height: 14px; margin: 14px 15px 8px; border-radius: 4px; }
.skeleton-sub   { height: 10px; margin: 0 15px 14px; width: 55%; border-radius: 4px; }

/* Gallery toolbar (filters + search) */
.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.gallery-toolbar .gallery-filters { margin-bottom: 0; }
.gallery-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.gallery-search i { color: var(--text-light); font-size: 0.85rem; }
.gallery-search input {
    border: none;
    outline: none;
    font-size: 0.88rem;
    font-family: var(--font-body);
    background: transparent;
    width: 180px;
}

/* Tab photo count badge */
.tab-count {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    color: var(--white);
    font-size: 0.72rem;
    padding: 1px 7px;
    border-radius: 20px;
    margin-left: 6px;
    font-weight: 600;
}
.gallery-tab.active .tab-count { background: rgba(255,255,255,0.35); }

/* Empty state */
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}
.gallery-empty i  { font-size: 3rem; color: var(--accent); opacity: 0.5; margin-bottom: 16px; display: block; }
.gallery-empty p  { font-size: 1rem; }
.gallery-thumb { position: relative; overflow: hidden; }
.gallery-thumb img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
.gallery-card:hover .gallery-thumb img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(139,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-zoom {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}
.gallery-info { padding: 15px; }
.gallery-info h4 { font-size: 0.95rem; margin-bottom: 4px; }
.gallery-info span { font-size: 0.8rem; color: var(--text-light); }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(90,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    padding: 10px;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-content { text-align: center; max-width: 90vw; }
.lightbox-content img { max-height: 80vh; max-width: 90vw; border-radius: 8px; }
.lightbox-caption { color: var(--white); margin-top: 15px; font-size: 1rem; }

/* ============================================
   Video Gallery Page
   ============================================ */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.video-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.video-card.hidden { display: none; }
.video-thumb { position: relative; }
.video-thumb img { width: 100%; height: 200px; object-fit: cover; }
.play-overlay {
    position: absolute; inset: 0;
    background: rgba(139,0,0,0.4);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.play-overlay i { font-size: 3.5rem; color: var(--white); opacity: 0.9; }
.video-card:hover .play-overlay { background: rgba(139,0,0,0.6); }
.video-card:hover .play-overlay i { opacity: 1; transform: scale(1.1); }
.video-info { padding: 15px; }
.video-info h4 { font-size: 0.95rem; margin-bottom: 6px; }
.video-meta { font-size: 0.8rem; color: var(--text-light); }

/* Video Modal */
.video-modal {
    position: fixed; inset: 0;
    background: rgba(90,0,0,0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 700px;
    width: 90%;
    position: relative;
    text-align: center;
}
.video-modal-close {
    position: absolute;
    top: 10px; right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}
.video-placeholder { padding: 40px; }
.video-placeholder i { font-size: 3rem; color: var(--primary); margin-bottom: 15px; }

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 35px;
}
.contact-info-section h3 { font-size: 1.2rem; margin: 25px 0 12px; }
.contact-info-section h3:first-child { margin-top: 0; }
.contact-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-card h4 { margin-bottom: 8px; }
.contact-card p { margin-bottom: 6px; font-size: 0.95rem; }
.contact-card a { color: var(--primary); }
.contact-card a:hover { color: var(--secondary); }

.contact-form-section h3 { margin-bottom: 20px; }
.contact-form { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0d5c5;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
}

.donation-bank-grid { margin-top: 15px; }
.bank-detail { background: var(--white); padding: 20px; border-radius: 8px; }
.bank-detail p { margin-bottom: 6px; }

.map-container { margin-top: 15px; }
.map-note { margin-top: 15px; font-size: 0.9rem; color: var(--text-light); }

/* Sanskrit Verse */
.sanskrit-verse {
    background: linear-gradient(135deg, var(--secondary), #a00);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ============================================
   Gallery Tabs (merged gallery page)
   ============================================ */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, var(--secondary), #a00);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 30px;
}
.gallery-tab {
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.gallery-tab:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.gallery-tab.active { color: var(--white); background: rgba(255,255,255,0.2); border-bottom: 3px solid var(--accent); }
.gallery-tab i { margin-right: 6px; }
.gallery-tab-content { display: none; }
.gallery-tab-content.active { display: block; }

/* ============================================
   e-Seva Coming Soon Page
   ============================================ */
.coming-soon-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.coming-soon-content i { font-size: 3rem; color: var(--accent); margin-bottom: 15px; }
.coming-soon-content h2 { font-size: 1.8rem; margin-bottom: 8px; }
.coming-soon-content p { max-width: 550px; margin: 0 auto 1rem; color: var(--text-light); }
.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.coming-soon-feature {
    background: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 180px;
}
.coming-soon-feature i { font-size: 2rem; color: var(--primary); margin-bottom: 10px; display: block; }
.coming-soon-feature h4 { font-size: 1rem; margin-bottom: 5px; }
.coming-soon-feature p { font-size: 0.85rem; margin: 0; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .highlights-grid, .facilities-grid, .news-grid, .mission-grid { grid-template-columns: repeat(2, 1fr); }
    .campus-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gopuram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .header-content { position: relative; }
    .logo { padding: 12px 0 8px; }
    .logo img { width: 60px; height: 60px; }
    .logo-text h1 { font-size: 1.1rem; }
    .logo .tagline { font-size: 0.7rem; }

    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        box-shadow: -5px 0 30px rgba(0,0,0,0.2);
        transition: right 0.3s ease;
        z-index: 1001;
        padding: 80px 0 20px;
        overflow-y: auto;
        border-radius: 0;
        flex-direction: column;
    }
    .nav.active { right: 0; }
    .nav ul { flex-direction: column; gap: 0; }
    .nav a { display: block; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }

    .hero-slider { height: 60vh; min-height: 400px; }
    .slide-content h2 { font-size: 1.5rem; }
    .slide-content p { font-size: 0.9rem; }
    .om-symbol { font-size: 2rem; }

    .section { padding: 35px 0; }
    .section-header h2 { font-size: 1.4rem; }
    .section-header { margin-bottom: 20px; }

    .welcome-grid, .goddess-content, .donation-details,
    .content-block, .structure-grid, .contact-grid,
    .featured-event-content { grid-template-columns: 1fr; }

    .image-frame { display: none; }

    .highlights-grid, .location-grid, .forms-grid,
    .specs-highlight, .location-details-grid { grid-template-columns: 1fr; }

    .facilities-grid, .news-grid, .sub-temples-grid,
    .gopuram-grid, .mission-grid { grid-template-columns: 1fr; }

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

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

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

    .page-banner { height: 200px; }
    .banner-content h2 { font-size: 1.5rem; }

    .news-ticker .container { flex-direction: column; gap: 8px; }

    .sub-nav-link { padding: 10px 14px; font-size: 0.8rem; }

    .gallery-tabs { flex-wrap: wrap; border-radius: 8px; }
    .gallery-tab { padding: 10px 16px; font-size: 0.82rem; flex: 1 1 auto; text-align: center; }

    /* Fix custom column layouts not covered by .content-block rule */
    .goddess-intro { grid-template-columns: 1fr; }
    .guru-section   { grid-template-columns: 1fr; }
    .structure-details-grid { grid-template-columns: 1fr; }

    /* Cap stacked images so portrait photos don't dominate */
    .content-image { max-height: 320px; }
    .content-image img { height: 320px; }

    /* Gallery toolbar stacks on tablet */
    .gallery-toolbar { flex-direction: column; align-items: stretch; }
    .gallery-search  { width: 100%; }
    .gallery-search input { flex: 1; width: auto; min-width: 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .hero-slider { height: 45vh; min-height: 300px; }
    .slide-content h2 { font-size: 1.2rem; }
    .btn { padding: 9px 20px; font-size: 0.82rem; }
    .section { padding: 25px 0; }
    .section-header h2 { font-size: 1.25rem; }
    .content-block h3 { font-size: 1.1rem; }
    .content-block { margin-bottom: 25px; }

    .highlights-grid { grid-template-columns: 1fr; }
    .campus-grid { grid-template-columns: 1fr; }
    .photo-gallery-grid, .video-gallery-grid { grid-template-columns: 1fr; }

    .highlight-block { padding: 18px; }
    .featured-event-text { padding: 16px; }
    .featured-event-text h3 { font-size: 1.15rem; }

    .gallery-filters { gap: 5px; }
    .filter-btn { padding: 5px 12px; font-size: 0.78rem; }

    .slider-btn { width: 36px; height: 36px; }
    .back-to-top { width: 40px; height: 40px; bottom: 15px; right: 15px; }

    .sub-nav-link { padding: 8px 10px; font-size: 0.75rem; }
    .sub-nav-link i { display: none; }

    .coming-soon-content h2 { font-size: 1.5rem; }
    .coming-soon-content i { font-size: 2.5rem; }

    /* Prevent iOS Safari zoom on form focus (needs 16px minimum) */
    .form-group input,
    .form-group select,
    .form-group textarea,
    .gallery-search input { font-size: 16px; }

    /* Ensure minimum 44px tap targets */
    .sub-nav-link { min-height: 44px; display: inline-flex; align-items: center; }
    .filter-btn   { min-height: 36px; }

    /* Tighter contact form padding */
    .contact-form { padding: 20px 16px; }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .top-bar, .header, .hero-slider, .news-ticker,
    .back-to-top, .gallery-filters, .gallery-date-browser,
    .slider-controls, .slider-dots, .scroll-btn { display: none; }
    .section { padding: 20px 0; }
    body { background: white; }
}
