/* Mukteshwar Temple - Shared Styles */

:root {
    --stone: #8B7D6B;
    --stone-light: #C4B5A0;
    --earth: #5C4A3A;
    --earth-dark: #3A2D22;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --sage: #6B7B5E;
    --sage-light: #8FA07E;
    --gold: #B8975A;
    --text: #2C2418;
    --text-light: #6B5D4F;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--cream-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 2rem;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

nav .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.05em;
    transition: color 0.4s;
    text-decoration: none;
}

nav.scrolled .logo { color: var(--earth-dark); }

nav .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav .nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

nav.scrolled .nav-links a { color: var(--text-light); }
nav .nav-links a:hover { color: var(--gold); }

/* Current page indicator */
nav .nav-links a.current {
    color: var(--gold) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s;
}

nav.scrolled .menu-toggle span { background: var(--earth-dark); }

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('../images/temple-main.jpg') center center / cover no-repeat;
}

.hero.page-hero {
    height: 60vh;
    min-height: 400px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(58, 45, 34, 0.65);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(transparent, var(--cream-light));
}

.hero.page-hero::after {
    height: 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 800px;
}

.hero-content .om {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.hero.page-hero .hero-content .om {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: white;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.hero.page-hero .hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-content .subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--stone-light);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero.page-hero .hero-content .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero.page-hero .hero-content p {
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.btn-solid {
    background: var(--earth);
    border-color: var(--earth);
    color: white;
}

.btn-solid:hover {
    background: var(--earth-dark);
    border-color: var(--earth-dark);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.scroll-hint span {
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto;
}

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

/* Sections */
section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.section-inner.wide {
    max-width: 1100px;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--earth-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--earth-dark);
}

/* About / History */
.about {
    background: var(--cream-light);
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
}

.about-text p { margin-bottom: 1.5rem; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(139, 125, 107, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--earth);
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 0.3rem;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    padding: 2rem;
    background: white;
    border: 1px solid rgba(139, 125, 107, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.card h3 {
    margin-bottom: 0.8rem;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card .btn {
    font-size: 0.8rem;
    padding: 0.7rem 1.5rem;
}

/* Immersion */
.immersion {
    background: var(--earth-dark);
    color: white;
}

.immersion h2 { color: white; }
.immersion .section-label { color: var(--gold); }

.immersion-intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.feature-card .icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: white;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* Daily Rhythm */
.rhythm {
    background: var(--cream);
}

.schedule {
    max-width: 600px;
    margin-top: 2rem;
}

.schedule-item {
    display: flex;
    gap: 2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(139, 125, 107, 0.15);
}

.schedule-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--earth);
    min-width: 100px;
}

.schedule-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Guidelines and Life sections */
.guidelines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.dos-donts {
    background: var(--cream);
    padding: 2rem;
    border-left: 3px solid var(--gold);
}

.dos-donts h3 {
    margin-bottom: 1.5rem;
}

.dos-donts ul {
    list-style: none;
    padding: 0;
}

.dos-donts li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.dos-donts li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 1.2rem;
}

/* Availability */
.availability {
    background: var(--cream-light);
}

.month-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.month-card {
    padding: 1.2rem;
    text-align: center;
    border: 1px solid rgba(139, 125, 107, 0.2);
    background: white;
    transition: all 0.3s;
    cursor: default;
}

.month-card.available {
    cursor: pointer;
    border-color: var(--sage);
}

.month-card.available:hover {
    background: var(--sage);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(107, 123, 94, 0.2);
}

.month-card.limited {
    border-color: var(--gold);
}

.month-card.full {
    opacity: 0.4;
}

.month-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.month-status {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.4rem;
}

.month-card.available .month-status { color: var(--sage); }
.month-card.limited .month-status { color: var(--gold); }
.month-card.full .month-status { color: var(--text-light); }
.month-card.available:hover .month-status { color: rgba(255,255,255,0.8); }

.legend {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.available { background: var(--sage); }
.legend-dot.limited { background: var(--gold); }
.legend-dot.full { background: #ccc; }

/* Registration Form */
.register {
    background: var(--earth-dark);
    color: white;
}

.register h2 { color: white; }
.register .section-label { color: var(--gold); }

.register-intro {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 700px;
}

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

.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group select option { background: var(--earth-dark); color: white; }

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

.form-note {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.5rem;
}

.form-submit {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

.form-submit .btn {
    width: 100%;
    padding: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Booking Step Indicators */
.booking-steps {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    max-width: 700px;
}
.booking-step-indicator {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    cursor: default;
}
.booking-step-indicator.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.booking-step-indicator.completed {
    color: var(--sage-light);
    border-bottom-color: var(--sage-light);
    cursor: pointer;
}
.booking-step-indicator .step-num {
    display: inline-block;
    width: 24px; height: 24px;
    line-height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
}
.booking-step-indicator.active .step-num { background: var(--gold); color: var(--earth-dark); }
.booking-step-indicator.completed .step-num { background: var(--sage-light); color: white; }

.form-panel {
    display: none;
    max-width: 700px;
    animation: fadeSlide 0.4s ease;
}
.form-panel.active { display: block; }
@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 700px;
}
.form-nav .btn { flex: 1; text-align: center; padding: 1rem; font-family: 'Inter', sans-serif; }

/* Guest Accordion */
.guest-accordion {
    max-width: 700px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}
.accordion-header:hover { background: rgba(255,255,255,0.07); }
.accordion-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    margin: 0;
}
.accordion-header .arrow {
    transition: transform 0.3s;
    color: var(--gold);
    font-size: 0.8rem;
}
.accordion-header.open .arrow { transform: rotate(180deg); }
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.accordion-body.open {
    max-height: 2000px;
}
.accordion-body-inner {
    padding: 1.5rem 1.2rem;
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: rgba(255,255,255,0.7) !important;
    cursor: pointer;
    margin-bottom: 0 !important;
}
.checkbox-group input[type="checkbox"] {
    width: 16px; height: 16px;
    padding: 0;
    accent-color: var(--gold);
}

/* Phone input */
.phone-input {
    display: flex;
    gap: 0.5rem;
}
.phone-input select {
    width: 90px;
    flex-shrink: 0;
}
.phone-input input { flex: 1; }

/* Review summary */
.review-section {
    margin-bottom: 2rem;
    max-width: 700px;
}
.review-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.review-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}
.review-row .label { color: rgba(255,255,255,0.5); }
.review-row .value { color: rgba(255,255,255,0.9); text-align: right; max-width: 60%; }

.disclaimer-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
    max-width: 700px;
}

/* Success/error messages */
.form-message {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    display: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--gold, #c9a84c);
    border-radius: 12px;
}
.form-message.show { display: block; }
.form-message h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--gold, #c9a84c);
}
.form-message p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }

.dob-input { display: flex; gap: 0.5rem; }
.dob-input select { flex: 1; min-width: 0; font-size: 0.85rem; padding: 0.6rem 0.4rem; }

.btn.loading { opacity: 0.6; pointer-events: none; }

/* Invalid field */
.form-group input.invalid,
.form-group select.invalid {
    border-color: #c0392b;
}

/* Testimonials */
.testimonials {
    background: var(--cream);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    padding: 2rem;
    background: white;
    border: 1px solid rgba(139, 125, 107, 0.1);
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

/* Location */
.location {
    background: var(--cream-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.map-embed {
    width: 100%;
    height: 350px;
    background: var(--stone-light);
    border: 1px solid rgba(139, 125, 107, 0.2);
}

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

.directions h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--earth-dark);
}

.directions p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.directions ul {
    list-style: none;
    padding: 0;
}

.directions li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(139, 125, 107, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

.directions li strong {
    color: var(--earth);
    font-weight: 500;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    background: var(--stone-light);
    border: 1px solid rgba(139, 125, 107, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--stone);
    color: var(--stone);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--stone);
    color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-nav.prev {
    left: 1rem;
}

.lightbox-nav.next {
    right: 1rem;
}

/* Empty states */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-state .icon {
    font-size: 3rem;
    color: var(--stone-light);
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: var(--earth-dark);
    color: rgba(255,255,255,0.5);
    padding: 3rem 2rem;
    text-align: center;
}

footer .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

footer p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

footer .footer-om {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 1.5rem 0;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: block; }

    nav .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 247, 242, 0.98);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
    }

    nav .nav-links.open { display: flex; }
    nav .nav-links a { color: var(--text-light) !important; }

    .stat-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .month-grid { grid-template-columns: repeat(2, 1fr); }
    .guidelines-grid { grid-template-columns: 1fr; gap: 2rem; }
    .card-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .booking-steps { flex-wrap: nowrap; }
    .booking-step-indicator { font-size: 0.65rem; padding: 0.8rem 0.3rem; }
    .form-nav { flex-direction: column; }
    .phone-input { flex-direction: row; }

    section { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
    .month-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-filters { flex-direction: column; align-items: center; }
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Content placeholder styles */
.content-placeholder {
    background: rgba(184, 151, 90, 0.1);
    border: 1px dashed var(--gold);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 4px;
    color: var(--text-light);
    font-style: italic;
}

.content-placeholder::before {
    content: "📝 ";
    color: var(--gold);
}