/* ============================================
   HOTEL BHRAMARI NEST - MAIN STYLESHEET
   Golden Theme | Mobile-First Approach
   ============================================ */

/* ============================================
   CSS VARIABLES (Golden Color Palette)
   ============================================ */
:root {
    /* Golden Colors */
    --gold-primary: #D4AF37;
    --gold-light: #F4E5C2;
    --gold-dark: #B8941E;
    --gold-accent: #FFD700;
    
    /* Complementary Colors */
    --bronze: #8B7355;
    --deep-green: #1A4D2E;
    --forest-green: #2D6A4F;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --gray: #E0E0E0;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    
    /* Gradient */
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-dark);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.section-padding {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-gold {
    background: var(--gradient-gold);
    color: var(--white);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1EBE57;
    transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.nav-brand a {
    display: block;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.25rem;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    transition: var(--transition-normal);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

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

.nav-btn {
    padding: 0.625rem 1.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.8),
        0 0 20px rgba(0,0,0,0.6),
        0 0 40px rgba(0,0,0,0.4);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #F4E5C2;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    color: #FFFFFF;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

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

.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.5rem;
}

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

.slider-dot.active {
    background: var(--gold-primary);
    width: 30px;
    border-radius: 6px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

/* ============================================
   QUICK INFO BAR
   ============================================ */
.quick-info {
    background: var(--gradient-gold);
    padding: 2rem 0;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.quick-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--white);
}

.quick-info-item i {
    font-size: 2.5rem;
    color: var(--gold-light);
}

.quick-info-item h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.quick-info-item p {
    font-size: 0.875rem;
    color: var(--gold-light);
    margin: 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.about-badge span {
    display: block;
    font-size: 0.875rem;
}

.about-badge strong {
    display: block;
    font-size: 2rem;
    font-family: var(--font-secondary);
}

.about-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--gold-dark);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: var(--gold-primary);
    font-size: 1.25rem;
}

/* ============================================
   ROOMS SECTION
   ============================================ */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    justify-items: center;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    max-width: 400px;
    width: 100%;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.room-badge-premium {
    background: var(--deep-green);
}

.room-content {
    padding: 2rem;
}

.room-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold-dark);
}

.room-occupancy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.room-occupancy i {
    color: var(--gold-primary);
}

.room-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.room-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.room-amenities i {
    color: var(--gold-primary);
}

.room-footer {
    border-top: 1px solid var(--gray);
    padding-top: 1.5rem;
}

/* Room Gallery */
.room-gallery-section {
    margin-top: 3rem;
}

.gallery-subtitle {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--gold-dark);
}

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

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

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

/* ============================================
   RESTAURANT SECTION
   ============================================ */
.restaurant-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.restaurant-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.restaurant-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--gold-dark);
}

.restaurant-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-normal);
}

.feature-box:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-box p {
    font-size: 0.875rem;
    margin: 0;
}

.restaurant-quote {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    font-style: italic;
    font-size: 1.125rem;
    border-left: 4px solid var(--gold-light);
    margin: 2rem 0;
}

.restaurant-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.restaurant-image-main {
    flex: 1;
    min-height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.restaurant-image-single {
    height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.restaurant-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 200px;
}

.restaurant-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

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

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   ATTRACTIONS SECTION
   ============================================ */
.attractions {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.attractions-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.attraction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.attraction-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.1);
}

.attraction-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.attraction-badge-viewpoint {
    background: #28a745;
}

.attraction-badge-temple {
    background: #e74c3c;
}

.attraction-content {
    padding: 2rem;
}

.attraction-content h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.attraction-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.attraction-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.attraction-meta i {
    color: var(--primary-color);
}

.attraction-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.attraction-highlights {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.attraction-highlights h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.attraction-highlights ul {
    list-style: none;
    padding-left: 0;
}

.attraction-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.attraction-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.attraction-highlights strong {
    color: var(--dark-color);
}

.attraction-info {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.attraction-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #856404;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.attraction-info i {
    color: var(--primary-color);
    margin-top: 2px;
}

/* Attractions CTA */
.attractions-cta {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #B8941E 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.attractions-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.attractions-cta > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.3rem;
}

/* Distance Guide */
.distance-guide {
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.distance-guide h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-family: var(--font-heading);
}

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

.distance-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.distance-item:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

.distance-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.distance-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.distance-item .distance {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.distance-item .time {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gold-dark);
}

.info-card p {
    margin-bottom: 0.5rem;
}

.attractions-list {
    list-style: none;
}

.attractions-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.attractions-list strong {
    color: var(--gold-primary);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-map iframe {
    width: 100%;
    min-height: 450px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gold-dark);
}

.contact-card p {
    margin-bottom: 1rem;
}

.contact-card a:not(.btn) {
    color: var(--gold-primary);
    font-weight: 500;
}

.contact-card a:not(.btn):hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--deep-green);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.footer-badge i {
    color: var(--gold-light);
}

.footer-links li,
.footer-contact li,
.footer-places li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.footer-links a {
    color: var(--gray);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-contact li,
.footer-places li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    color: var(--gray);
}

.footer-contact i,
.footer-places i {
    color: var(--gold-primary);
    margin-top: 0.25rem;
}

.footer-contact a {
    color: var(--gray);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-credits {
    margin-top: 0.5rem;
}

.footer-credits i {
    color: var(--gold-primary);
}

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

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    color: var(--white);
    font-size: 2rem;
    padding: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold-primary);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-5px);
}
