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

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

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Modern Color Palette */
    --primary-color: #1a1a1a;
    --secondary-color: #f7f9fc;
    --accent-color: #c9a96e;
    --accent-light: #e4d4b7;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-800: #2d3748;
    --success: #48bb78;
    --error: #f56565;
    
    /* Typography */
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-accent: 'Inter', sans-serif;
    
    /* Modern Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    --max-width: 1280px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    
    /* Enhanced Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-title {
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.025em;
    min-width: 160px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

.btn-outline {
    background-color: var(--white);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition-smooth);
    cursor: pointer;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-logo h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    background: transparent;
}

.nav-link:hover {
    color: var(--accent-color);
    background: rgba(201, 169, 110, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--accent-color);
    background: rgba(201, 169, 110, 0.15);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(26, 26, 26, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    max-width: 900px;
    width: 100%;
    padding: var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 160px);
}

.hero-text {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem 4rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.badge-text {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.badge-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: expandLine 1.5s ease-out 1s forwards;
    transform: scaleX(0);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 1rem 0 2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.stat-item {
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 1rem 0;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 300;
    font-family: var(--font-primary);
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out 2.5s forwards;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.8);
}

.stat-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: expandStatLine 1s ease-out 3s forwards;
}

.hero-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.indicators-container {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.indicator {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active .indicator-progress {
    width: 100%;
    animation: progressFill 5s linear;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scaleY(1.5);
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    color: var(--white);
    line-height: 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-main {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: clamp(3.5rem, 9vw, 7rem);
    letter-spacing: -0.03em;
    opacity: 0;
    animation: slideInFromLeft 1.2s ease-out 0.8s forwards;
}

.title-accent {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-top: -0.5rem;
    opacity: 0;
    animation: slideInFromRight 1.2s ease-out 1.2s forwards;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.6s forwards;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.8s forwards;
    margin-bottom: 3rem;
    position: relative;
    z-index: 15;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-secondary {
    position: relative;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
}

.btn-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.4s ease;
}

.btn-secondary:hover .btn-underline {
    width: 100%;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--white) !important;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

.about-text .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    height: 400px;
}

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

.about-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.about-img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.about-images:hover .about-img-large,
.about-images:hover .about-img-small {
    transform: scale(1.05);
}

.about-image-main,
.about-img-small {
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-image-main:hover,
.about-img-small:hover {
    box-shadow: var(--shadow-xl);
}

/* ===== ATTRACTIONS SHOWCASE ===== */
.attractions-showcase {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.attraction-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-200);
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

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

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

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

.attraction-content {
    padding: 2rem;
}

.attraction-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.distance {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.attraction-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.section-header {
    margin-bottom: 5rem;
}

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

.feature-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

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

.feature-title {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
}

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

.gallery-container {
    position: relative;
    margin-top: 3rem;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    flex: 0 0 350px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid var(--gray-200);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

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

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

.gallery-info {
    padding: 1.5rem;
    text-align: center;
}

.gallery-info h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--text-secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.gallery-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.gallery-btn-prev {
    left: -25px;
}

.gallery-btn-next {
    right: -25px;
}

.gallery-btn svg {
    width: 20px;
    height: 20px;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    border: 1px solid #e0e0e0;
}

/* ===== MODERN GALLERY STYLES ===== */
.gallery-container-modern {
    margin-top: 3rem;
}

.gallery-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-card-modern {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    cursor: pointer;
}

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

.gallery-info-modern {
    padding: 2rem;
    text-align: center;
}

.gallery-info-modern h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.gallery-info-modern p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* About section modern styles */
.about-image-secondary {
    margin-top: 1.5rem;
}

.about-img-secondary {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.about-img-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gallery-grid-two {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .gallery-info-modern {
        padding: 1.5rem;
    }
    
    .gallery-info-modern h4 {
        font-size: 1.25rem;
    }
    
    .about-image-secondary {
        margin-top: 1rem;
    }
    
    .about-img-secondary {
        height: 250px;
    }
}

/* ===== PROPERTIES SECTION ===== */
.properties {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
}

.properties::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, transparent 0%, var(--white) 70%);
    pointer-events: none;
    z-index: 1;
}

.properties-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.properties-slider::-webkit-scrollbar {
    height: 8px;
}

.properties-slider::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 4px;
}

.properties-slider::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.properties-slider::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.property-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-200);
    flex: 0 0 350px;
    min-width: 350px;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

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

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

.property-card:hover .property-img {
    transform: scale(1.05);
}

.property-info {
    padding: 2rem;
}

.property-info h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.property-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.property-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.property-mls {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== PROPERTY SLIDESHOW STYLES ===== */
.property-slideshow {
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.02);
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.slide-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    opacity: 0;
}

.property-slideshow:hover .slide-btn {
    opacity: 1;
}

.slide-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.slide-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.slide-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-indicators .indicator.active {
    background: var(--accent-color);
}

.slide-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ===== LOCATION SECTION ===== */
.location {
    padding: var(--section-padding);
    background-color: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.location-text .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

.location-text .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.location-highlights {
    display: grid;
    gap: 1.5rem;
}

.location-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.location-item p {
    font-size: 1rem;
}

.location-map {
    position: relative;
}

.location-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.location-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 1px solid #e0e0e0;
}

/* ===== MODERN CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-hero .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

.contact-info .section-subtitle {
    text-align: left;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-description {
    margin-top: 2rem;
}

.contact-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.real-estate-agents {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.real-estate-agents h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.agents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.agent-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.agent-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

.agent-photo {
    margin-bottom: 1.5rem;
}

.agent-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.agent-info h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.agent-company {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.agent-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.inquiry-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    resize: vertical;
    box-shadow: var(--shadow-sm);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* Modern Contact Form */
.contact-form-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-100);
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modern-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
    color: var(--text-primary);
    font-family: var(--font-secondary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
    transform: translateY(-1px);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-modern {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

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

/* Featured Agent Section */
.agent-featured {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.agent-header {
    margin-bottom: 2rem;
    text-align: center;
}

.agent-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.agent-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.agent-card-modern {
    text-align: center;
}

.agent-photo-modern {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.agent-img-modern {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.agent-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.agent-details h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.agent-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.agent-company {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: grid;
    gap: 0.75rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
    border: 1px solid var(--gray-200);
}

.contact-method:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 1.2rem;
    min-width: 24px;
}

.contact-method strong {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-method p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
}

/* Additional Info Column */
.contact-additional {
    display: grid;
    gap: 1.5rem;
}

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

.info-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.agent-secondary h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.agent-card-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-200);
}

.agent-img-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.agent-info-compact h5 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.agent-info-compact p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.agent-info-compact a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}

.agent-info-compact a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-modern-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .contact-additional {
        grid-column: 1 / -1;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-modern-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-hero .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-additional {
        grid-template-columns: 1fr;
    }
}

/* ===== DEVELOPMENT MAP & PHOTOS (within Location) ===== */
.map-photos-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.section-subtitle-large {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Modern Compact Map Design */
.modern-map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
    align-items: start;
}

.featured-map {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    background: transparent;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-map:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.featured-map-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
    object-fit: cover;
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
    font-size: 0;
}

.featured-map:hover .featured-map-img {
    transform: scale(1.01);
}

.map-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.85);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

.compact-gallery {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    height: 120px;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

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

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 0.75rem 0.5rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* Primary Agent Styling */
.primary-agent {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.05) 0%, var(--white) 100%);
}

.primary-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design for Modern Map */
@media (max-width: 768px) {
    .modern-map-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .compact-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }
    
    .gallery-item {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .modern-map-container {
        gap: 0.75rem;
    }
    
    .gallery-item {
        height: 80px;
    }
    
    .gallery-label {
        font-size: 0.7rem;
        padding: 0.5rem 0.25rem 0.25rem;
    }
    
    .map-badge {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.25rem 0.75rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

/* ===== IMAGE MODAL ===== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.image-modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.image-modal-caption h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: var(--white);
}

.image-modal-caption p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .image-modal-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .image-modal-caption {
        bottom: 10px;
        padding: 0.75rem 1.5rem;
    }
    
    .image-modal-caption h3 {
        font-size: 1.25rem;
    }
    
    .image-modal-caption p {
        font-size: 0.9rem;
    }
}

/* ===== MODERN FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a3441 100%);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 3rem;
}

.footer-brand .brand-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.footer-logo:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.brand-text h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 0.25rem 0;
}

.brand-text p {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.nav-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer-contact {
    text-align: right;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.contact-label {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand .brand-content {
        justify-content: center;
    }
    
    .footer-nav {
        gap: 2rem;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-main {
        gap: 1.5rem;
        padding-bottom: 2rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-group {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-logo {
        height: 50px;
        width: 50px;
    }
    
    .brand-text h3 {
        font-size: 1.25rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes expandLine {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes expandStatLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0.5;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes progressFill {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes progressFillSlow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.gallery-item {
    animation: slideIn 0.6s ease-out;
}

.gallery-item:nth-child(even) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(3n) {
    animation-delay: 0.2s;
}

.attraction-card {
    animation: fadeInUp 0.8s ease-out;
}

.attraction-card:nth-child(2) {
    animation-delay: 0.2s;
}

.attraction-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
        --container-padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        position: relative;
        z-index: 30;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }
    
    .hero-buttons .btn-primary {
        background: var(--accent-color);
        color: var(--white);
        border: none;
        box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
    }
    
    .hero-buttons .btn-secondary {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .hero {
        min-height: auto;
        height: auto;
        padding: 120px 0 3rem 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    }
    
    .hero-content {
        min-height: auto !important;
        height: auto;
        display: block;
        text-align: center;
        position: relative;
        z-index: 10;
        max-width: 90%;
        margin: 0 auto;
        padding: 2rem 1rem;
    }
    
.hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 2rem 0;
        background: rgba(255,255,255,0.1);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        backdrop-filter: blur(10px);
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    
    .badge-line {
        width: 30px;
    }
    
    .title-main {
        font-size: clamp(3.5rem, 12vw, 6rem);
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .title-accent {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.2;
    }
    
    .hero-text {
        padding: 0;
        max-width: 100%;
        text-align: center;
        background: none;
        margin-bottom: 2rem;
        position: relative;
        z-index: 20;
    }
    
    .title-main {
        font-size: 3.5rem !important;
        font-weight: 800;
        color: var(--white);
        text-shadow: 3px 3px 6px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.6);
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }
    
    .title-accent {
        font-size: 2.5rem !important;
        color: var(--accent-color);
        text-shadow: 3px 3px 6px rgba(0,0,0,0.9), 0 0 15px rgba(201, 169, 110, 0.3);
        margin-bottom: 1rem;
        line-height: 1.2;
        font-weight: 800;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        color: var(--white);
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .indicators-container {
        padding: 0.75rem 1.5rem;
        gap: 1rem;
    }
    
    .indicator {
        width: 30px;
        height: 3px;
    }
    
    .hero-indicators {
        bottom: 0.5rem;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-navigation {
        display: none;
    }
    
    .about-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    .about-image-main {
        height: 250px;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        height: 150px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-card {
        flex: 0 0 280px;
    }
    
    .gallery-track {
        gap: 1rem;
    }
    
    .gallery-btn {
        width: 45px;
        height: 45px;
    }
    
    .gallery-btn-prev {
        left: -22px;
    }
    
    .gallery-btn-next {
        right: -22px;
    }
    
    .gallery-img {
        height: 200px;
    }
    
    .gallery-info {
        padding: 1.25rem;
    }
    
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .agents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .agent-card {
        padding: 1.5rem;
    }
    
    .property-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .properties-slider {
        gap: 1.5rem;
    }
    
    .logo-img {
        height: 65px;
    }
    
    .nav-logo h2 {
        font-size: 1.75rem;
    }
    
    
    .social-media {
        justify-content: center;
    }
    
    .social-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin: 0.5rem 0;
    }
    
    .hero-buttons {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .hero {
        min-height: auto;
        height: auto;
        padding: 100px 0 2rem 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    }
    
    .hero-content {
        min-height: auto !important;
        height: auto;
        padding: 1rem;
        display: block;
        text-align: center;
        position: relative;
        z-index: 10;
        max-width: 95%;
        margin: 0 auto;
    }
    
.hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
        background: rgba(255,255,255,0.1);
        padding: 1rem;
        border-radius: var(--border-radius);
        backdrop-filter: blur(10px);
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-subtitle {
        margin-bottom: 0.75rem;
    }
    
    .hero-badge {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .badge-line {
        width: 20px;
        transform: rotate(90deg);
    }
    
    .title-main {
        font-size: clamp(3rem, 11vw, 5rem);
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .title-accent {
        font-size: clamp(2rem, 7vw, 3rem);
        line-height: 1.2;
    }
    
    .hero-text {
        padding: 0;
        max-width: 100%;
        text-align: center;
        background: none;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 20;
    }
    
    .title-main {
        font-size: 3rem !important;
        font-weight: 800;
        color: var(--white);
        text-shadow: 3px 3px 6px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.6);
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }
    
    .title-accent {
        font-size: 2rem !important;
        color: var(--accent-color);
        text-shadow: 3px 3px 6px rgba(0,0,0,0.9), 0 0 15px rgba(201, 169, 110, 0.3);
        margin-bottom: 1rem;
        line-height: 1.2;
        font-weight: 800;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        color: var(--white);
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        position: relative;
        z-index: 30;
        width: 100%;
    }
    
    .indicators-container {
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }
    
    .indicator {
        width: 25px;
        height: 3px;
    }
    
    .hero-indicators {
        bottom: 0.5rem;
    }
    
    .hero-buttons {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .hero-text {
        padding: 2rem 1.5rem 3rem;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-line {
        width: 40px;
    }
    
    .stat-label {
        margin-top: 0;
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: 300px;
    }
    
    .attraction-card {
        margin: 0 1rem;
    }
    
    .attractions-grid {
        padding: 0 1rem;
    }
    
    .gallery-card {
        flex: 0 0 250px;
    }
    
    .gallery-track {
        gap: 0.75rem;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-btn-prev {
        left: -20px;
    }
    
    .gallery-btn-next {
        right: -20px;
    }
    
    .gallery-img {
        height: 180px;
    }
    
    .gallery-info {
        padding: 1rem;
    }
    
    .gallery-info h4 {
        font-size: 1.1rem;
    }
    
    .gallery-info p {
        font-size: 0.85rem;
    }
    
}

/* ===== CLICKABLE IMAGES ===== */
.clickable-img {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.clickable-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ===== PROPERTIES CTA BUTTON ===== */
.properties-cta {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.listings-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    min-width: 220px;
}

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

.listings-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.listings-btn:hover::before {
    left: 100%;
}

.btn-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
}

.btn-icon {
    font-size: 1.25rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.listings-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Mobile responsive for CTA */
@media (max-width: 768px) {
    .properties-cta {
        margin-top: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .listings-btn {
        padding: 0.6rem 1.5rem;
        min-width: 200px;
        gap: 0.5rem;
    }
    
    .btn-text {
        font-size: 0.95rem;
    }
    
    .btn-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .listings-btn {
        padding: 0.5rem 1.25rem;
        min-width: 180px;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
    
    .btn-icon {
        font-size: 1rem;
    }
}

/* ===== PLOT MAP OVERVIEW ===== */
.plot-map-overview {
    padding: 3rem 0;
    background: var(--gray-50);
}

.plot-map-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    margin-top: 1.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.plot-map-scroll::-webkit-scrollbar {
    height: 6px;
}

.plot-map-scroll::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 3px;
}

.plot-map-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.plot-map-item {
    position: relative;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.plot-map-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.plot-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.plot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1rem 0.75rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* Simple Modern Lightbox */
.simple-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.simple-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.lightbox-info {
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--white);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.lightbox-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.lightbox-description {
    font-family: var(--font-secondary);
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

/* Mobile responsive for plot map */
@media (max-width: 768px) {
    .plot-map-item {
        min-width: 160px;
    }
    
    .plot-img {
        height: 120px;
    }
    
    .plot-label {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem 0.4rem;
    }
    
    .lightbox-content {
        max-width: 95vw;
        margin: 1rem;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-info {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
    
    .lightbox-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .lightbox-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .plot-map-overview {
        padding: 2rem 0;
    }
    
    .plot-map-item {
        min-width: 140px;
    }
    
    .plot-img {
        height: 100px;
    }
}

/* ===== SPLASH SCREEN ===== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.splash-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.splash-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: splashFadeInUp 1.2s ease-out 0.3s forwards;
}

.splash-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    animation: splashLogoAppear 1.5s ease-out 0.5s forwards;
}

.splash-text {
    opacity: 0;
    transform: translateY(20px);
    animation: splashTextAppear 1s ease-out 1.2s forwards;
}

.splash-title {
    margin: 0 0 0.5rem 0;
    line-height: 1;
}

.splash-title-main {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}

.splash-title-accent {
    display: block;
    font-family: var(--font-secondary);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.splash-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.splash-loader {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    animation: splashLoaderAppear 0.5s ease-out 2s forwards;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #f4e4bc, var(--accent-color));
    border-radius: 1px;
    animation: splashLoaderFill 2s ease-out 2.2s forwards;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: splashLoaderShine 2s ease-out 2.2s infinite;
}

/* Main content initially hidden */
.main-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.main-content.show {
    opacity: 1;
    transform: translateY(0);
}

/* Splash Animations */
@keyframes splashFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashLogoAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes splashTextAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashLoaderAppear {
    to {
        opacity: 1;
    }
}

@keyframes splashLoaderFill {
    to {
        width: 100%;
    }
}

@keyframes splashLoaderShine {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

/* Mobile responsive splash */
@media (max-width: 768px) {
    .splash-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .splash-logo {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .splash-loader {
        width: 150px;
    }
    
    .splash-title-main {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .splash-title-accent {
        font-size: clamp(1.2rem, 5vw, 2rem);
    }
}

@media (max-width: 480px) {
    .splash-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .splash-loader {
        width: 120px;
    }
}
