:root {
    --primary-green: #006400;
    /* Dark Green */
    --accent-gold: #D4AF37;
    --bg-dark: #050505;
    --bg-card: #121212;
    --text-light: #f4f4f5;
    --text-muted: #a1a1aa;
    --font-heading: 'Amiri', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
}

.logo .highlight {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

.btn-nav {
    border: 1px solid var(--accent-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--accent-gold) !important;
}

.btn-nav:hover {
    background: var(--accent-gold);
    color: var(--bg-dark) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 50px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), var(--bg-dark));
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.bismillah {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background: #004d00;
    border-color: #004d00;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--bg-dark);
}

/* Quote Section */
.quote-section {
    padding: 2rem 0;
    background: var(--bg-dark);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.islamic-quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-gold);
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

.islamic-quote footer {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-style: normal;
}

/* Packages Section */
.packages-section {
    padding: 0.6rem 0;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 100, 0, 0.2);
    border-color: var(--primary-green);
}

.card-image {
    height: 200px;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

.badge.gold {
    background: var(--accent-gold);
    color: var(--bg-dark);
    font-weight: bold;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.price {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price .per-person {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    margin-bottom: 1.5rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: #d1d1d1;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list .icon {
    color: var(--primary-green);
}

.btn-card {
    display: block;
    text-align: center;
    background: transparent;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: 600;
}

.btn-card:hover {
    background: var(--primary-green);
    color: white;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.info-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.info-items .item {
    margin-bottom: 1.5rem;
}

.info-items h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Footer */
footer {
    background: #020202;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.9rem;
}

/* Responsive */
/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
    }
}

/* Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--bg-card);
    margin: auto;
    padding: 2rem;
    border: 1px solid var(--accent-gold);
    width: 90%;
    max-width: 1000px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-gold);
    text-decoration: none;
    cursor: pointer;
}

.modal-title {
    text-align: center;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.tier-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.tier-header h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tier-price {
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tier-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.tier-features li {
    color: #d1d1d1;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.tier-features li::before {
    content: '✓';
    color: var(--primary-green);
    position: absolute;
    left: 0;
}

.btn-tier {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.btn-tier:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

/* Specific Tier Styles (Optional accents) */
.tier-card.gold {
    border-top: 3px solid #FFD700;
}

.tier-card.silver {
    border-top: 3px solid #C0C0C0;
}

.tier-card.platinum {
    border-top: 3px solid #E5E4E2;
}

.tier-card.super-saver {
    border-top: 3px solid var(--primary-green);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin-top: 10vh;
        /* Better positioning on mobile */
        max-height: 80vh;
        /* Allow scrolling if content is too long */
        overflow-y: auto;
    }

    .tier-grid {
        grid-template-columns: 1fr;
        /* Full width cards on mobile */
    }
}

@media (min-width: 769px) {
    .tier-card.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}