/* ============================================================
   INDEX PAGE STYLES  (index.css)
   ============================================================
   Sections in this file:
   1.  Hero
   2.  Mission & Vision
   3.  Services
   4.  Process
   5.  Why Choose Us
   6.  Testimonials  (hidden — uncomment in HTML to activate)
   7.  Contact
   8.  Responsive
   ============================================================ */


/* ── 1. HERO ────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;   /* offset for fixed nav */
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0a3f58 55%, #0b4a68 100%);
}

.hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    45deg,
    var(--gold) 0, var(--gold) 1px,
    transparent 0, transparent 50%
  );
  background-size: 30px 30px;
}

/* Glowing orbs in hero background */
.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.12) 0%, transparent 70%);
}
.hero-glow2 {
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,90,0.07) 0%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 80px 60px;
  max-width: 860px;
  animation: fadeUp 1s ease both;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 50px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero-title .gold { color: var(--gold); }

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}


/* ── 2. MISSION & VISION ────────────────────────────────────── */
.mv-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 64px;
}

.mv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 90, 0.12);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
}
.mv-card:hover {
  background: rgba(212, 175, 90, 0.06);
  transform: translateY(-4px);
}
.mv-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 3px; height: 70px;
  background: var(--gold);
}

.mv-icon { font-size: 40px; margin-bottom: 24px; }

.mv-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px; font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold);
}
.mv-card p { font-size: 15px; line-height: 1.8; opacity: 0.8; }


/* ── 3. SERVICES ────────────────────────────────────────────── */
.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.svc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 90, 0.1);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
}
.svc-card:hover {
  background: rgba(212, 175, 90, 0.07);
  transform: translateY(-4px);
}
/* Gold underline that slides in on hover */
.svc-card::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px; font-weight: 700;
  color: rgba(212, 175, 90, 0.08);
  position: absolute; top: 12px; right: 20px;
  line-height: 1; user-select: none;
}

.svc-icon { font-size: 34px; margin-bottom: 20px; }

.svc-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px; font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.svc-card p { font-size: 14px; line-height: 1.75; opacity: 0.75; }


/* ── 4. PROCESS ─────────────────────────────────────────────── */
.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.process-header .sec-sub { margin: 0 auto; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
/* Horizontal connecting line between circles */
.process-grid::before {
  content: "";
  position: absolute;
  top: 44px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-step { padding: 0 24px; text-align: center; }

.step-circle {
  width: 88px; height: 88px; border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  position: relative; z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px; font-weight: 700;
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
}
.process-step:hover .step-circle {
  background: var(--gold);
  color: var(--teal-dark);
}

.process-step h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold-light);
}
.process-step p { font-size: 13.5px; line-height: 1.7; opacity: 0.7; }


/* ── 5. WHY CHOOSE US ───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}

.why-visual { position: relative; }

.why-img-box {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(212,175,90,0.1), rgba(212,175,90,0.03));
  border: 1px solid rgba(212, 175, 90, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 90px;
  position: relative; overflow: hidden;
}
.why-img-box::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(212,175,90,0.02) 20px, rgba(212,175,90,0.02) 21px
  );
}

.why-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--teal-dark);
  padding: 28px 32px;
  text-align: center;
}
.why-badge .big {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px; font-weight: 700;
  display: block; line-height: 1;
}
.why-badge .sm {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  margin-top: 4px; display: block;
}

.why-list { list-style: none; }

.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding-left 0.3s;
}
.why-item:last-child { border-bottom: none; }
.why-item:hover { padding-left: 6px; }

.why-check {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(212, 175, 90, 0.4);
  background: rgba(212, 175, 90, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 15px; flex-shrink: 0;
}

.why-text h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--gold-pale); }
.why-text p  { font-size: 13.5px; opacity: 0.65; line-height: 1.65; }


/* ── 6. TESTIMONIALS (hidden by default) ────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 64px;
}
.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 90, 0.1);
  padding: 44px 36px;
  transition: background 0.3s, transform 0.3s;
}
.testi-card:hover {
  background: rgba(212, 175, 90, 0.06);
  transform: translateY(-4px);
}
.testi-quote { font-size: 52px; line-height: 1; color: var(--gold); opacity: 0.4; margin-bottom: 16px; font-family: serif; }
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { font-size: 15px; line-height: 1.8; font-style: italic; opacity: 0.8; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px; font-weight: 700; color: var(--white);
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--gold-light); }
.testi-role { font-size: 12px; opacity: 0.55; margin-top: 2px; }


/* ── 7. CONTACT ─────────────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 64px;
}

.contact-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 90, 0.12);
  border-left: 3px solid var(--gold);
  transition: background 0.3s, transform 0.3s;
}
.contact-card:hover {
  background: rgba(212, 175, 90, 0.06);
  transform: translateY(-3px);
}

.cc-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(212, 175, 90, 0.12);
  border: 1px solid rgba(212, 175, 90, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}

.cc-label {
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}

.cc-val,
.cc-val a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6; text-decoration: none;
}
.cc-val a:hover { color: var(--gold); }

.social-row {
  display: flex; gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.soc-btn {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(212, 175, 90, 0.3);
  color: var(--gold);
  padding: 12px 22px;
  text-decoration: none; font-size: 13px; font-weight: 500;
  letter-spacing: 1px;
  transition: background 0.3s, border-color 0.3s;
}
.soc-btn:hover {
  background: rgba(212, 175, 90, 0.1);
  border-color: var(--gold);
}


/* ── 8. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .svc-grid     { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
}

@media (max-width: 900px) {
  .hero-content { padding: 80px 24px 60px; }
  .mv-wrap        { grid-template-columns: 1fr; }
  .svc-grid       { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .contact-cards  { grid-template-columns: 1fr; }
  .why-badge      { right: 0; bottom: -20px; }
}

@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
}
