:root {
    /* Color Palette */
    --forest-green: #082415;
    --forest-green-light: #164028;
    --forest-green-dark: #03140a;
    --luxury-gold: #dca341;
    --luxury-gold-light: #f5d487;
    --text-light: #fdfdfd;
    --text-muted: #b0bfb6;
    --bg-dark: #0b1a12;
    --glass-bg: rgba(22, 64, 40, 0.4);
    --glass-border: rgba(220, 163, 65, 0.2);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;

    /* Effects */
    --transition: all 0.3s ease;
    --gold-gradient: linear-gradient(135deg, #dca341 0%, #f5d487 50%, #dca341 100%);
    --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

.text-gold {
    color: var(--luxury-gold);
}

.text-center {
    text-align: center;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
}

/* Buttons */
.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--forest-green-dark);
    font-weight: 600;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(220, 163, 65, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--luxury-gold);
    color: var(--luxury-gold);
}

.btn-outline:hover {
    background: var(--luxury-gold);
    color: var(--forest-green-dark);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Form inputs reset for button */
button.btn-primary {
    font-family: var(--font-body);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(3, 20, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 163, 65, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 60px;
    /* Suitable height for the navbar */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .brand-logo {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--luxury-gold);
    transition: var(--transition);
}

.nav-links a:not(.nav-btn):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--luxury-gold);
}

.nav-btn.btn-primary {
    padding: 10px 24px;
}

.nav-btn.btn-primary:hover {
    color: var(--forest-green-dark);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--luxury-gold);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(3, 20, 10, 0.9) 0%, rgba(3, 20, 10, 0.6) 50%, rgba(3, 20, 10, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    width: 100%;
}

.hero-text-box {
    max-width: 700px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--luxury-gold);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--luxury-gold);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--luxury-gold);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(220, 163, 65, 0.3);
}

/* About Section */
.about {
    background-color: var(--forest-green-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding: 0;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-placeholder {
    font-size: 8rem;
    color: rgba(220, 163, 65, 0.2);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-gradient);
    color: var(--forest-green-dark);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-badge i {
    font-size: 1.5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.feature-list {
    margin-top: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

/* Plans Section */
.plans {
    background-color: var(--forest-green);
    position: relative;
}

.plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(220, 163, 65, 0.05) 0%, transparent 70%);
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.plans-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.premium-card {
    border: 1px solid var(--luxury-gold);
    background: linear-gradient(180deg, rgba(22, 64, 40, 0.8) 0%, rgba(3, 20, 10, 0.9) 100%);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gold-gradient);
    color: var(--forest-green-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-header {
    text-align: center;
    border-bottom: 1px solid rgba(220, 163, 65, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.plan-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 500;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--luxury-gold);
    line-height: 1;
    margin-bottom: 16px;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.plan-body {
    flex-grow: 1;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-icon {
    color: var(--luxury-gold);
    font-size: 1.2rem;
    margin-top: 4px;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 1.1rem;
    color: var(--text-light);
}

.feature-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.main-return {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
    border-radius: 8px;
    border: 1px dashed rgba(220, 163, 65, 0.3);
}

.option-title {
    color: var(--luxury-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.option-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.option-box strong {
    color: var(--text-light);
}

.option-separator {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
}

.option-separator::before,
.option-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.option-separator::before {
    left: 0;
}

.option-separator::after {
    right: 0;
}

/* Trust Section */
.trust {
    position: relative;
}

.trust-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.trust-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 20, 10, 0.85);
    z-index: -1;
}

.trust-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.trust-item {
    padding: 24px;
    transition: transform 0.3s;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    margin-bottom: 20px;
}

.trust-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background-color: var(--forest-green-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-methods {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.method-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 163, 65, 0.1);
    color: var(--luxury-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-text h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.method-text p {
    color: var(--text-muted);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.contact-form-wrapper p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--luxury-gold);
    background: rgba(0, 0, 0, 0.5);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
    background: var(--forest-green-dark);
    color: white;
}

/* Footer */
.footer {
    background-color: #020a05;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(220, 163, 65, 0.2);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-widget .logo {
    display: inline-block;
}

.mb-4 {
    margin-bottom: 24px;
}

.mt-3 {
    margin-top: 16px;
}

.d-block {
    display: block;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-weight: 500;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-col a i {
    color: var(--luxury-gold);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--luxury-gold);
    letter-spacing: 1px;
}

.footer-links-col a:hover i {
    transform: translateX(5px);
}

.contact-info {
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    color: var(--luxury-gold);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(220, 163, 65, 0.3);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--luxury-gold);
    color: var(--forest-green-dark);
    border-color: var(--luxury-gold);
    transform: translateY(-3px);
}

.hours-title {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.border-bottom {
    border-bottom: 1px solid var(--luxury-gold);
}

.footer-menu {
    display: flex;
    gap: 24px;
}

.footer-menu a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--luxury-gold);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold-gradient);
    color: var(--forest-green-dark);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(220, 163, 65, 0.4);
    color: var(--forest-green-dark);
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .footer-menu {
        justify-content: center;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* Responsive */
@media (max-width: 900px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand p {
        margin: 10px auto 0;
    }

    .floating-badge {
        bottom: 10px;
        right: 10px;
        left: 10px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--forest-green-dark);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }
}