/* ============================================================
   NAKSH EARTH INDIA — SHARED STYLESHEET
   Used by: ALL pages
   ============================================================ */

:root {
    --forest: #1a3a2a;
    --forest-mid: #245c38;
    --forest-light: #2d7a4a;
    --sage: #4a7c59;
    --mint: #8ec4a0;
    --hover-green: #3cb371;
    --hover-green-light: #52c78a;
    --hover-green-bg: rgba(60,179,113,0.12);
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #f8f5ef;
    --warm-white: #fdfaf5;
    --charcoal: #1c1c1c;
    --slate: #4a4a4a;
    --mist: #8a8a8a;
    --border: rgba(26,58,42,0.12);
    --shadow-sm: 0 2px 12px rgba(26,58,42,0.08);
    --shadow-md: 0 8px 32px rgba(26,58,42,0.12);
    --shadow-lg: 0 20px 60px rgba(26,58,42,0.18);
    --shadow-xl: 0 32px 80px rgba(26,58,42,0.22);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --header-h: 72px;
    --transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s cubic-bezier(0.4,0,0.2,1);
    --transition-color: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'Poppins', sans-serif; font-weight: 400; line-height: 1.65; color: var(--charcoal); background: var(--warm-white); overflow-x: hidden; text-rendering: optimizeSpeed; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'Poppins', sans-serif; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 600; }
img[loading="lazy"] { content-visibility: auto; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--hover-green); border-radius: 99px; }

/* ===== HEADER ===== */
header { position: sticky; top: 0; z-index: 1000; background: var(--forest); will-change: transform; contain: layout; }
.header-top { background: rgba(0,0,0,0.28); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.header-top .wrap { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; flex-shrink: 0; display: block; }
.logo-icon { width: 42px; height: 42px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; justify-content: center; }
.logo-main { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: 0.3px; }
.logo-sub { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; text-transform: uppercase; margin-top: 2px; }
.header-right { display: flex; align-items: center; gap: 24px; }
.header-contact { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.header-contact a { font-weight: 400; color: rgba(255,255,255,0.75); transition: var(--transition-color); display: flex; align-items: center; gap: 5px; font-size: 13px; }
.header-contact a:hover { color: var(--hover-green-light); }
.social-links { display: flex; gap: 10px; align-items: center; }
.social-links a { width: 30px; height: 30px; border-radius: 6px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); font-size: 13px; transition: var(--transition-color), transform 0.25s ease; }
.social-links a:hover { background: var(--hover-green); border-color: var(--hover-green); color: #fff; transform: translateY(-2px); }

/* ===== NAV ===== */
nav { height: var(--header-h); background: var(--forest); }
.nav-wrap { max-width: 1400px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.nav-menu { display: flex; align-items: center; height: 100%; gap: 2px; flex: 1; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link { font-weight: 500; display: flex; align-items: center; gap: 4px; padding: 6px 11px; color: rgba(255,255,255,0.85); font-size: 13px; border-radius: var(--radius-sm); transition: var(--transition-color); white-space: nowrap; height: 40px; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 50%; right: 50%; height: 2px; background: var(--hover-green); transition: left 0.25s ease, right 0.25s ease; }
.nav-link:hover { background: var(--hover-green-bg); color: var(--hover-green-light); }
.nav-link.active { background: rgba(255,255,255,0.1); color: var(--hover-green-light); }
.nav-link:hover::after, .nav-link.active::after { left: 11px; right: 11px; }
.nav-chevron { width: 13px; height: 13px; transition: transform 0.2s ease; opacity: 0.6; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }
.dropdown { position: absolute; top: calc(100% + 4px); left: 0; min-width: 240px; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-xl); border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.97); transform-origin: top left; transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease; overflow: hidden; padding: 6px; will-change: opacity, transform; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dropdown-link { font-weight: 500; display: flex; align-items: center; gap: 10px; padding: 10px 14px; color: var(--slate); font-size: 13.5px; border-radius: 8px; transition: var(--transition-color), padding-left 0.2s ease; }
.dropdown-link::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--hover-green); opacity: 0; transition: opacity 0.2s ease; flex-shrink: 0; }
.dropdown-link:hover { background: var(--hover-green-bg); color: var(--hover-green); padding-left: 18px; }
.dropdown-link:hover::before { opacity: 1; }
.dropdown-link.active-sub { color: var(--hover-green); background: var(--hover-green-bg); }

/* ===== ENQUIRE BUTTON ===== */
.enquire-btn { font-weight: 500; display: inline-flex; align-items: center; padding: 9px 18px; background: var(--gold); color: var(--forest); border-radius: var(--radius-sm); font-size: 13px; transition: var(--transition-color), transform 0.25s ease, box-shadow 0.25s ease; white-space: nowrap; flex-shrink: 0; }
.enquire-btn:hover { background: var(--hover-green); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(60,179,113,0.4); }

/* ===== HAMBURGER ===== */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; border-radius: 8px; transition: var(--transition-color); border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); padding: 8px; flex-shrink: 0; }
.hamburger:hover { background: var(--hover-green-bg); border-color: var(--hover-green); }
.hamburger span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-header-actions { display: none; align-items: center; gap: 6px; flex: 1; margin-right: auto; }
.mob-contact-text { display: flex; flex-direction: column; gap: 1px; }
.mob-contact-text a { color: rgba(255,255,255,0.85); font-size: 11px; font-weight: 500; line-height: 1.3; white-space: nowrap; transition: color 0.2s ease; }
.mob-contact-text a:hover { color: var(--hover-green-light); }

/* ===== SIDEBAR ===== */
.sidebar-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); z-index: 1998; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.sidebar-overlay.open { opacity: 1; pointer-events: all; }
.mobile-sidebar { position: fixed; top: 0; left: 0; width: min(320px, 88vw); height: 100dvh; background: #fff; z-index: 1999; transform: translateX(-100%); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; overflow: hidden; will-change: transform; }
.mobile-sidebar.open { transform: translateX(0); }
.sb-header { background: var(--forest); padding: 16px 16px 14px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.sb-close { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1); color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center; transition: var(--transition-color); }
.sb-close:hover { background: var(--hover-green); }
.sb-nav { flex: 1; overflow-y: auto; padding: 10px 10px 24px; }
.sb-nav::-webkit-scrollbar { width: 4px; }
.sb-nav::-webkit-scrollbar-thumb { background: var(--hover-green); border-radius: 99px; }
.sb-item { margin-bottom: 2px; }
.sb-link { font-weight: 600; display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; color: var(--charcoal); font-size: 14px; border-radius: 10px; transition: var(--transition-color); }
.sb-link:hover, .sb-link.active { background: var(--hover-green-bg); color: var(--hover-green); }
.sb-chevron { width: 16px; height: 16px; transition: transform 0.22s ease; opacity: 0.5; }
.sb-item.open .sb-chevron { transform: rotate(180deg); opacity: 1; }
.sb-sub { display: none; padding: 4px 0 4px 12px; }
.sb-item.open .sb-sub { display: block; }
.sb-sub-link { font-weight: 500; display: flex; align-items: center; gap: 8px; padding: 9px 12px; color: var(--slate); font-size: 13px; border-radius: 8px; border-left: 2px solid var(--border); margin-bottom: 1px; transition: var(--transition-color), border-left-color 0.2s ease; }
.sb-sub-link::before { content: ''; width: 5px; height: 5px; background: var(--hover-green); border-radius: 50%; flex-shrink: 0; opacity: 0.5; transition: opacity 0.2s ease; }
.sb-sub-link:hover { background: var(--hover-green-bg); color: var(--hover-green); border-left-color: var(--hover-green); }
.sb-sub-link:hover::before { opacity: 1; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--forest); color: #fff; }
.section-title { font-size: clamp(24px, 4vw, 40px); font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 12px; }
.section-subtitle { font-weight: 400; font-size: clamp(14px, 1.5vw, 17px); color: var(--mist); margin-bottom: 52px; line-height: 1.6; }
.text-center { text-align: center; }
.text-center .section-subtitle { max-width: 640px; margin-left: auto; margin-right: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }

/* ===== HERO ===== */
.hero { position: relative; height: clamp(480px, 70vh, 680px); display: flex; align-items: center; justify-content: center; overflow: hidden; contain: layout; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 8s ease; will-change: transform; }
.hero:hover .hero-bg { transform: scale(1.04); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(26,58,42,0.72) 0%, rgba(26,58,42,0.45) 60%, rgba(60,179,113,0.2) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; color: #fff; padding: 0 24px; max-width: 780px; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(60,179,113,0.2); border: 1px solid rgba(60,179,113,0.5); color: #7ee8a2; padding: 5px 14px; border-radius: 99px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.hero-content h1 { font-size: clamp(32px, 6vw, 64px); font-weight: 700; line-height: 1.1; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-content p { font-weight: 400; font-size: clamp(15px, 2vw, 19px); opacity: 0.88; margin-bottom: 36px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(160deg, var(--forest) 0%, var(--forest-mid) 60%, var(--sage) 100%); padding: 56px 0 52px; color: #fff; }
.page-hero h1 { font-weight: 700; font-size: clamp(28px, 5vw, 52px); margin-bottom: 10px; }
.page-hero p { font-weight: 400; color: rgba(255,255,255,0.75); font-size: clamp(14px, 1.5vw, 17px); }
.page-hero .breadcrumb-nav { margin-top: 14px; display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.page-hero .breadcrumb-nav a { color: var(--hover-green-light); font-weight: 500; }
.page-hero .breadcrumb-nav span { color: rgba(255,255,255,0.4); }

/* ===== BUTTONS ===== */
.btn { font-family: 'Poppins', sans-serif; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-md); font-size: 14px; border: 2px solid transparent; transition: var(--transition-color), transform 0.25s ease, box-shadow 0.25s ease; cursor: pointer; white-space: nowrap; letter-spacing: 0.2px; }
.btn-primary { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.btn-primary:hover { background: var(--hover-green); border-color: var(--hover-green); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(60,179,113,0.4); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: var(--hover-green); border-color: var(--hover-green); color: #fff; transform: translateY(-2px); }
.btn-forest { background: var(--forest-mid); color: #fff; border-color: var(--forest-mid); }
.btn-forest:hover { background: var(--hover-green); border-color: var(--hover-green); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(60,179,113,0.35); }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--border); }
.btn-ghost:hover { background: var(--hover-green-bg); border-color: var(--hover-green); color: var(--hover-green); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; }

/* ===== CARDS ===== */
.card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease; }
.card:hover { transform: translateY(-5px); border-color: var(--hover-green); }
.prop-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: transform 0.25s ease, border-color 0.25s ease; }
.prop-card:hover { transform: translateY(-6px); border-color: var(--hover-green); }
.prop-img-wrap { position: relative; overflow: hidden; height: 240px; }
.prop-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.prop-card:hover .prop-img-wrap img { transform: scale(1.06); }
.prop-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--forest); font-weight: 600; font-size: 11px; padding: 4px 10px; border-radius: 99px; letter-spacing: 0.8px; text-transform: uppercase; }
.prop-body { padding: 22px; }
.prop-price { font-size: 24px; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.prop-name { font-size: 16px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.prop-loc { color: var(--mist); font-size: 13px; display: flex; align-items: center; gap: 5px; margin-bottom: 12px; }
.prop-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 14px; border-top: 1px solid var(--border); }
.prop-tag { background: var(--cream); color: var(--sage); font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 6px; }
.srv-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); transition: transform 0.25s ease, border-color 0.25s ease; position: relative; overflow: hidden; }
.srv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--hover-green), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.srv-card:hover { transform: translateY(-4px); border-color: var(--hover-green); }
.srv-card:hover::before { transform: scaleX(1); }
.srv-icon { width: 48px; height: 48px; background: var(--cream); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; transition: var(--transition-color); }
.srv-card:hover .srv-icon { background: var(--hover-green); }
.srv-card h3 { font-weight: 600; font-size: 19px; color: var(--forest); margin-bottom: 10px; }
.srv-card p { font-weight: 400; color: var(--slate); font-size: 14px; line-height: 1.7; }
.info-card { background: #fff; border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--border); transition: transform 0.25s ease, border-color 0.25s ease; }
.info-card:hover { transform: translateY(-3px); border-color: var(--hover-green); }
.info-card h4 { font-weight: 600; font-size: 18px; color: var(--forest); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--cream); }
.info-card p, .info-card li { font-weight: 400; color: var(--slate); font-size: 14px; line-height: 1.7; }
.info-card ul { padding-left: 16px; list-style: disc; }
.info-card li { margin-bottom: 6px; }
.testi-card { background: #fff; border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--border); transition: transform 0.25s ease, border-color 0.25s ease; }
.testi-card:hover { transform: translateY(-3px); border-color: var(--hover-green); }
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-weight: 400; color: var(--slate); font-size: 14px; line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.testi-author { font-weight: 600; color: var(--forest); font-size: 14px; }
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: transform 0.25s ease, border-color 0.25s ease; }
.blog-card:hover { transform: translateY(-5px); border-color: var(--hover-green); }
.blog-img { height: 210px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 20px; }
.blog-meta { display: flex; gap: 12px; font-size: 12px; color: var(--mist); margin-bottom: 10px; }
.blog-title { font-weight: 600; font-size: 18px; color: var(--forest); margin-bottom: 8px; }
.blog-excerpt { font-weight: 400; color: var(--slate); font-size: 13.5px; line-height: 1.7; margin-bottom: 12px; }
.read-more { color: var(--hover-green); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s ease; }
.read-more:hover { gap: 8px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-xl); }
.about-img-accent { position: absolute; bottom: -18px; right: -18px; width: 160px; height: 130px; background: var(--gold); border-radius: var(--radius-lg); z-index: -1; }
.about-img-badge { position: absolute; bottom: 24px; left: -22px; background: var(--forest); color: #fff; padding: 16px 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.about-img-badge strong { font-size: 26px; font-weight: 700; display: block; color: var(--gold); }
.about-img-badge span { font-size: 12px; font-weight: 400; opacity: 0.8; }
.about-text h3 { font-weight: 600; font-size: clamp(22px, 3vw, 34px); color: var(--forest); margin-bottom: 16px; line-height: 1.2; }
.about-text p { font-weight: 400; color: var(--slate); margin-bottom: 14px; font-size: 14.5px; line-height: 1.75; }
.highlight-box { background: linear-gradient(135deg, var(--cream) 0%, rgba(60,179,113,0.08) 100%); border-left: 4px solid var(--hover-green); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 22px 26px; margin: 24px 0; }
.highlight-box h4 { font-weight: 600; font-size: 19px; color: var(--forest); margin-bottom: 12px; }
.highlight-box ul { padding-left: 18px; list-style: disc; }
.highlight-box li { font-weight: 400; color: var(--slate); margin-bottom: 7px; font-size: 14px; line-height: 1.6; }

/* ===== CONTACT & FORMS ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.contact-info-panel { background: var(--forest); color: #fff; border-radius: var(--radius-xl); padding: 36px; }
.contact-info-panel h3 { font-weight: 600; font-size: 26px; margin-bottom: 22px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.contact-item-text strong { font-weight: 600; display: block; margin-bottom: 3px; color: #fff; }
.contact-item-text span { font-weight: 400; font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.contact-form-panel { background: #fff; border-radius: var(--radius-xl); padding: 36px; border: 1px solid var(--border); }
.form-group { margin-bottom: 18px; }
.form-label { font-weight: 600; display: block; margin-bottom: 6px; font-size: 13px; color: var(--charcoal); }
.form-control { width: 100%; padding: 11px 14px; border: 2px solid var(--border); border-radius: var(--radius-md); font-family: 'Poppins', sans-serif; font-weight: 400; font-size: 14px; color: var(--charcoal); background: #fff; transition: border-color 0.2s ease, box-shadow 0.2s ease; appearance: none; }
.form-control:focus { outline: none; border-color: var(--hover-green); box-shadow: 0 0 0 3px rgba(60,179,113,0.1); }
.form-control::placeholder { color: var(--mist); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a4a4a' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 260px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,58,42,0.85) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; opacity: 0; transition: opacity 0.25s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-weight: 600; color: #fff; font-size: 17px; margin-bottom: 4px; }
.gallery-overlay p { font-weight: 400; color: rgba(255,255,255,0.75); font-size: 13px; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; transition: border-color 0.2s ease; }
.faq-item:hover { border-color: var(--hover-green); }
.faq-item.active { border-color: var(--hover-green); }
.faq-q { padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 15px; color: var(--forest); gap: 14px; user-select: none; }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--forest); flex-shrink: 0; transition: var(--transition-color), transform 0.25s ease; }
.faq-item.active .faq-icon { background: var(--hover-green); color: #fff; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1); }
.faq-body-inner { padding: 0 22px 18px; font-weight: 400; color: var(--slate); font-size: 14px; line-height: 1.75; }

/* ===== CONTENT SECTIONS ===== */
.content-section { margin-bottom: 40px; }
.content-section h3 { font-weight: 600; font-size: clamp(19px, 2.5vw, 24px); color: var(--forest); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.content-section p { font-weight: 400; color: var(--slate); margin-bottom: 12px; font-size: 14.5px; line-height: 1.75; }
.content-section ul { padding-left: 20px; list-style: disc; }
.content-section li { font-weight: 400; color: var(--slate); margin-bottom: 9px; font-size: 14px; line-height: 1.65; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 18px; }
.stat-card { text-align: center; padding: 26px 18px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); transition: transform 0.25s ease, border-color 0.25s ease; }
.stat-card:hover { transform: translateY(-3px); border-color: var(--hover-green); }
.stat-num { font-size: 34px; font-weight: 700; color: var(--forest); line-height: 1; margin-bottom: 7px; }
.stat-label { font-weight: 400; color: var(--mist); font-size: 13px; }
.stats-section { position: relative; background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 60%, var(--sage) 100%); padding: 80px 0; color: #fff; }
.stats-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.stats-title { font-weight: 700; font-size: clamp(24px, 3vw, 38px); text-align: center; margin-bottom: 12px; position: relative; z-index: 1; }
.stats-subtitle { font-weight: 400; text-align: center; color: rgba(255,255,255,0.7); margin-bottom: 48px; position: relative; z-index: 1; font-size: 15px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; z-index: 1; }
.stat-box { text-align: center; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg); padding: 30px 18px; backdrop-filter: blur(8px); transition: var(--transition-color), transform 0.25s ease; }
.stat-box:hover { background: rgba(60,179,113,0.2); border-color: var(--hover-green); transform: translateY(-3px); }
.stat-box h3 { font-weight: 700; font-size: 42px; color: var(--hover-green-light); margin-bottom: 9px; line-height: 1; }
.stat-box p { font-weight: 500; color: rgba(255,255,255,0.8); font-size: 13.5px; }
.counter-num { display: inline; }

/* ===== OVERVIEW ===== */
.overview-intro { font-weight: 400; font-size: 16px; line-height: 1.75; color: var(--slate); text-align: center; max-width: 800px; margin: 0 auto 48px; }
.summary-card { background: #fff; border-radius: var(--radius-lg); padding: 26px 30px; border: 1px solid var(--border); border-left: 4px solid var(--hover-green); margin-bottom: 18px; transition: transform 0.25s ease; }
.summary-card:hover { transform: translateX(4px); }
.summary-card h4 { font-weight: 600; font-size: 19px; color: var(--forest); margin-bottom: 9px; }
.summary-card p { font-weight: 400; color: var(--slate); font-size: 14px; line-height: 1.7; }

/* ===== CTA STRIP ===== */
.cta-strip { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 60%, var(--sage) 100%); border-radius: var(--radius-xl); padding: 48px 44px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-strip h3 { font-weight: 600; font-size: clamp(20px, 3vw, 32px); color: #fff; margin-bottom: 8px; }
.cta-strip p { font-weight: 400; color: rgba(255,255,255,0.75); font-size: 14.5px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ===== REVIEWS ===== */
.review-section { padding: 80px 0; background: var(--warm-white); }
.review-rating-header { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 44px; }
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: 50px; padding: 10px 20px; box-shadow: var(--shadow-sm); }
.google-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.google-icon svg { width: 22px; height: 22px; display: block; }
.google-badge-text { display: flex; flex-direction: column; line-height: 1; }
.google-badge-rating { font-weight: 700; font-size: 18px; color: var(--charcoal); line-height: 1; }
.google-badge-label { font-weight: 400; font-size: 11px; color: var(--mist); margin-top: 3px; }
.google-badge-stars { color: #FBBC04; font-size: 15px; letter-spacing: 1px; }
.review-slider { overflow: hidden; position: relative; }
.review-slider::before, .review-slider::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.review-slider::before { left: 0; background: linear-gradient(to right, var(--warm-white), transparent); }
.review-slider::after { right: 0; background: linear-gradient(to left, var(--warm-white), transparent); }
.review-track-wrapper { display: flex; width: max-content; animation: marqueeSlide 35s linear infinite; will-change: transform; }
.review-track-wrapper:hover { animation-play-state: paused; }
.review-set { display: flex; gap: 20px; padding-right: 20px; }
@keyframes marqueeSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card { background: #fff; border-radius: var(--radius-lg); padding: 22px; border: 1px solid var(--border); width: 290px; flex-shrink: 0; transition: border-color 0.2s ease, transform 0.2s ease; }
.review-card:hover { border-color: var(--hover-green); transform: translateY(-2px); }
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.review-header { display: flex; gap: 10px; align-items: center; }
.review-avatar { width: 40px; height: 40px; background: var(--forest); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 17px; flex-shrink: 0; }
.review-header h4 { font-weight: 600; color: var(--charcoal); font-size: 14px; margin-bottom: 2px; }
.stars { color: var(--gold); font-size: 12px; }
.review-card p { font-weight: 400; color: var(--slate); font-size: 13.5px; line-height: 1.65; font-style: italic; }
.review-google-icon { display: flex; align-items: center; opacity: 0.4; flex-shrink: 0; }
.review-google-icon svg { width: 16px; height: 16px; }

/* ===== HOME SPECIFIC ===== */
.welcome-section { background: var(--cream); padding: 56px 0; }
.welcome-section h2 { font-weight: 700; font-size: clamp(22px, 3vw, 34px); color: var(--forest); margin-bottom: 16px; text-align: center; }
.welcome-section p { font-weight: 400; color: var(--slate); font-size: 15.5px; line-height: 1.8; text-align: center; max-width: 860px; margin: 0 auto; }
.property-section { padding: 80px 0; }
.property-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.property-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: transform 0.25s ease, border-color 0.25s ease; }
.property-card:hover { transform: translateY(-6px); border-color: var(--hover-green); }
.property-img-wrap { height: 210px; overflow: hidden; }
.property-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.property-card:hover .property-img { transform: scale(1.05); }
.property-content { padding: 20px; }
.property-title { font-weight: 600; font-size: 17px; color: var(--forest); margin-bottom: 9px; }
.property-content p { font-weight: 400; color: var(--slate); font-size: 13.5px; line-height: 1.65; }
.why-invest { background: var(--cream); padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.why-card { background: #fff; border-radius: var(--radius-lg); padding: 26px 20px; border: 1px solid var(--border); transition: transform 0.25s ease, border-color 0.25s ease; text-align: center; }
.why-card:hover { transform: translateY(-5px); border-color: var(--hover-green); }
.why-icon { font-size: 34px; margin-bottom: 12px; }
.why-card h3 { font-weight: 600; font-size: 16px; color: var(--forest); margin-bottom: 9px; }
.why-card p { font-weight: 400; color: var(--slate); font-size: 13px; line-height: 1.65; }
.trust-strip { background: var(--forest); padding: 18px 0; }
.trust-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 14px; font-weight: 600; color: #fff; font-size: 13.5px; }
.trust-container div { display: flex; align-items: center; gap: 6px; }
.investment-overview { padding: 80px 0; background: var(--warm-white); }
.overview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.overview-card { background: #fff; border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid var(--border); border-top: 4px solid var(--hover-green); transition: transform 0.25s ease; }
.overview-card:hover { transform: translateY(-4px); }
.overview-card h3 { font-weight: 600; font-size: 19px; color: var(--forest); margin-bottom: 12px; }
.overview-card p { font-weight: 400; color: var(--slate); font-size: 14px; line-height: 1.7; }
.infra-section { background: var(--cream); padding: 80px 0; }
.infra-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.infra-card { background: #fff; border-radius: var(--radius-lg); padding: 26px 20px; border: 1px solid var(--border); text-align: center; transition: transform 0.25s ease, border-color 0.25s ease; }
.infra-card:hover { transform: translateY(-4px); border-color: var(--hover-green); }
.infra-icon { font-size: 35px; margin-bottom: 12px; }
.infra-card h3 { font-weight: 600; font-size: 15px; color: var(--forest); margin-bottom: 9px; }
.infra-card p { font-weight: 400; color: var(--slate); font-size: 13px; line-height: 1.6; }
.home-faq-section { background: var(--cream); padding: 80px 0; }
.home-faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; transition: border-color 0.2s ease; }
.home-faq-item:hover { border-color: var(--hover-green); }
.home-faq-item.active { border-color: var(--hover-green); }
.home-faq-q { padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 14.5px; color: var(--forest); gap: 14px; user-select: none; }
.home-faq-circle { width: 30px; height: 30px; background: var(--forest); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 12px; flex-shrink: 0; }
.home-faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--forest); flex-shrink: 0; transition: var(--transition-color), transform 0.22s ease; }
.home-faq-item.active .home-faq-icon { background: var(--hover-green); color: #fff; transform: rotate(45deg); }
.home-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1); }
.home-faq-body-inner { padding: 0 22px 18px; font-weight: 400; color: var(--slate); font-size: 14px; line-height: 1.75; }
.office-section { padding: 80px 0; background: var(--warm-white); }
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-top: 36px; }
.office-info h3 { font-weight: 600; font-size: 24px; color: var(--forest); margin-bottom: 16px; }
.office-address { font-weight: 400; color: var(--slate); font-size: 14.5px; line-height: 1.8; margin-bottom: 10px; }
.office-info p { font-weight: 400; color: var(--slate); font-size: 14px; margin-bottom: 7px; }
.office-info a { color: var(--hover-green); }
.office-buttons { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.office-btn { font-weight: 600; padding: 11px 20px; border-radius: var(--radius-md); font-size: 13.5px; transition: var(--transition-color), transform 0.2s ease; display: inline-flex; align-items: center; gap: 6px; }
.office-btn.primary { background: var(--forest); color: #fff; }
.office-btn.primary:hover { background: var(--hover-green); transform: translateY(-2px); }
.office-btn.whatsapp { background: #25d366; color: #fff; }
.office-btn.whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.office-map { height: 360px; border-radius: var(--radius-lg); overflow: hidden; }
.office-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== VIDEO & MISC ===== */
.video-placeholder { background: var(--cream); border-radius: var(--radius-lg); height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--mist); font-size: 14px; border: 2px dashed var(--border); }
.video-placeholder .play-btn { width: 60px; height: 60px; background: var(--forest); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; }

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 26px; right: 26px; width: 42px; height: 42px; background: var(--hover-green); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; cursor: pointer; opacity: 0; transform: translateY(12px); transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease; z-index: 900; will-change: transform, opacity; }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--forest); transform: translateY(-2px); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float { position: fixed; bottom: 28px; left: 28px; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); z-index: 900; transition: transform 0.25s ease; will-change: transform; }
.wa-float:hover { transform: scale(1.12); }

/* ===== FOOTER ===== */
footer { background: var(--charcoal); color: rgba(255,255,255,0.75); }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3,1fr) 1fr; gap: 32px; padding: 56px 0 40px; }
.footer-col h4 { font-weight: 700; color: #fff; font-size: 12.5px; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 7px; border-bottom: 2px solid var(--hover-green); display: inline-block; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-weight: 400; color: rgba(255,255,255,0.5); font-size: 13px; transition: var(--transition-color), padding-left 0.2s ease; display: inline-flex; align-items: center; gap: 5px; }
.footer-col a:hover { color: var(--hover-green-light); padding-left: 4px; }
.footer-col p { font-weight: 400; color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.9; }
.footer-social { display: flex; gap: 9px; margin-top: 4px; }
.footer-social a { width: 33px; height: 33px; border-radius: 7px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 12px; transition: var(--transition-color), transform 0.2s ease; }
.footer-social a:hover { background: var(--hover-green); border-color: var(--hover-green); color: #fff; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-weight: 400; font-size: 12px; color: rgba(255,255,255,0.3); gap: 14px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition-color); }
.footer-bottom a:hover { color: var(--hover-green-light); }

/* ===== RESPONSIVE ===== */
@media (max-width:1200px) {
    .footer-top { grid-template-columns: 1fr 1fr 1fr; }
    .why-grid, .infra-grid, .stats-grid { grid-template-columns: repeat(2,1fr); }
    .property-grid, .overview-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:900px) {
    .nav-menu { display: none; }
    .enquire-btn { display: none; }
    .hamburger { display: flex; }
    .mobile-header-actions { display: flex; }
    .about-grid, .contact-grid, .grid-2, .office-grid { grid-template-columns: 1fr; }
    .grid-3, .property-grid, .overview-grid { grid-template-columns: repeat(2,1fr); }
    .cta-strip { text-align: center; justify-content: center; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
    .nav-wrap { justify-content: space-between; }
}
@media (max-width:640px) {
    .grid-3, .property-grid, .overview-grid, .why-grid, .infra-grid, .stats-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; padding-top: 32px; }
    .footer-bottom { text-align: center; justify-content: center; }
    .cta-strip { padding: 32px 20px; }
    .section { padding: 52px 0; }
    .contact-info-panel, .contact-form-panel { padding: 24px 18px; }
    .header-contact { display: none; }
    .social-links { display: none; }
    .review-slider::before, .review-slider::after { width: 36px; }
}
@media (max-width:420px) {
    .mobile-header-actions .mob-hide-sm { display: none !important; }
}
