/* ============================================================
   JAYESH THOMAS QUARRY — Main Stylesheet
   Font: Cormorant Garamond (headings) + DM Sans (body)
   Theme: Light — Warm Ivory, Charcoal, Amber Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* ── CSS Variables ── */
:root {
  --ivory:      #faf7f1;
  --cream:      #f4efe4;
  --cream-dark: #ece5d6;
  --warm-100:   #e8dfc9;
  --warm-200:   #d4c9af;
  --warm-400:   #a89880;
  --warm-600:   #6b5c47;
  --charcoal:   #1e1a14;
  --charcoal-2: #2d2820;
  --charcoal-3: #3d3628;
  --amber:      #b07d1f;
  --amber-light:#d4a035;
  --amber-pale: #f5e9c8;
  --amber-bg:   #fdf3dc;
  --rust:       #8b4513;
  --white:      #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'Bebas Neue', sans-serif;

  --shadow-sm:   0 2px 12px rgba(30,26,20,0.08);
  --shadow-md:   0 8px 32px rgba(30,26,20,0.12);
  --shadow-lg:   0 20px 60px rgba(30,26,20,0.18);
  --shadow-gold: 0 4px 30px rgba(176,125,31,0.2);
  --transition:  0.32s cubic-bezier(0.4, 0, 0.2, 1);

  --border: 1px solid rgba(30,26,20,0.1);
  --border-amber: 1px solid rgba(176,125,31,0.25);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  background: rgba(250,247,241,0.92);
  border-bottom: var(--border);
  backdrop-filter: blur(16px);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}

.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.nav-logo-text .brand   { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--charcoal); letter-spacing: 0.01em; line-height: 1.1; }
.nav-logo-text .tagline { font-size: 0.62rem; color: var(--amber); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-600);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--amber);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 3px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--amber-light) !important; }
.nav-cta::after { display: none !important; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: hero-zoom 22s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.09); }
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    #c9b99a 0%, #b8a886 20%, #a89572 40%,
    #9a8562 60%, #8a7550 80%, #7a6540 100%);
}

.hero-bg-fallback::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 25% 35%, rgba(255,240,200,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 65%, rgba(120,90,40,0.2) 0%, transparent 55%);
}

/* Light overlay — less dark, more luminous */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,247,241,0.15) 0%,
    rgba(30,26,20,0.35) 50%,
    rgba(30,26,20,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 2rem;
  animation: fade-up 1s ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  color: darkred;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fade-up 0.8s 0.3s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.4rem;
  text-shadow: 0 3px 24px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fade-up 0.9s 0.5s ease both;
}

.hero-title span { color: var(--amber-light); }

.hero-divider {
  width: 55px; height: 2px;
  background: var(--amber-light);
  margin: 0 auto 1.6rem;
  opacity: 0;
  animation: fade-up 0.9s 0.65s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgb(240 246 13 / 88%);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fade-up 0.9s 0.75s ease both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s 0.9s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,247,241,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: bounce-down 2.2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(250,247,241,0.5), transparent);
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 3px;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(176,125,31,0.3);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(176,125,31,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(250,247,241,0.55);
}
.btn-outline:hover {
  border-color: var(--amber-light);
  color: var(--amber-light);
  transform: translateY(-2px);
}

/* Download button — used on light bg */
.btn-download {
  background: var(--amber);
  color: var(--white);
  font-size: 0.88rem;
  padding: 1rem 2.2rem;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.btn-download::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.18);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
}
.btn-download:hover::before { transform: translateX(200%) skewX(-15deg); }
.btn-download:hover {
  background: var(--amber-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(176,125,31,0.45);
}
.btn-download svg { flex-shrink: 0; }

/* Dark button variant for light sections */
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--charcoal-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 6rem 5%; }

.section-label {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  color: var(--amber);
  display: block;
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--warm-600);
  max-width: 540px;
  font-weight: 400;
  line-height: 1.85;
}

.gold-line {
  width: 48px; height: 2px;
  background: var(--amber);
  margin: 1.4rem 0;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--charcoal);
  padding: 2.8rem 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--amber-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,241,0.55);
  margin-top: 0.35rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--warm-100) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: var(--border);
}

.about-image-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 60 L30 0 L60 60' fill='none' stroke='rgba(176,125,31,0.07)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.about-image-placeholder span {
  color: var(--warm-400);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
  line-height: 1.8;
}

.about-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  width: 130px; height: 130px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about-badge .badge-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  animation: rotate-slow 20s linear infinite reverse;
}

.about-badge .badge-text {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  animation: rotate-slow 20s linear infinite reverse;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}

.feature-chip {
  background: var(--cream);
  border: var(--border);
  padding: 0.85rem 1rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--charcoal-2);
  transition: border-color var(--transition), background var(--transition), transform 0.2s;
}

.feature-chip:hover {
  border-color: var(--amber);
  background: var(--amber-bg);
  transform: translateY(-1px);
}

.feature-chip .chip-icon { font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  background: var(--cream);
  text-align: center;
}

.products-header { max-width: 580px; margin: 0 auto 4rem; }
.products-header .gold-line { margin: 1.4rem auto; }
.products-header .section-subtitle { margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-100);
}

.product-card {
  background: var(--white);
  padding: 2.8rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), box-shadow var(--transition), transform 0.25s;
  cursor: default;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.product-card:hover {
  background: var(--ivory);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  z-index: 1;
}

.product-card:hover::after { transform: scaleX(1); }

.product-icon { font-size: 2.2rem; margin-bottom: 1.3rem; display: block; }

.product-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--warm-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.product-specs { display: flex; flex-direction: column; gap: 0; }

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.spec-row:last-child { border-bottom: none; }

.spec-key { color: var(--warm-400); font-weight: 600; letter-spacing: 0.04em; }
.spec-val { color: var(--amber); font-weight: 700; }

/* ============================================================
   ENVIRONMENTAL CLEARANCE
   ============================================================ */
.env-clearance {
  background: var(--white);
  border-top: var(--border);
  border-bottom: var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.env-content .section-subtitle { margin-bottom: 1.8rem; }

.env-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.env-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--amber-bg);
  border: var(--border-amber);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.04em;
}
.env-badge svg { flex-shrink: 0; color: var(--amber); }

/* Document Card */
.env-doc-card {
  background: var(--ivory);
  border: var(--border-amber);
  border-radius: 6px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.env-doc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
}

.doc-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.doc-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(176,125,31,0.3);
}

.doc-meta h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.doc-meta p { font-size: 0.8rem; color: var(--warm-600); }

.doc-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.doc-detail {
  background: var(--cream);
  padding: 0.6rem 0.85rem;
  border-radius: 3px;
  border: var(--border);
  font-size: 0.78rem;
}
.doc-detail-label {
  color: var(--warm-400);
  margin-bottom: 0.12rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.66rem;
}
.doc-detail-val { color: var(--charcoal); font-weight: 700; }

/* ============================================================
   OPERATIONS / GALLERY
   ============================================================ */
.operations {
  background: var(--cream);
  padding-bottom: 2rem;
}

.operations-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--warm-100);
  border-radius: 2px;
}

.gallery-item:first-child { grid-row: span 2; }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-dark), var(--warm-100));
  color: var(--warm-400);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.gallery-placeholder::before {
  content: attr(data-label);
  position: absolute;
  font-family: var(--font-accent);
  font-size: 5rem;
  color: rgba(30,26,20,0.04);
  letter-spacing: 0.05em;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,26,20,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-size: 0.78rem; font-weight: 700; color: var(--white); letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--white); }

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

.why-list { margin-top: 2rem; }

.why-item {
  display: flex;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: border-color var(--transition);
}

.why-item:first-child { border-top: 1px solid var(--cream-dark); }
.why-item:hover { border-color: var(--amber); }

.why-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--cream-dark);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  transition: color var(--transition);
}

.why-item:hover .why-num { color: var(--amber); }

.why-body h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.why-body p { font-size: 0.88rem; color: var(--warm-600); line-height: 1.75; }

.why-image-placeholder {
  width: 100%;
  height: 550px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--warm-100) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-400);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  border: var(--border);
}

.why-accent-box {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--amber);
  padding: 1.4rem 1.8rem;
  border-radius: 3px;
  max-width: 220px;
  box-shadow: var(--shadow-gold);
}

.why-accent-box p {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
}

.why-accent-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.15rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-subtitle { margin-bottom: 2.2rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.3rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--amber-bg);
  border: var(--border-amber);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item-body { font-size: 0.88rem; }
.contact-item-body strong { display: block; color: var(--warm-400); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-item-body span { color: var(--charcoal); font-weight: 400; line-height: 1.65; }

.contact-form {
  background: var(--white);
  border: var(--border);
  padding: 2.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

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

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-600);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--warm-200); }
.form-group select option { background: var(--white); color: var(--charcoal); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  padding: 4rem 5% 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1.2rem; }
.footer-brand .brand { color: var(--ivory) !important; }
.footer-brand p { font-size: 0.86rem; color: var(--warm-400); line-height: 1.8; max-width: 270px; }

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--amber-light);
  margin-bottom: 1.1rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.86rem; color: var(--warm-400); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--amber-light); }

.footer-cert { display: flex; flex-direction: column; gap: 0.55rem; }

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.79rem;
  color: var(--warm-400);
}

.cert-badge::before {
  content: '✓';
  width: 18px; height: 18px;
  background: rgba(176,125,31,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-light);
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(250,247,241,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.76rem; color: var(--warm-600); }
.footer-bottom a { color: var(--amber-light); }
.footer-bottom a:hover { color: var(--amber); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9999;
  background: var(--white);
  border: var(--border-amber);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.86rem;
  color: var(--charcoal);
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--amber); font-size: 1.2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about, .env-clearance, .why-us-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  section { padding: 4rem 6%; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .operations-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .about-badge { width: 110px; height: 110px; bottom: -14px; right: -14px; }
  .about-badge .badge-num { font-size: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .why-accent-box { display: none; }
}
/* .project-location {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-left: 3px solid var(--gold, #d4af37);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin: 1.4rem 0;
  max-width: 420px;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  color: var(--gold, #d4af37);
}

.location-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold, #d4af37);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.location-row {
  display: flex;
  gap: 0.8rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.loc-key {
  min-width: 90px;
  color: var(--warm-500, #a0907a);
  font-weight: 500;
}

.loc-val {
  color: var(--warm-100, #c19324);
  font-weight: 400;
} */
.project-location {
  background: var(--cream);           /* solid warm background */
  border: 1px solid rgba(176, 125, 31, 0.25);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin: 1.4rem 0;
  max-width: 420px;
}

.loc-key {
  min-width: 90px;
  color: var(--warm-600);             /* matches your existing warm-600 */
  font-weight: 500;
}

.loc-val {
  color: var(--charcoal);             /* solid dark — fully readable */
  font-weight: 600;
}

.location-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);                /* use your defined amber instead of --gold */
}

.location-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  color: var(--amber);
}
.location-row {
  display: flex;
  gap: 0.8rem;
  font-size: 0.88rem;
  line-height: 1.5;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}