/* Arunika Property - Emerald Estate Theme */
:root {
    --green: #065f46;
    --green-deep: #064e3b;
    --green-mid: #059669;
    --green-soft: #d1fae5;
    --sand: #f7f5f0;
    --gold: #d3a24a;
    --dark: #111827;
    --text: #4b5563;
    --muted: #9ca3af;
    --line: #e5e7eb;
    --white: #ffffff;
    --radius: 14px;
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Archivo', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
h1, h2 { font-family: var(--font-display); font-weight: 400; color: var(--dark); }
h3 { color: var(--dark); }

/* Header */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { font-weight: 800; font-size: 1.3rem; color: var(--green-deep); letter-spacing: -0.3px; }
.logo i { color: var(--gold); margin-right: 8px; }
.logo span { color: var(--green-mid); font-weight: 500; }
.nav { display: flex; align-items: center; gap: 30px; font-weight: 600; font-size: 0.92rem; }
.nav a:not(.nav-cta):hover { color: var(--green-mid); }
.nav-cta { background: var(--green); color: #fff; padding: 11px 24px; border-radius: 8px; transition: background 0.3s; }
.nav-cta:hover { background: var(--green-deep); }
.nav-toggle { display: none; background: none; border: none; color: var(--dark); font-size: 1.4rem; cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(170deg, #f0faf5, #e6f4ec 60%, var(--sand)); padding: 80px 0 70px; }
.hero-inner { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.hero-eyebrow { display: inline-block; letter-spacing: 3px; font-size: 0.75rem; font-weight: 700; color: var(--green-mid); margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 3.9rem); line-height: 1.12; margin-bottom: 20px; }
.hero h1 em { color: var(--green); }
.hero-inner p { font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* Search bar */
.search-bar { background: #fff; border-radius: 16px; box-shadow: 0 20px 50px rgba(6,78,59,0.12); padding: 22px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 18px; align-items: end; max-width: 920px; margin: 0 auto 52px; }
.search-field label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.search-field select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--dark); background: #fff; }
.search-field select:focus { outline: none; border-color: var(--green-mid); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 26px; border-radius: 10px; font-weight: 700; font-size: 0.95rem; transition: all 0.3s; border: none; cursor: pointer; font-family: var(--font-body); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--green-deep); }
.btn-white:hover { transform: translateY(-2px); }
.btn-full { width: 100%; }
.hero-stats { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.hero-stats strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--green-deep); }
.hero-stats span { font-size: 0.85rem; color: var(--muted); }

/* Sections */
.section { padding: 90px 0; }
.section-green { background: linear-gradient(150deg, var(--green-deep), var(--green)); }
.section-sand { background: var(--sand); }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; max-width: 620px; margin-left: auto; margin-right: auto; }
.section-head.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head.light h2 { color: #fff; }
.section-head.light .kicker { color: #6ee7b7; }
.kicker { color: var(--green-mid); font-weight: 700; letter-spacing: 2.5px; font-size: 0.78rem; text-transform: uppercase; }
.kicker.light { color: #6ee7b7; }
.section-head h2, .consult-text h2 { font-size: clamp(2rem, 4vw, 2.7rem); margin-top: 8px; }
.link-more { color: var(--green); font-weight: 700; font-size: 0.95rem; }
.link-more:hover { color: var(--green-deep); }
.link-more i { margin-left: 6px; transition: transform 0.3s; }
.link-more:hover i { transform: translateX(4px); }

/* Listings */
.listings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.listing { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.listing:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(17,24,39,0.1); }
.listing-img { height: 190px; position: relative; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,0.85); }
.li1 { background: linear-gradient(140deg, #10b981, #065f46); }
.li2 { background: linear-gradient(140deg, #64748b, #334155); }
.li3 { background: linear-gradient(140deg, #d3a24a, #92682a); }
.li4 { background: linear-gradient(140deg, #0ea5e9, #0c4a6e); }
.li5 { background: linear-gradient(140deg, #84cc16, #3f6212); }
.li6 { background: linear-gradient(140deg, #a78bfa, #5b21b6); }
.listing-badge { position: absolute; top: 14px; left: 14px; font-size: 0.72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 6px; color: #fff; }
.listing-badge.sell { background: var(--green); }
.listing-badge.rent { background: #b45309; }
.listing-badge.new { background: #be185d; }
.listing-body { padding: 22px; }
.listing-price { font-size: 1.25rem; color: var(--green-deep); font-weight: 800; }
.listing-price small { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.listing-body h3 { font-size: 1.02rem; margin: 8px 0 6px; font-weight: 700; }
.listing-loc { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.listing-loc i { color: var(--gold); margin-right: 6px; }
.listing-specs { display: flex; gap: 16px; border-top: 1px solid var(--line); padding-top: 14px; font-size: 0.82rem; font-weight: 600; color: var(--text); flex-wrap: wrap; }
.listing-specs i { color: var(--green-mid); margin-right: 5px; }

/* Services */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); padding: 34px 26px; color: #fff; transition: background 0.3s; }
.service:hover { background: rgba(255,255,255,0.14); }
.service i { font-size: 1.8rem; color: #6ee7b7; margin-bottom: 18px; }
.service h3 { color: #fff; font-size: 1.12rem; margin-bottom: 10px; }
.service p { color: #bbeed7; font-size: 0.9rem; }

/* Agents */
.agents { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.agent { text-align: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 26px; transition: all 0.3s; }
.agent:hover { border-color: var(--green-mid); box-shadow: 0 12px 34px rgba(6,95,70,0.1); }
.agent-img { width: 92px; height: 92px; margin: 0 auto 18px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.agent h3 { font-size: 1.12rem; margin-bottom: 4px; }
.agent span { display: block; color: var(--muted); font-size: 0.86rem; margin-bottom: 10px; }
.agent small { color: var(--gold); font-weight: 700; font-size: 0.82rem; }
.agent small i { margin-right: 5px; }

/* Testimonials */
.testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testis blockquote { background: #fff; border-radius: var(--radius); padding: 32px 28px; font-size: 0.95rem; box-shadow: 0 6px 22px rgba(17,24,39,0.05); border-top: 3px solid var(--gold); }
.testis footer { margin-top: 18px; }
.testis footer strong { display: block; color: var(--dark); font-size: 0.92rem; }
.testis footer span { font-size: 0.82rem; color: var(--muted); }

/* Consult */
.consult-box { background: linear-gradient(140deg, var(--green-deep), var(--green)); border-radius: 22px; padding: 56px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 54px; align-items: center; }
.consult-text h2 { color: #fff; margin-bottom: 14px; }
.consult-text > p { color: #bbeed7; margin-bottom: 26px; }
.consult-info div { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 600; font-size: 0.92rem; padding: 7px 0; }
.consult-info i { color: #6ee7b7; width: 18px; }
.consult-box form { display: flex; flex-direction: column; gap: 14px; }
.consult-box input, .consult-box select, .consult-box textarea { padding: 14px 16px; border-radius: 10px; border: none; font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--dark); resize: vertical; }
.consult-box input:focus, .consult-box select:focus, .consult-box textarea:focus { outline: 3px solid rgba(110,231,183,0.5); }

/* Footer */
.footer { padding: 28px 0; text-align: center; color: var(--muted); font-size: 0.9rem; }
.footer a { color: var(--green); font-weight: 700; }

/* WA Float */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 8px 24px rgba(37,211,102,0.4); z-index: 90; transition: transform 0.3s; }
.wa-float:hover { transform: scale(1.1); }

/* Responsive */
@media (max-width: 900px) {
    .search-bar { grid-template-columns: 1fr 1fr; }
    .listings, .testis { grid-template-columns: 1fr 1fr; }
    .services { grid-template-columns: 1fr 1fr; }
    .agents { grid-template-columns: 1fr; }
    .consult-box { grid-template-columns: 1fr; padding: 40px 30px; }
    .hero-stats { gap: 36px; }
}
@media (max-width: 640px) {
    .nav { position: fixed; top: 74px; right: -100%; width: 250px; height: calc(100vh - 74px); background: #fff; flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 22px; transition: right 0.3s; border-left: 1px solid var(--line); }
    .nav.open { right: 0; }
    .nav-toggle { display: block; }
    .search-bar, .listings, .services, .testis { grid-template-columns: 1fr; }
}
