/* ═══════════════════════════════════════════════
   SERVEXA ENTERPRISES — WEBSITE STYLESHEET
   Brand: Navy #1A2B4A  |  Gold #C9A84C
   Font: Montserrat + Cormorant Garamond
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --navy:    #1A2B4A;
  --navy2:   #152238;
  --gold:    #C9A84C;
  --gold2:   #a8892e;
  --cream:   #FDF8F0;
  --lgold:   #E8DCC8;
  --white:   #FFFFFF;
  --grey:    #6B7280;
  --lgrey:   #F5F5F5;
  --teal:    #2A9D8F;
  --font:    'Montserrat', sans-serif;
  --font2:   'Cormorant Garamond', serif;
  --shadow:  0 4px 24px rgba(26,43,74,0.10);
  --shadow-lg: 0 12px 48px rgba(26,43,74,0.16);
  --radius:  8px;
  --tr:      all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--navy); background: var(--white); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── SCROLL ANIMATIONS ─── */
.aos { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.aos.visible { opacity: 1; transform: translateY(0); }
.aos-d1 { transition-delay: 0.1s; }
.aos-d2 { transition-delay: 0.2s; }
.aos-d3 { transition-delay: 0.3s; }
.aos-d4 { transition-delay: 0.4s; }
.aos-d5 { transition-delay: 0.5s; }
.aos-left  { opacity:0; transform: translateX(-32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.aos-right { opacity:0; transform: translateX(32px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.aos-left.visible, .aos-right.visible { opacity:1; transform: translateX(0); }

/* ─── TYPOGRAPHY ─── */
.section-tag {
  display: inline-block;
  background: var(--lgold);
  color: var(--gold2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--gold); }
.section-title-serif {
  font-family: var(--font2);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title-serif em { color: var(--gold); font-style: italic; }
.section-desc { font-size: 15px; color: var(--grey); max-width: 600px; line-height: 1.75; }
.title-center { text-align: center; }
.title-center .section-desc { margin: 0 auto; }

/* ─── GOLD DIVIDER ─── */
.gold-divider {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 14px 0 0;
}
.gold-divider::before, .gold-divider::after {
  content: ''; flex: 0 0 40px; height: 1px; background: var(--gold);
}
.gold-divider-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 4px;
  font-family: var(--font); font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; cursor: pointer; border: none;
  transition: var(--tr); white-space: nowrap;
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: white; }
.btn-sm { padding: 9px 20px; font-size: 12px; }

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,43,74,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transition: var(--tr);
}
.header.scrolled { background: rgba(21,34,56,0.99); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; max-width: 1280px; margin: 0 auto; height: 70px;
}
.logo img { height: 42px; width: auto; object-fit: contain; }

/* top contact bar */
.topbar {
  background: var(--navy2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: rgba(255,255,255,0.7); transition: var(--tr); }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar i { color: var(--gold); margin-right: 4px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500;
  padding: 8px 12px; border-radius: 4px; transition: var(--tr);
  letter-spacing: 0.3px;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a.active { font-weight: 700; }
.nav .btn { margin-left: 8px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); }

/* ─── HERO ─── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; margin-top: 70px;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-bg {
  position: absolute; inset: 0;
}
.hero-slide-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.03);
  animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,43,74,0.85) 0%,
    rgba(26,43,74,0.55) 50%,
    rgba(26,43,74,0.25) 100%
  );
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center;
  padding: 0 60px;
}
.hero-text { max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 36px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--font2);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 600; color: white; line-height: 1.1; margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.8);
  max-width: 480px; line-height: 1.75; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-badges {
  position: absolute; bottom: 40px; left: 60px; right: 60px;
  z-index: 2; display: flex; gap: 12px;
}
.hero-badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 6px; padding: 10px 18px;
  display: flex; align-items: center; gap: 10px;
  color: white;
}
.hero-badge i { color: var(--gold); font-size: 18px; }
.hero-badge-text { font-size: 12px; font-weight: 600; letter-spacing: 0.3px; }

/* Hero pagination */
.hero-pagination {
  position: absolute; bottom: 24px; right: 40px; z-index: 3;
  display: flex; align-items: center; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: var(--tr); padding: 0;
}
.hero-dot.active { background: var(--gold); transform: scale(1.4); }

/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); }
.section-lgold { background: var(--lgold); }
.section-lgrey { background: #F8F9FA; }

/* ─── STATS ─── */
.stats-bar {
  background: var(--navy2);
  padding: 0;
  border-top: 2px solid var(--gold);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px; margin: 0 auto;
}
.stat-item {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid rgba(201,168,76,0.2);
  transition: var(--tr);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,0.06); }
.stat-num {
  font-size: 42px; font-weight: 800; color: var(--gold);
  line-height: 1; margin-bottom: 6px;
}
.stat-num sup { font-size: 22px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }

/* ─── BRANDS GRID ─── */
.brands-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.brand-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--tr);
  background: white; border: 1px solid var(--lgold);
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.brand-card-img {
  height: 220px; overflow: hidden; position: relative;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center; padding: 30px;
}
.brand-card-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,43,74,0.1));
}
.brand-card-img img { max-height: 140px; width: auto; object-fit: contain; }
.brand-card-body { padding: 24px; }
.brand-card-tag {
  display: inline-block; background: var(--lgold);
  color: var(--gold2); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.brand-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.brand-card p { font-size: 13.5px; color: var(--grey); line-height: 1.65; margin-bottom: 18px; }
.brand-card-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--lgold));
  margin: 0 -24px; margin-top: -1px;
}

/* ─── WHY GRID ─── */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px;
}
.why-card {
  background: white; border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--lgold); transition: var(--tr);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: var(--tr);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 52px; height: 52px; border-radius: 8px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: var(--tr);
}
.why-card:hover .why-icon { background: var(--gold); }
.why-icon i { color: var(--gold); font-size: 20px; transition: var(--tr); }
.why-card:hover .why-icon i { color: var(--navy); }
.why-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--grey); line-height: 1.65; }

/* ─── CONTENT BLOCK ─── */
.content-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-image {
  border-radius: var(--radius); overflow: hidden;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  min-height: 360px; padding: 40px;
  border: 1px solid var(--lgold);
  position: relative;
}
.content-image::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60%; height: 60%;
  border: 2px solid var(--lgold);
  border-radius: var(--radius);
  z-index: -1;
}
.content-image img { max-height: 260px; width: auto; object-fit: contain; }
.content-text h3 {
  font-family: var(--font2);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600; line-height: 1.25; margin-bottom: 16px;
}
.content-text h3 span { color: var(--gold); }
.content-text p { font-size: 14.5px; color: var(--grey); line-height: 1.8; margin-bottom: 14px; }
.features-list { margin: 20px 0; }
.features-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--navy); margin-bottom: 10px;
}
.features-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* ─── PRODUCTS TABLE ─── */
.product-table-wrap {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--lgold); overflow: hidden;
  box-shadow: var(--shadow); margin-top: 32px;
}
.product-table-head {
  background: var(--navy); padding: 14px 20px;
  display: flex; align-items: center; gap: 12px; color: white;
}
.product-table-head i { color: var(--gold); }
.product-table-head span { font-weight: 700; font-size: 14px; letter-spacing: 0.5px; }
.product-cat {
  background: var(--lgold); padding: 8px 20px;
  font-size: 11px; font-weight: 700; color: var(--navy);
  letter-spacing: 2px; text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.product-row {
  display: flex; align-items: center;
  padding: 11px 20px; border-bottom: 1px solid #F0EBE0;
  font-size: 13.5px; transition: var(--tr);
}
.product-row:last-child { border-bottom: none; }
.product-row:nth-child(even) { background: #FDFAF5; }
.product-row:hover { background: #FDF4E3; }
.product-row-name { flex: 1; color: var(--navy); font-weight: 500; }
.product-row-desc { flex: 1; color: var(--grey); font-size: 13px; }
.product-row-size { width: 120px; color: var(--grey); font-size: 12px; }

/* ─── FAQ ─── */
.faq-list { margin-top: 36px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  border: 1px solid var(--lgold); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden; transition: var(--tr);
}
.faq-item.open { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,168,76,0.15); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  font-family: var(--font); font-size: 14.5px; font-weight: 600;
  color: var(--navy); text-align: left;
}
.faq-item.open .faq-question { color: var(--gold); }
.faq-arrow i { transition: var(--tr); color: var(--gold); }
.faq-item.open .faq-arrow i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 14px; color: var(--grey); line-height: 1.75; }

/* ─── TESTIMONIALS ─── */
.testimonial-wrap {
  max-width: 800px; margin: 48px auto 0; position: relative;
}
.testimonial-card {
  display: none; text-align: center;
  background: white; border-radius: var(--radius); padding: 48px 52px;
  border: 1px solid var(--lgold); box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font2); font-size: 120px; color: var(--lgold);
  position: absolute; top: -10px; left: 30px; line-height: 1;
}
.testimonial-card.active { display: block; }
.t-stars { color: var(--gold); font-size: 16px; margin-bottom: 18px; letter-spacing: 3px; }
.t-text { font-size: 16px; color: var(--navy); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.t-author { font-weight: 700; font-size: 14px; color: var(--navy); }
.t-role { font-size: 12px; color: var(--grey); margin-top: 3px; }
.t-nav { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.t-nav button {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--lgold);
  background: white; cursor: pointer; color: var(--navy); font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}
.t-nav button:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 70px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-section h2 {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 800;
  color: white; margin-bottom: 12px;
}
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── CLIENT LOGOS ─── */
.client-logos {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 40px;
}
.client-logo {
  background: white; border: 1px solid var(--lgold); border-radius: var(--radius);
  padding: 16px 12px; text-align: center;
  font-size: 11px; font-weight: 700; color: var(--navy);
  letter-spacing: 0.5px; transition: var(--tr);
}
.client-logo:hover { border-color: var(--gold); background: var(--cream); transform: translateY(-2px); }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy2);
  border-top: 2px solid var(--gold);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.75);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--tr);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer h4 { font-size: 13px; font-weight: 700; color: white; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(201,168,76,0.25); }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: var(--tr); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13.5px; color: rgba(255,255,255,0.6); align-items: flex-start; }
.footer-contact-list i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,0.4);
}
.footer-bottom span { color: var(--gold); }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--tr); animation: waPulse 2.5s ease infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 80px 0 60px;
  margin-top: 70px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font2); font-size: clamp(30px,4vw,48px); font-weight: 600; color: white; margin-bottom: 12px; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; margin-top: 48px; }
.contact-info-card {
  background: var(--navy); border-radius: var(--radius); padding: 40px;
  color: white;
}
.contact-info-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.contact-info-card .sub { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 32px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-icon { width: 42px; height: 42px; border-radius: 8px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon i { color: var(--gold); font-size: 16px; }
.contact-info-text span { display: block; font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-info-text a, .contact-info-text p { color: white; font-size: 14.5px; font-weight: 500; }
.contact-form { background: white; border-radius: var(--radius); padding: 40px; border: 1px solid var(--lgold); box-shadow: var(--shadow); }
.contact-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--lgold); border-radius: 6px;
  font-family: var(--font); font-size: 14px; color: var(--navy);
  background: var(--cream); transition: var(--tr);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: white;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { height: 120px; resize: vertical; }

/* ─── ABOUT PAGE ─── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 36px; }
.value-card { background: white; border: 1px solid var(--lgold); border-radius: var(--radius); padding: 28px; transition: var(--tr); }
.value-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.value-card i { color: var(--gold); font-size: 24px; margin-bottom: 12px; }
.value-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.value-card p { font-size: 13.5px; color: var(--grey); line-height: 1.65; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: var(--navy2); flex-direction: column; align-items: stretch;
    padding: 16px; gap: 4px; border-bottom: 2px solid var(--gold); z-index: 999;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; border-radius: 6px; font-size: 14px; }
  .brands-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .content-block { grid-template-columns: 1fr; gap: 32px; }
  .content-block.reverse { direction: ltr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .client-logos { grid-template-columns: repeat(3,1fr); }
  .hero-badges { display: none; }
  .hero-content { padding: 0 24px; }
  .topbar { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .client-logos { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
}
