/* ============================================================
   Green Valley Haridwar — Premium CSS Design System
   Shivam Developers | Version 3.0
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ============================================================
   CSS Variables — Design Tokens
   ============================================================ */
:root {
    --primary-green: #0e3027;
    --primary-green-light: #17483b;
    --primary-green-dark: #081a15;
    --accent-gold: #c39b56;
    --accent-gold-light: #d4ae70;
    --accent-gold-dark: #a67c3c;
    --bg-light: #f7f8f5;
    --bg-cream: #fdfcf8;
    --dark-neutral: #1a1e1c;
    --text-muted: #6b7280;
    --border-light: rgba(14,48,39,0.1);
    --glass-bg: rgba(255,255,255,0.08);
    --shadow-sm: 0 2px 15px rgba(14,48,39,0.06);
    --shadow-md: 0 8px 30px rgba(14,48,39,0.10);
    --shadow-lg: 0 20px 60px rgba(14,48,39,0.15);
    --shadow-gold: 0 8px 30px rgba(195,155,86,0.25);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition-base: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ============================================================
   Base Reset & Body
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--dark-neutral);
    overflow-x: hidden;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   Typography Utilities
   ============================================================ */
.font-playfair    { font-family: 'Playfair Display', serif; }
.font-cormorant   { font-family: 'Cormorant Garamond', serif; }
.text-gold        { color: var(--accent-gold) !important; }
.text-green       { color: var(--primary-green) !important; }
.text-muted-custom{ color: rgba(255,255,255,0.65); }
.bg-light-custom  { background-color: var(--bg-light); }
.bg-cream         { background-color: var(--bg-cream); }
.uppercase        { text-transform: uppercase; }
.tracking-wider   { letter-spacing: 2.5px; }
.leading-loose    { line-height: 1.9; }
.max-width-600    { max-width: 600px; }
.max-width-800    { max-width: 800px; }
.z-index-3        { z-index: 3; }
.italic           { font-style: italic; }

/* ============================================================
   Gradient Text
   ============================================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   Section Labels (Gold uppercase pill)
   ============================================================ */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: rgba(195,155,86,0.1);
    border: 1px solid rgba(195,155,86,0.3);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
    padding: 22px 0;
    transition: var(--transition-base);
    background-color: transparent;
    z-index: 1000;
}

.navbar-solid,
.navbar-scrolled {
    padding: 12px 0 !important;
    background-color: var(--primary-green) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2) !important;
}

.logo-gold {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.65rem;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
}

.logo-white { font-weight: 700; }

.navbar-nav .nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 16px !important;
    border-radius: 50px;
    transition: var(--transition-base);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-gold) !important;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
    min-height: 100vh;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/f/f7/Har_Ki_Pauri_Haridwar_Thakur_Dalip_Singh_%28126376273%29.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(8,26,21,0.82) 0%,
        rgba(14,48,39,0.7) 50%,
        rgba(8,26,21,0.88) 100%
    );
    z-index: 1;
}

.hero-section .container { position: relative; z-index: 3; }

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(195,155,86,0.25), rgba(195,155,86,0.1));
    border: 1px solid rgba(195,155,86,0.5);
    color: var(--accent-gold);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
   margin-top:104px;
}

.bg-gold { background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark)) !important; }

/* ============================================================
   Buttons
   ============================================================ */
.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: white !important;
    border: none;
    font-weight: 700;
    letter-spacing: 0.8px;
    font-size: 0.88rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.btn-gold:hover::before { left: 100%; }

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(195,155,86,0.5);
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
}

.btn-gold:active { transform: translateY(-1px); }

.btn-outline-gold {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold) !important;
    background: transparent;
    font-weight: 700;
    letter-spacing: 0.8px;
    font-size: 0.88rem;
    transition: var(--transition-base);
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ============================================================
   Search / Quick Contact Ribbon
   ============================================================ */
.search-bar-section {
    transform: translateY(-50%);
    margin-bottom: -30px;
}

.search-container {
    background: white;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid rgba(195,155,86,0.15) !important;
}

/* ============================================================
   Section Heading Divider
   ============================================================ */
.section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin: 12px auto 20px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--accent-gold));
}

.section-divider::after {
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.divider-icon {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* ============================================================
   Stats Counter Section
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 50%, var(--primary-green) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(195,155,86,0.05);
    pointer-events: none;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.12);
}

.stat-card:last-child::after { display: none; }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 8px;
    display: block;
}

/* ============================================================
   Property Cards
   ============================================================ */
.property-card {
    border: none;
    border-radius: var(--radius-md);
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    overflow: hidden;
}

.property-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg) !important;
}

.property-card .card-img-top {
    transition: var(--transition-slow);
}

.property-card:hover .card-img-top {
    transform: scale(1.05);
}

.property-price-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(195,155,86,0.4);
}

.property-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(14,48,39,0.85);
    backdrop-filter: blur(4px);
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ============================================================
   Amenities Grid Cards
   ============================================================ */
.amenity-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(195,155,86,0.3);
}

.icon-container-gold {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(195,155,86,0.15), rgba(195,155,86,0.05));
    border: 1.5px solid rgba(195,155,86,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition-base);
}

.amenity-card:hover .icon-container-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.amenity-card:hover .icon-container-gold i {
    color: white !important;
}

/* ============================================================
   TESTIMONIALS — Swiper Slider
   ============================================================ */
.testimonials-section {
    background: linear-gradient(180deg, #f7f8f5 0%, #eef0eb 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 28rem;
    color: rgba(14,48,39,0.03);
    top: -80px;
    left: -40px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.testimonial-swiper {
    padding: 20px 10px 60px !important;
    overflow: visible !important;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(195,155,86,0.15);
    line-height: 1;
}

.swiper-slide-active .testimonial-card,
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(195,155,86,0.25);
    transform: translateY(-4px);
}

.testimonial-stars { color: #f59e0b; gap: 3px; }

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #4b5563;
    font-style: italic;
    margin: 14px 0 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
}

.testimonial-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-neutral);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Swiper pagination & navigation */
.swiper-pagination-bullet {
    background: var(--primary-green);
    opacity: 0.3;
    width: 8px;
    height: 8px;
    transition: var(--transition-base);
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

.swiper-button-next,
.swiper-button-prev {
    background: white;
    border-radius: 50%;
    width: 46px !important;
    height: 46px !important;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 0.9rem !important;
    font-weight: 900;
    color: var(--primary-green);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: white;
}

/* ============================================================
   Trust / Partner Logos Strip
   ============================================================ */
.trust-strip {
    background: white;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.trust-item i { color: var(--accent-gold); font-size: 1.1rem; }

/* ============================================================
   Blog Cards
   ============================================================ */
.blog-card {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    background: white;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card .blog-img-wrapper {
    overflow: hidden;
    height: 210px;
}

.blog-card .blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.06);
}

.blog-category-chip {
    display: inline-block;
    background: rgba(195,155,86,0.1);
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(195,155,86,0.25);
    margin-bottom: 10px;
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-section .accordion-item {
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    margin-bottom: 12px !important;
    box-shadow: var(--shadow-sm);
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-neutral);
    background: white;
    padding: 20px 24px;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-green);
    background: white;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: invert(25%) sepia(90%) saturate(500%) hue-rotate(120deg);
}

.faq-section .accordion-body {
    background: var(--bg-light);
    font-size: 0.92rem;
    line-height: 1.85;
    color: #4b5563;
    padding: 18px 24px;
}

/* ============================================================
   Contact Form Section
   ============================================================ */
.contact-dark-section {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 60%, #133326 100%);
    position: relative;
    overflow: hidden;
}

.contact-dark-section::after {
    content: '';
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(195,155,86,0.06);
    pointer-events: none;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(195,155,86,0.15);
    border: 1px solid rgba(195,155,86,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box i { color: var(--accent-gold); font-size: 1rem; }

/* ============================================================
   About Page — Enhanced Sections
   ============================================================ */

/* Mission / Vision Cards */
.vision-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 50px 40px;
    height: 100%;
    position: relative;
}

.vision-card.green {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
}

.vision-card.gold {
    background: linear-gradient(135deg, #fdf6e3 0%, #fef9ed 100%);
    border: 1.5px solid rgba(195,155,86,0.3);
    color: var(--dark-neutral);
}

.vision-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.vision-card.green .vision-icon {
    background: rgba(195,155,86,0.2);
    color: var(--accent-gold);
}

.vision-card.gold .vision-icon {
    background: rgba(14,48,39,0.1);
    color: var(--primary-green);
}

/* Timeline */
.timeline-section {
    position: relative;
}

.timeline-track {
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-gold) 0%, rgba(195,155,86,0.2) 100%);
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
    flex: 1;
    background: white;
    border-radius: var(--radius-md);
    padding: 28px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(195,155,86,0.3);
    transform: translateY(-4px);
}

.timeline-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 0.75rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
    z-index: 2;
    align-self: flex-start;
    margin-top: 14px;
    border: 3px solid white;
}

.timeline-spacer { flex: 1; }

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 6px;
}

/* Team Grid */
.team-card {
    text-align: center;
    background: white;
    border-radius: var(--radius-md);
    padding: 36px 24px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
    transform: scaleX(0);
    transition: var(--transition-base);
}

.team-card:hover::before { transform: scaleX(1); }

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 18px;
    border: 4px solid rgba(195,155,86,0.2);
    transition: var(--transition-base);
}

.team-card:hover .team-avatar {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 6px rgba(195,155,86,0.1);
}

/* Why Choose Us */
.why-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(195,155,86,0.3);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(195,155,86,0.15), rgba(195,155,86,0.05));
    border: 1px solid rgba(195,155,86,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
    color: var(--accent-gold);
    transition: var(--transition-base);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: white;
    border-color: var(--accent-gold);
}

/* Awards */
.award-card {
    background: linear-gradient(135deg, #fdf6e3, white);
    border: 1.5px solid rgba(195,155,86,0.25);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition-base);
    height: 100%;
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent-gold);
}

/* Dark CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: var(--radius-xl);
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(195,155,86,0.08);
    pointer-events: none;
}

/* ============================================================
   Gallery Page
   ============================================================ */
.gallery-hover {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
}

.transition-scale {
    transition: var(--transition-slow);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-hover:hover .transition-scale {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,26,21,0.8), transparent);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-hover:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   Contact Page Map & Forms
   ============================================================ */
.map-embed-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form-control, .form-select {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: var(--transition-base);
    background-color: #fafafa;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(195,155,86,0.12);
    background-color: white;
}

/* ============================================================
   Admin Dashboard — Premium Styles
   ============================================================ */
.admin-sidebar {
    width: 260px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    padding-top: 0;
    z-index: 100;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.15);
}

.admin-main-content {
    margin-left: 260px;
    padding: 30px;
    min-height: 100vh;
    background: #f0f2ef;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.65);
    padding: 13px 20px;
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.88rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    letter-spacing: 0.2px;
}

.sidebar-link i { font-size: 1rem; width: 18px; text-align: center; }

.sidebar-link:hover,
.sidebar-link.active {
    color: #ffffff;
    background: rgba(195,155,86,0.12);
    border-left-color: var(--accent-gold);
}

.sidebar-link.active { font-weight: 700; }

/* Admin Stats Cards */
.admin-stat-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
}

.admin-stat-card.green::before { background: var(--primary-green); }
.admin-stat-card.gold::before { background: var(--accent-gold); }
.admin-stat-card.blue::before { background: #3b82f6; }
.admin-stat-card.red::before { background: #ef4444; }

.admin-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.admin-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.admin-stat-icon.green { background: rgba(14,48,39,0.1); color: var(--primary-green); }
.admin-stat-icon.gold  { background: rgba(195,155,86,0.12); color: var(--accent-gold); }
.admin-stat-icon.blue  { background: rgba(59,130,246,0.1); color: #3b82f6; }
.admin-stat-icon.red   { background: rgba(239,68,68,0.1); color: #ef4444; }

.admin-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-neutral);
    line-height: 1;
}

.admin-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}

/* Admin Table */
.admin-table-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.admin-table-header {
    padding: 20px 24px;
    background: white;
    border-bottom: 1px solid #f1f5f3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ============================================================
   Tables (Global)
   ============================================================ */
.table { border-collapse: separate; border-spacing: 0; width: 100%; }

.table th {
    background: #f1f5f3 !important;
    color: var(--primary-green) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 14px 16px;
    border: none;
}

.table td {
    padding: 16px;
    background: white;
    border-bottom: 1px solid #f1f5f3;
    vertical-align: middle;
}

.table tr:hover td { background: #fafcfb; }
.table tr:last-child td { border-bottom: none; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: linear-gradient(180deg, var(--primary-green-dark) 0%, #060f0c 100%);
    color: white;
}

.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
}

.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.footer-link:hover { color: var(--accent-gold); padding-left: 6px; }

.footer-link i { font-size: 0.7rem; color: var(--accent-gold); }

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-base);
}

.footer-social-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(195,155,86,0.3);
}

.footer-divider {
    border-color: rgba(255,255,255,0.08) !important;
}

.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 16px 0;
}

/* ============================================================
   Floating WhatsApp Button
   ============================================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: var(--transition-base);
    animation: whatsapp-pulse 2.5s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.12);
    color: white;
    box-shadow: 0 10px 30px rgba(37,211,102,0.55);
    animation: none;
}

@keyframes whatsapp-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================================
   Scroll-to-top button
   ============================================================ */
.scroll-to-top {
    position: fixed;
    bottom: 98px;
    right: 28px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 9998;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.scroll-to-top.show { display: flex; }
.scroll-to-top:hover { background: var(--accent-gold); transform: translateY(-3px); }

/* ============================================================
   Page Hero Banners (Inner Pages)
   ============================================================ */
.page-hero {
    height: 52vh;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ============================================================
   Utility & Misc
   ============================================================ */
.sticky-top-custom { top: 110px; z-index: 10; }

.rounded-4 { border-radius: 16px !important; }
.rounded-5 { border-radius: 24px !important; }

.shadow-gold { box-shadow: var(--shadow-gold) !important; }

/* Gradient separator lines */
.gold-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border: none;
    margin: 0 auto;
    max-width: 80px;
    opacity: 0.7;
}

/* Location badge */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14,48,39,0.08);
    color: var(--primary-green);
    border: 1px solid rgba(14,48,39,0.15);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    .admin-main-content { margin-left: 0; padding: 15px; }

    .timeline-track::before { left: 28px; }
    .timeline-item { flex-direction: column !important; padding-left: 70px; }
    .timeline-dot { position: absolute; left: 0; }
    .timeline-spacer { display: none; }

    .cta-banner { padding: 50px 28px; }

    .stat-card::after { display: none; }
    .stat-number { font-size: 2.4rem; }

    .search-bar-section { transform: none; margin-bottom: 20px; }
}

@media (max-width: 767px) {
    .hero-section { background-attachment: scroll; }
    .page-hero { background-attachment: scroll; }
}

/* ============================================================
   Trust / Partner Logos Strip (Stable Grid Fix)
   ============================================================ */
.trust-strip {
    background: white;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
}

/* modern CSS grid system */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Tablets / Large Mobile Screen layout (2x2 grid) */
@media (min-width: 576px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Laptops & Desktop Screen layout (4 columns in 1 line) */
@media (min-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.trust-grid-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-green);
    font-size: 0.88rem;
    font-weight: 600;
}

.trust-grid-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* केवल डेस्कटॉप व्यू में वर्टिकल सेपरेटर बॉर्डर्स दिखाना */
@media (min-width: 992px) {
    .trust-grid-item:not(:first-child) {
        border-left: 1px solid rgba(14,48,39,0.1);
        padding-left: 1.5rem;
    }
}

/* ============================================================
   Contact Page — Aligned circular icons & block styling
   ============================================================ */
.contact-info-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.contact-info-block:hover {
    background: rgba(195,155,86,0.04);
    transform: translateX(6px);
}

.contact-icon-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(195,155,86,0.12), rgba(195,155,86,0.04));
    border: 1.5px solid rgba(195,155,86,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* ताकि रिस्पॉन्सिव व्यू में आइकन पिचके नहीं */
    color: var(--accent-gold);
    font-size: 1.25rem;
    transition: var(--transition-base);
}

.contact-info-block:hover .contact-icon-circle {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-color: var(--accent-gold);
    color: white !important;
}

/* Page Hero Fix to clear conflicts with Home Hero */
.page-hero {
    padding-top: 80px; /* हेडर से उचित दूरी */
    background-size: cover;
    background-position: center;
    position: relative;
}


/* Logo */
.site-logo{
    height:70px;
    width:auto;
    transition:.3s;
}

#mainNavbar.scrolled .site-logo{
    height:60px;
}

@media (max-width:991px){
    .site-logo{
        height:55px;
    }
}

/* ===========================
   Footer Logo
=========================== */

.footer-logo{
    width:220px;
    height:auto;
    display:block;
    transition:0.3s ease;
    filter:drop-shadow(0 6px 15px rgba(0,0,0,.35));
}

.footer-logo:hover{
    transform:scale(1.03);
}

@media (max-width:768px){
    .footer-logo{
        width:180px;
    }
}