:root {
    /* Color Palette: Kenyan Savannah & Modern Luxury */
    --primary-gold: #D4AF37;
    --primary-gold-hover: #b59228;
    --deep-green: #0B2418;
    --savannah-sand: #F5F1E8;
    --text-dark: #1A1A1A;
    --text-light: #F9F9F9;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--savannah-sand);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-green);
    letter-spacing: -0.5px;
}

.logo .highlight {
    color: var(--primary-gold);
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-green);
    margin: 0 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

/* Buttons */
.btn-primary {
    background-color: var(--deep-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--deep-green);
}

.btn-outline {
    background-color: transparent;
    color: var(--deep-green);
    border: 2px solid var(--deep-green);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--deep-green);
    color: var(--white);
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 90vh;
    background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(11, 36, 24, 0.3), rgba(11, 36, 24, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 5%;
    background-color: var(--savannah-sand);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-card.popular {
    border: 2px solid var(--primary-gold);
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

.premium-badge {
    background: var(--primary-gold);
    color: var(--white);
}

.price-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--deep-green);
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
    color: var(--deep-green);
}

.currency {
    font-size: 1.2rem;
    margin-right: 0.25rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-breakdown {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.features li::before {
    content: "✓";
    color: var(--primary-gold);
    font-weight: bold;
    margin-right: 0.75rem;
}

/* Modals */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(11, 36, 24, 0.6);
    /* Black w/ opacity */
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    margin: auto;
    padding: 2.5rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.98);
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal h2 {
    color: var(--deep-green);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    margin-bottom: 2rem;
    color: #666;
}

.highlight-text {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

input,
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.total-display {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--deep-green);
}

.form-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-text {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    padding: 0.75rem;
}

.btn-text:hover {
    text-decoration: underline;
}

/* Payment Sim Styles */
.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.method-btn {
    flex: 1;
    padding: 1rem;
    border: 2px solid #eee;
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.method-btn.selected {
    border-color: var(--deep-green);
    background: rgba(11, 36, 24, 0.05);
}

.fake-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.secure-input {
    background: #f4f4f4;
    cursor: not-allowed;
    color: #888;
}

.secure-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
}

/* Success Styles */
.center-text {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--deep-green);
}

.ticket-preview {
    background: #fff;
    border: 2px dashed #ddd;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--radius-sm);
    text-align: left;
}

.ticket-header {
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.ticket-body .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Simplification */
    }

    .price-card.popular {
        transform: scale(1);
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #666;
}

.faq-answer p {
    padding-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    background-color: var(--deep-green);
    color: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-details {
    list-style: none;
    margin-top: 2rem;
}

.contact-details li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-form-placeholder input,
.contact-form-placeholder textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-form-placeholder input:focus,
.contact-form-placeholder textarea:focus {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form-placeholder textarea {
    width: 100%;
    /* Ensure full width */
    min-height: 120px;
    /* Reduced height as requested */
    padding: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

/* Updated Payment Modal */
.small-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    color: #999;
    font-weight: 600;
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #eee;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.stripe-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    background-color: #635bff;
    /* Stripe Blurple */
}

.stripe-btn:hover {
    background-color: #4b45c2;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Payment List Styles */
.payment-methods-text {
    background: #fdfdfd;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 1.5rem;
    text-align: left;
}

.payment-list {
    font-size: 0.9rem;
    color: #444;
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.payment-list li {
    margin-bottom: 0.5rem;
}