/* ================================================
   JEEVAM LLC  —  styles.css
   Aesthetic: Art Deco Corporate Luxury
   Fonts: Cormorant Garamond (display) · DM Sans (body) · Cinzel (caps)
   ================================================ */

/* ── Custom Properties ──────────────────────── */
:root {
  /* Palette */
  --navy:          #060D1F;
  --navy-mid:      #0C1830;
  --navy-light:    #182848;
  --gold:          #C9A452;
  --gold-light:    #E2BB6E;
  --gold-dim:      rgba(201, 164, 82, 0.14);
  --cream:         #F7F3EC;
  --cream-soft:    #EDE8DF;
  --white:         #FFFFFF;
  --text-body:     #1A1F3C;
  --text-muted:    #64718A;

  /* Typography */
  --f-display:  'Cormorant Garamond', Georgia, serif;
  --f-body:     'DM Sans', system-ui, sans-serif;
  --f-caps:     'Cinzel', Georgia, serif;

  /* Layout */
  --max-w:      1200px;
  --pad-x:      clamp(1.25rem, 5vw, 4rem);
  --section-y:  clamp(80px, 10vw, 130px);

  /* FX */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-lg:  0 24px 64px rgba(6, 13, 31, 0.45);
  --shadow-gld: 0 16px 48px rgba(201, 164, 82, 0.18);
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--f-body); }
address { font-style: normal; }

/* ── Container ──────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Typography Utilities ───────────────────── */
.section-label {
  font-family: var(--f-caps);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label--center {
  justify-content: center;
}
.section-label--center::before { display: none; }
.section-label--center::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label--gold { color: rgba(201,164,82,0.8); }
.section-label--gold::before { background: rgba(201,164,82,0.5); }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1.4rem;
}
.section-title--center { text-align: center; }
.section-title--light { color: var(--cream); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--f-caps);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, transform 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: rgba(247, 243, 236, 0.85);
  border: 1px solid rgba(247, 243, 236, 0.28);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Navigation ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-bottom 0.4s;
}
.navbar.scrolled {
  background: rgba(6, 13, 31, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201, 164, 82, 0.14);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  text-decoration: none;
}
.logo-text {
  font-family: var(--f-caps);
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: 0.18em;
}
.logo-sub {
  font-family: var(--f-body);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--f-caps);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  color: rgba(247, 243, 236, 0.78);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.55rem 1.4rem;
  font-weight: 500;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

/* ── Hero ───────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Floating gold glow orb */
.hero-glow {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 82, 0.07) 0%, transparent 65%);
  animation: glowDrift 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 9rem var(--pad-x) 6rem;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.9s var(--ease) 0.15s both;
}
.eyebrow-text {
  font-family: var(--f-caps);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.eyebrow-line {
  height: 1px;
  width: 2.5rem;
  background: rgba(201, 164, 82, 0.45);
}

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  font-weight: 300;
  line-height: 1.03;
  color: var(--cream);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s var(--ease) 0.35s both;
  max-width: 820px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  color: rgba(247, 243, 236, 0.68);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s var(--ease) 0.55s both;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease) 0.7s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(201, 164, 82, 0.55);
  animation: fadeIn 1s ease 1.2s both, chevronBounce 2.4s ease-in-out 1.2s infinite;
  transition: color 0.25s;
}
.hero-scroll-indicator:hover { color: var(--gold); }

/* ── About ──────────────────────────────────── */
.about {
  padding: var(--section-y) 0;
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.035rem;
  line-height: 1.82;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.about-location {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.855rem;
  color: var(--text-muted);
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--cream-soft);
}
.about-location svg { color: var(--gold); flex-shrink: 0; }

/* Stats block */
.about-stats {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.about-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(201,164,82,0.025) 60px,
    rgba(201,164,82,0.025) 61px
  );
  pointer-events: none;
}

.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}
.stat-item:nth-child(odd)  { border-right: 1px solid rgba(201,164,82,0.12); }
.stat-item:nth-child(1),
.stat-item:nth-child(2)    { border-bottom: 1px solid rgba(201,164,82,0.12); }

.stat-number {
  font-family: var(--f-display);
  font-size: 3.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: var(--f-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  vertical-align: top;
  display: inline-block;
  margin-top: 0.2rem;
}
.stat-label {
  font-family: var(--f-caps);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: rgba(247, 243, 236, 0.42);
  margin-top: 0.55rem;
  text-transform: uppercase;
  display: block;
}

/* ── Services ───────────────────────────────── */
.services {
  padding: var(--section-y) 0;
  background: var(--white);
}

.section-header { margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-soft);
  border: 1.5px solid var(--cream-soft);
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2.25rem 2.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-card--wide { grid-column: span 2; }

.service-card:hover {
  background: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  margin-bottom: 1.6rem;
  transition: background 0.4s;
}
.card-icon svg { stroke: var(--gold); transition: stroke 0.3s; }
.service-card:hover .card-icon { background: rgba(201,164,82,0.12); }

.card-number {
  font-family: var(--f-display);
  font-size: 0.82rem;
  color: var(--gold);
  opacity: 0.55;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  transition: opacity 0.3s;
  display: block;
}
.service-card:hover .card-number { opacity: 0.75; }

.card-title {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 0.9rem;
  transition: color 0.4s;
}
.service-card:hover .card-title { color: var(--cream); }

.card-desc {
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--text-muted);
  transition: color 0.4s;
}
.service-card:hover .card-desc { color: rgba(247,243,236,0.62); }

/* Gold accent bar on hover */
.card-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.service-card:hover .card-accent { transform: scaleX(1); }

/* ── Why Us ─────────────────────────────────── */
.why-us {
  padding: var(--section-y) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.why-us::after {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 600px; height: 100%;
  background: radial-gradient(ellipse at right center, rgba(201,164,82,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-header > p {
  font-size: 1.035rem;
  line-height: 1.78;
  color: var(--text-muted);
}
.why-cta { margin-top: 2.25rem; }

.why-pillars { display: flex; flex-direction: column; }

.pillar {
  display: flex;
  gap: 1.25rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(26,31,60,0.09);
  transition: padding-left 0.35s var(--ease);
}
.pillar:first-child { border-top: 1px solid rgba(26,31,60,0.09); }
.pillar:hover { padding-left: 0.5rem; }

.pillar-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  color: var(--gold);
  transition: background 0.3s;
}
.pillar:hover .pillar-icon { background: rgba(201,164,82,0.22); }

.pillar-content h4 {
  font-family: var(--f-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.pillar-content p {
  font-size: 0.885rem;
  line-height: 1.72;
  color: var(--text-muted);
}

/* ── Contact ────────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.contact-info {
  background: var(--navy-mid);
  display: flex;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,82,0.07);
  pointer-events: none;
}
.contact-info::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,82,0.1);
  pointer-events: none;
}

.contact-info-inner {
  width: 100%;
  max-width: 520px;
  padding: var(--section-y) clamp(1.5rem, 5vw, 3.5rem) var(--section-y) var(--pad-x);
}

.contact-intro {
  font-size: 1.02rem;
  color: rgba(247,243,236,0.62);
  line-height: 1.78;
  margin-bottom: 2.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.6rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.contact-detail strong {
  display: block;
  font-family: var(--f-caps);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.contact-detail span {
  font-size: 0.875rem;
  color: rgba(247,243,236,0.65);
  line-height: 1.65;
  display: block;
}
.contact-detail a {
  color: rgba(247,243,236,0.65);
  transition: color 0.25s;
}
.contact-detail a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  display: flex;
  justify-content: flex-start;
}
.contact-form-inner {
  width: 100%;
  max-width: 520px;
  padding: var(--section-y) var(--pad-x) var(--section-y) clamp(1.5rem, 5vw, 3.5rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { margin-bottom: 1.35rem; }

.form-group label {
  display: block;
  font-family: var(--f-caps);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--navy-light);
  margin-bottom: 0.5rem;
}
.required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border: 1px solid var(--cream-soft);
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: var(--text-body);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder { color: rgba(100,113,138,0.55); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.select-wrap { position: relative; }
.select-arrow {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

.btn-submit {
  width: 100%;
  padding: 0.95rem 2rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: rgba(201,164,82,0.09);
  border-left: 3px solid var(--gold);
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}
.form-success.show { display: flex; }
.form-success svg { color: var(--gold); flex-shrink: 0; }

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: rgba(192, 57, 43, 0.08);
  border-left: 3px solid #c0392b;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}
.form-error.show { display: block; }

/* ── Footer ─────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,164,82,0.12);
  padding: 3rem 0 1.75rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(201,164,82,0.08);
}

.footer-logo {
  font-family: var(--f-caps);
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.22em;
  margin-bottom: 0.7rem;
}
.footer-logo span { color: var(--gold); }

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(247,243,236,0.42);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-nav a {
  font-family: var(--f-caps);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  color: rgba(247,243,236,0.45);
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-address strong {
  font-family: var(--f-caps);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.footer-address span {
  font-size: 0.8rem;
  color: rgba(247,243,236,0.42);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom span { font-size: 0.72rem; color: rgba(247,243,236,0.28); }

/* ── Scroll-reveal classes ──────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity  0.85s var(--ease),
    transform 0.85s var(--ease);
}
.reveal-up    { transform: translateY(38px); }
.reveal-left  { transform: translateX(-38px); }
.reveal-right { transform: translateX(38px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── Keyframes ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes chevronBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes glowDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, 40px) scale(1.12); }
}

/* ── Responsive ─────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .about-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .why-layout     { grid-template-columns: 1fr; gap: 3rem; }

  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; }

  .contact        { grid-template-columns: 1fr; }
  .contact-info   { justify-content: flex-start; }
  .contact-info-inner { max-width: 100%; padding: var(--section-y) var(--pad-x); }
  .contact-form-inner { max-width: 100%; padding: var(--section-y) var(--pad-x); }

  .footer-inner   { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Mobile nav */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6,13,31,0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.25rem;
    z-index: 1000;
    list-style: none;
  }
  .nav-links.open  { display: flex; }
  .nav-links a     { font-size: 1.05rem; letter-spacing: 0.15em; }
  .nav-toggle      { display: flex; }

  /* Services */
  .services-grid        { grid-template-columns: 1fr; }
  .service-card--wide   { grid-column: span 1; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

  /* Footer */
  .footer-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
}

/* Small mobile */
@media (max-width: 480px) {
  .stat-item { padding: 2rem 1.5rem; }
  .about-stats { padding: 0; }
  .stat-number { font-size: 2.8rem; }
}
