:root {
    --primary-color: #0f291e;
    --primary-light: #1b4d35;
    --primary-dark: #07140f;
    --accent-color: #d4a373;
    --accent-hover: #bc8a59;
    --text-main: #1f2937;
    --text-light: #f9fafb;
    --text-muted: #4b5563;
    --bg-main: #ffffff;
    --bg-light: #f3f4f6;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --z-nav: 1000;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}
p {
    margin-bottom: 1.5rem;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-padding {
    padding: 120px 0;
}
.bg-light {
    background-color: var(--bg-light);
}
.section-header {
    margin-bottom: 64px;
    max-width: 800px;
}
.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 24px;
    color: var(--primary-color);
}
.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
    background-color: var(--accent-color);
    color: var(--bg-main);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.w-100 {
    width: 100%;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: var(--z-nav);
    transition: var(--transition-normal);
    padding: 24px 0;
}
.navbar.scrolled, .navbar.solid-nav {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    box-shadow: var(--shadow-md);
}
.navbar.scrolled .brand-logo, .navbar.solid-nav .brand-logo {
    color: var(--primary-color);
}
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.brand-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 4px;
    z-index: calc(var(--z-nav) + 1);
    transition: var(--transition-normal);
}
.brand-logo .dot {
    color: var(--accent-color);
}
.doc-header {
    padding-top: 160px;
}
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 60px;
    background-image: url('https://images.unsplash.com/photo-1544434914-f584e0394334?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 41, 30, 0.95) 0%, rgba(15, 41, 30, 0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}
.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease forwards;
}
.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #d1d5db;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 48px;
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 12px;
}
.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9ca3af;
    font-weight: 600;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
.lead-text {
    font-size: 1.35rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.6;
}
.intro-text p {
    color: var(--text-muted);
}
.intro-gallery {
    position: relative;
    height: 650px;
}
.img-main {
    width: 85%;
    height: 85%;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}
.img-sub {
    width: 55%;
    height: 55%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: var(--radius-lg);
    border: 16px solid var(--bg-main);
    box-shadow: var(--shadow-xl);
}
.filter-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 12px 32px;
    border-radius: 50px;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}
.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.destination-grid {
    display: grid;
    gap: 40px;
}
.full-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.dest-card {
    background-color: var(--bg-main);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.dest-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--accent-color);
}
.dest-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.dest-img-wrapper img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.dest-card:hover .dest-img-wrapper img {
    transform: scale(1.08);
}
.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: var(--shadow-md);
}
.dest-info {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.dest-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.location {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}
.info-block {
    margin-bottom: 32px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.info-block h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}
.contact-detail-row {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}
.detail-label {
    font-weight: 700;
    width: 120px;
    color: var(--primary-color);
    flex-shrink: 0;
}
.detail-value {
    color: var(--text-muted);
    flex: 1;
    font-weight: 500;
    word-break: break-word;
}
.inquiry-form {
    background-color: var(--bg-main);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
.inquiry-form h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.input-group {
    margin-bottom: 24px;
    width: 100%;
}
.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}
.input-group input, .input-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--bg-light);
    transition: var(--transition-fast);
    color: var(--text-main);
}
.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--bg-main);
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.2);
}
.doc-container {
    max-width: 900px;
    background-color: var(--bg-main);
    padding: 64px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.doc-meta {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.doc-container h2 {
    font-size: 1.75rem;
    margin: 48px 0 24px;
}
.doc-container p, .doc-container ul {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}
.doc-container ul {
    padding-left: 32px;
}
.doc-container li {
    margin-bottom: 12px;
}
.site-footer-simple {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 40px 0;
    margin-top: auto;
    border-top: 4px solid var(--accent-color);
}
.footer-simple-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.copyright {
    color: #9ca3af;
    margin: 0;
    font-size: 0.95rem;
}
.legal-links {
    display: flex;
    gap: 32px;
}
.legal-links a {
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-fast);
}
.legal-links a:hover {
    color: var(--accent-color);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media screen and (max-width: 1200px) {
    .intro-grid, .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .intro-gallery {
        margin-top: 64px;
    }
    .hero-stats {
        gap: 40px;
    }
}
@media screen and (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
    .nav-container {
        padding: 0 20px;
    }
    .brand-logo {
        margin-right: -4px;
        font-size: 1.5rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }
    .stat-item {
        width: 40%;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .inquiry-form {
        padding: 32px 24px;
    }
    .info-block {
        padding: 32px 24px;
    }
    .contact-detail-row {
        flex-direction: column;
        gap: 8px;
    }
    .detail-label {
        width: 100%;
        margin-bottom: 0;
    }
    .footer-simple-flex {
        flex-direction: column;
        text-align: center;
    }
    .full-grid {
        grid-template-columns: 1fr;
    }
    .intro-gallery {
        height: 400px;
    }
    }
