:root {
    --primary: #1b5e20;
    --dark: #0f172a;
    --text-grey: #64748b;
    --white: #ffffff;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fff;
    overflow-x: hidden;
    position: relative;
}

.home-page .home-hero {
    position: relative;
    z-index: 1;
}
#header-placeholder {
    height: 70px; /* Navbar ki fixed height */
    display: block;
    width: 100%;
}

@media (max-width: 991px) {
    #header-placeholder {
        height: 60px; /* Mobile ke liye height */
    }
}


/* HERO */
.home-hero {
    padding-top: 80px;
}

.hero-section {
    padding: 60px 0;
    background: radial-gradient(circle at 80% 20%, #e8f5e9, transparent);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.highlight { color: var(--primary); }

/* Buttons */
.btn-premium {
    background: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    border: none;
}

.btn-tour {
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero buttons */
.hero-btns-wrapper {
    display: flex !important;
    gap: 15px;
}

@media (max-width: 991px) {
    .hero-btns-wrapper {
        flex-direction: column !important;
        align-items: center;
    }

    .btn-premium, .btn-tour {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Features */
.feature-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s;
}

.feature-card i {
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* Footer */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 40px 0;
}

/* AOS safety */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* Typography fixes */
@media (max-width: 768px) {
    h1.hero-title,
    .fw-800.text-dark {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }
}

/* Legal / text formatting */
p, .policy-section p, .terms-section p, .text-muted {
    text-align: justify;
    text-justify: inter-word;
}

.policy-section li,
.terms-section li {
    text-align: justify;
    margin-bottom: 8px;
}

/* Premium Full Screen Loader */
#masterLoader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 9999; transition: 0.5s;
}
.pulse-loader {
    width: 60px; height: 60px;
    background-color: #1b5e20;
    border-radius: 100%;
    animation: sk-pulseScaleOut 1s infinite ease-in-out;
}
@keyframes sk-pulseScaleOut {
    0% { transform: scale(0); }
    100% { transform: scale(1.0); opacity: 0; }
}
.loader-text {
    margin-top: 20px; font-weight: 800; color: #1b5e20;
    letter-spacing: 1px; text-transform: uppercase; font-size: 0.8rem;
}
