/*
Theme Name: Arkastone Realty
Theme URI: 
Author: You
Description: Arkastone Realty Custom Theme
Version: 1.0
Text Domain: arkastone-realty
*/

:root {
  --forest: #1C3012;
  --forest-mid: #2D4A1A;
  --moss: #4A6741;
  --sage: #7A9B6E;
  --sage-light: #A8C49A;
  --earth: #8B6B45;
  --sand: #C8A96E;
  --sand-light: #E8D5B0;
  --cream: #F5F0E6;
  --warm-white: #FDFAF5;
  --stone: #9C9488;
  --charcoal: #2A2520;
  --text-dark: #1A1714;
  --text-mid: #4A453F;
  --text-light: #7A7570;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.4s;
}
nav.scrolled .nav-logo { color: var(--forest); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--sand) !important; }
.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest) !important;
  background: var(--sand);
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--sand-light) !important; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(28,48,18,0.88) 0%, rgba(28,48,18,0.6) 50%, rgba(44,69,26,0.75) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=80') center/cover no-repeat;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(200,169,110,0.12) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 780px;
  animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--sand);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--warm-white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--sand-light);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,230,0.75);
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--sand);
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--sand-light); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.85);
  border: 1px solid rgba(245,240,230,0.3);
  padding: 15px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--sand-light); color: var(--sand-light); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 8%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245,240,230,0.45);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroIn 1.6s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.scroll-line {
  width: 48px;
  height: 1px;
  background: rgba(245,240,230,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--sand);
  animation: scrollSlide 2s 1s ease-in-out infinite;
}
@keyframes scrollSlide {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* ─── SECTION SHARED ─── */
section { padding: 120px 8%; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--earth);
  display: inline-block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--moss); }

/* ─── WHO WE ARE ─── */
.about-section {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left {}

.about-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.value-item {
  border-top: 1px solid var(--sand-light);
  padding-top: 16px;
}
.value-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 6px;
}
.value-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}

.about-right {
  position: relative;
}
.about-image-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background:
    linear-gradient(135deg, rgba(28,48,18,0.6) 0%, rgba(74,103,65,0.4) 100%),
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=900&q=80') center/cover;
  border-radius: 4px;
  position: relative;
}
.about-image-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--sand);
  padding: 24px 28px;
  border-radius: 3px;
}
.badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}
.badge-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--forest);
  margin-top: 4px;
}

/* ─── PROJECTS ─── */
.projects-section {
  background: var(--warm-white);
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.project-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--sand-light);
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(28,48,18,0.12);
}

.project-card-image {
  aspect-ratio: 4/3;
  background:
    linear-gradient(180deg, transparent 40%, rgba(28,48,18,0.7) 100%),
    url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=900&q=80') center/cover;
  position: relative;
  min-height: 360px;
}

.project-card-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--sand);
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.project-card-content {
  padding: 48px 48px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.project-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 16px;
}

.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 8px;
}

.project-location {
  font-size: 13px;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--sand-light);
  padding-top: 28px;
  margin-bottom: 36px;
}
.stat-item { padding-right: 16px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
}
.stat-unit {
  font-size: 11px;
  color: var(--earth);
  display: inline;
}
.stat-label {
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ─── TRUST ─── */
.trust-section {
  background: var(--forest);
  padding: 100px 8%;
}

.trust-header {
  text-align: center;
  margin-bottom: 72px;
}

.trust-header .section-eyebrow {
  color: var(--sand);
  justify-content: center;
}
.trust-header .section-eyebrow::before { background: var(--sand); }

.trust-header .section-title { color: var(--warm-white); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.trust-item {
  background: rgba(45,74,26,0.4);
  padding: 48px 40px;
  transition: background 0.3s;
}
.trust-item:hover { background: rgba(45,74,26,0.7); }

.trust-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.trust-icon svg { width: 18px; height: 18px; stroke: var(--sand); fill: none; stroke-width: 1.5; }

.trust-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 12px;
}
.trust-item-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,230,0.65);
}

.trust-colliers {
  margin-top: 64px;
  text-align: center;
  border-top: 1px solid rgba(245,240,230,0.12);
  padding-top: 48px;
}
.colliers-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.4);
  margin-bottom: 12px;
}
.colliers-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--sand-light);
  font-style: italic;
}

/* ─── ENQUIRY ─── */
.enquiry-section {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.enquiry-left {}
.enquiry-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 15px; height: 15px; stroke: var(--forest); fill: none; stroke-width: 2; }
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 2px;
}
.contact-val {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
}

/* ─── FORM ─── */
.enquiry-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-input,
.form-textarea,
.form-select {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--warm-white);
  border: 1px solid var(--sand-light);
  border-radius: 2px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(74,103,65,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--stone); }
.form-textarea { min-height: 120px; resize: vertical; }

.form-submit {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--forest);
  border: none;
  padding: 18px 40px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--forest-mid); transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  padding: 64px 8% 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,230,0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,230,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sand-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(245,240,230,0.3);
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(245,240,230,0.25);
  max-width: 500px;
  text-align: right;
  line-height: 1.6;
}

/* ─── WHATSAPP FAB ─── */
.wa-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fabIn 1s 1.5s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes fabIn {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-fab svg { width: 28px; height: 28px; fill: white; }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── HAMBURGER + MOBILE MENU (NEW PREMIUM DESIGN) ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: var(--warm-white);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled .hamburger span {
  background: var(--forest);
}

/* Hamburger → Close (X) Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── MOBILE MENU ─── */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 40px 8% 60px;
    box-shadow: 0 20px 40px rgba(28, 48, 18, 0.15);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border-top: 1px solid rgba(28,48,18,0.08);
  }

  .nav-links.active {
    display: flex !important;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Menu Links - Premium Look */
  .nav-links a {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--forest);
    padding: 18px 0;
    border-bottom: 1px solid rgba(28,48,18,0.08);
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--sand);
    padding-left: 8px;
  }

  /* Enquire Now - Prominent Button */
  .nav-links .nav-cta {
    margin-top: 30px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    background: var(--sand);
    color: var(--forest) !important;
    padding: 18px 0;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.3);
    transition: all 0.3s ease;
  }

  .nav-links .nav-cta:hover {
    background: var(--sand-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 169, 110, 0.4);
  }

  /* Last link ka border hataya for clean look */
  .nav-links a:last-child {
    border-bottom: none;
  }
}
/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 6%; }
  /* .nav-links { display: none; } */
  section { padding: 80px 6%; }
  .about-section { grid-template-columns: 1fr; gap: 48px; }
  .about-right { display: none; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .project-card { grid-template-columns: 1fr; }
  .project-card-image { min-height: 260px; }
  .project-card-content { padding: 36px 28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .enquiry-section { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-disclaimer { text-align: left; }
}