/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
  /* Brand Colors */
  --gold: #C8A04F;
  --gold-dark: #B8923F;
  --dark: #111;
  --text-grey: #555;
  --border: #e9e2cf;
  
  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-soft: #faf9f6;
  --bg-card: #fffaf3;

  /* Shadows */
  --shadow-soft: 0 8px 20px rgba(0,0,0,0.05);
  --shadow-hover: 0 12px 25px rgba(0,0,0,0.10);
  --shadow-hero: 0 25px 60px rgba(0,0,0,0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Urbanist", sans-serif;
  background: var(--bg-white);
  color: var(--dark);
  line-height: 1.6;
  padding-top: 72px; /* Space for fixed header */
}

ul, li { list-style: none; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { display: block; max-width: 100%; }

/* ==========================================================================
   2. GLOBAL LAYOUT
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section { padding: 60px 0; position: relative; z-index: 1; }
.section-soft { background: var(--bg-soft); }
.center { text-align: center; }

/* Headings */
.section-heading { text-align: center; margin-bottom: 50px; }
.section-tagline {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}
.section-title { font-size: 36px; font-weight: 800; color: var(--dark); }
.section-subtitle { max-width: 650px; margin: 10px auto 0; font-size: 15px; color: var(--text-grey); }

/* Buttons */
.btn {
  padding: 14px 28px;
  background: var(--gold);
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  display: inline-block;
  border: 1px solid var(--gold);
}
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-secondary { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-secondary:hover { background: var(--gold); color: #fff; }

/* ==========================================================================
   3. HERO SECTION (STRAIGHT - NO TILT)
   ========================================================================== */
.hero {
  padding: 40px 0 60px;
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-left { flex: 1; max-width: 520px; }
.hero-right { flex: 1; max-width: 560px; }

.hero-kicker {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }

.hero-description {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
}

/* Hero Features */
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 36px;
  margin: 26px 0 30px;
}
.hero-features li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: #333;
}
.hero-features li::before {
  content: "●";
  position: absolute;
  left: 0; top: 2px;
  font-size: 10px;
  color: var(--gold);
}

.hero-cta { display: flex; gap: 14px; margin-top: 10px; }

.hero-meta {
  font-size: 16px;
  color: #111;
  margin-top: 25px;
}
.hero-meta span { color: var(--gold); font-weight: 700; }

/* Hero Image Card - NO ROTATION */
.hero-card {
  background: #111;
  padding: 14px;
  border-radius: 26px;
  box-shadow: var(--shadow-hero);
  /* Transform property removed to ensure image is straight */
}

.hero-image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
}

/* ==========================================================================
   4. SERVICES & CARDS
   ========================================================================== */
.services-grid, .quality-grid, .advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

/* Service Card */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-title { font-size: 18px; margin-bottom: 10px; color: var(--gold); font-weight: 700; }

/* Why Us / Advantage Card */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.why-card, .adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}
.why-card h3, .adv-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

/* Quality Card */
.quality-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px;
  border-left: 6px solid var(--gold);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}
.quality-card:hover { transform: translateY(-6px); }
.quality-card h3 { font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }

/* ==========================================================================
   5. WORK & STATS
   ========================================================================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.work-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-soft);
}
.work-card h3 { font-size: 17px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }

/* Stats Strip */
.stats-strip { padding: 0; }
.stats-strip .container { max-width: 1100px; }
.stats-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: linear-gradient(90deg, #D8AA4C, #C8A04F, #B89345);
  border-radius: 70px;
  padding: 22px 48px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.stat-value { font-size: 26px; font-weight: 800; color: #111; }
.stat-label { font-size: 13px; font-weight: 600; text-transform: uppercase; color: #111; }

/* ==========================================================================
   6. FAQ
   ========================================================================== */
.faq-list { max-width: 900px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-soft); }

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-grey);
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 260px;
  padding-bottom: 20px;
}

.faq-icon { font-size: 22px; color: var(--gold); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ==========================================================================
   7. INDUSTRY TAGS
   ========================================================================== */
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.industry-tags span {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid var(--border);
  font-size: 14px;
  background: #fff;
}

/* ==========================================================================
   8. RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .hero-inner { flex-direction: column; text-align: center; gap: 40px; }
  .hero-left, .hero-right { max-width: 100%; }
  .hero-features { max-width: 400px; margin: 26px auto; text-align: left; }
  .hero-cta { justify-content: center; }
  
  .stats-flex {
    flex-direction: column;
    border-radius: 26px;
    padding: 26px 24px;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .hero-title { font-size: 38px; }
  .services-grid, .why-grid, .work-grid { grid-template-columns: 1fr; }
  .hero-image-box img { height: 300px; }
}

/* ==========================================================================
   9. HEADER FIXES
   ========================================================================== */
/* Ensures header stays on top and content is clickable */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-toggle {
  z-index: 1001;
}