:root {
    /* Luxurious Dark Tourism Palette: Deep Black, Navy, and Gold */
    --primary: #c5a059; /* Elegant Gold/Bronze */
    --secondary: #d4af37; /* Metallic Gold */
    --accent: #e5e5e5; /* Light Grey for contrast */
    --background: #0a0a0a; /* Deep Black */
    --surface: #141414; /* Dark Grey Surface */
    --surface-soft: #1f1f1f; /* Slightly Lighter Surface */
    --text: #f5f5f5; /* Off-white for readability */
    --text-muted: #a0a0a0; /* Muted Grey */
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
    --glass-bg: rgba(20, 20, 20, 0.8);
    --glass-border: rgba(197, 160, 89, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #0a0a0a;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

h1, h2, h3, .logo {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

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

/* Navbar */
.navbar {
    background: rgba(10, 10, 10, 0.6); /* Reduced opacity for better blur effect */
    backdrop-filter: blur(20px); /* Increased blur intensity */
    -webkit-backdrop-filter: blur(20px); /* Safari support */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-menu {
    width: 100%;
    background: rgba(15, 15, 15, 0.98);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
}

.mobile-menu.hidden {
    display: none;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 20px 18px;
}

.mobile-nav-links a {
    display: block;
    text-decoration: none;
    color: var(--text);
    background: var(--surface-soft);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 700;
    line-height: 1.6;
    transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus,
.mobile-nav-links a:active {
    color: var(--background);
    background: var(--primary);
    border-color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    justify-items: center;
    width: 100%;
}

.hero-content {
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(197, 160, 89, 0.15);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: var(--primary);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
    color: var(--primary);
    margin-right: 5px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--white);
}

.hero-content h1 span {
    color: var(--primary); /* Gold color for emphasis */
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--background);
    box-shadow: 0 16px 30px rgba(197, 160, 89, 0.2);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.4);
}

/* Hero Card */
.hero-card {
    background: var(--surface);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    padding: 40px;
    color: var(--text);
    box-shadow: var(--shadow);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 16px;
}

.card-header .stat-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.card-header .stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    color: var(--text-muted);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.progress-container {
    margin-bottom: 40px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.progress-bar-bg {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 999px;
}

.card-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.mini-stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    color: var(--primary);
}

.mini-stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    color: var(--text-muted);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.8);
}

.card:hover .card-img {
    filter: brightness(1);
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.card-content p,
.card-content li,
.card-content span {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: #050505;
    color: var(--white);
    padding: 80px 0 30px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary);
}

.social-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: var(--transition);
}

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

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        margin-inline-start: auto;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 110px 0 70px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}
