/* ============================================================
   i2tambala — Industrial Machinery
   White/Cream + Dark Navy + Amber/Orange accent
   Inspired by Sydney Floors Australia structure
   ============================================================ */

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

:root {
  /* Brand accent */
  --amber:        #D4820A;
  --amber-light:  #f09c2a;
  --amber-dark:   #a8630a;

  /* Light backgrounds */
  --bg:           #ffffff;
  --bg-2:         #f7f8fa;
  --bg-3:         #edf0f5;
  --bg-4:         #dde2ea;

  /* Text / navy */
  --navy:         #0d1b2a;
  --navy-2:       #1a3050;
  --text:         #2c3e50;
  --muted:        #6b7a8d;
  --muted-light:  #9aaabb;

  /* Footer */
  --footer-bg:    #080f1a;
  --footer-text:  #7a8fa8;

  /* Aliases */
  --dark:         #0d1b2a;
  --white:        #ffffff;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --transition:   0.3s ease;
  --radius:       4px;
  --shadow:       0 8px 32px rgba(13,27,42,0.12);
  --shadow-amber: 0 8px 24px rgba(212,130,10,0.30);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a   { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul  { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* ===== SECTION HELPERS ===== */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; background: var(--bg); }
.section-alt { background: var(--bg-2) !important; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== AMBER LINE ===== */
.amber-line {
  width: 60px; height: 4px;
  background: var(--amber);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.amber-line-left { margin-left: 0; }
.text-amber { color: var(--amber-dark) !important; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}
.btn-amber-outline {
  background: transparent;
  color: var(--amber-dark);
  border-color: var(--amber);
}
.btn-amber-outline:hover {
  background: var(--amber);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  background: rgba(212,130,10,0.1);
  border: 1px solid rgba(212,130,10,0.3);
  color: var(--amber-dark);
  font-size: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 9px 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-family: var(--font-heading);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar a { color: var(--amber); font-weight: 600; }
.topbar a:hover { color: var(--amber-light); }
.topbar-right { display: flex; gap: 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}
.navbar.scrolled {
  top: 0;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(13,27,42,0.10);
  backdrop-filter: blur(12px);
}
.navbar.scrolled .nav-inner { padding: 12px 24px; }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition);
  background: var(--bg);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.1;
}
.nav-logo .logo-text span { color: var(--navy); display: block; }
.nav-logo .logo-text em {
  font-style: normal;
  color: var(--amber-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}
.mobile-menu a:hover { color: var(--amber-dark); }
.mobile-menu .btn { font-size: 0.85rem; }

/* ===== HERO SPLIT ===== */
.hero-split {
  display: grid;
  grid-template-columns: 62% 38%;
  min-height: 100vh;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

/* Left: machinery image */
.hero-split__img {
  position: relative;
  overflow: hidden;
}
.hero-split__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 10s ease;
}
.hero-split__img:hover img { transform: scale(1.04); }
.hero-split__amber-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--amber);
  z-index: 2;
}
.hero-split__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 55%,
    rgba(13,27,42,0.55) 82%,
    var(--navy) 100%
  );
  pointer-events: none;
}

/* Right: content panel */
.hero-split__content {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-image: radial-gradient(ellipse at 90% 10%, rgba(212,130,10,0.08) 0%, transparent 55%);
}
.hero-split__inner {
  padding: 80px 56px 60px 44px;
  max-width: 540px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,130,10,0.14);
  border: 1px solid rgba(212,130,10,0.35);
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 24px;
  font-size: 0.68rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
}
.hero-badge::before { content: '⚙'; }

.hero-split__title {
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.hero-split__title .highlight { color: var(--amber); }

.hero-split__sub {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 420px;
}

/* Product quick-list */
.hero-products-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 36px;
  list-style: none;
}
.hero-products-list li {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-products-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

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

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats > div {
  flex: 1;
  padding-left: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stats > div:first-child { padding-left: 0; }
.hero-stats > div:last-child  { border-right: none; }
.hero-stats .stat-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}
.hero-stats .stat-label {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px; right: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 600;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: var(--amber);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%   { top: 5px;  opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ===== PRODUCTS STRIP ===== */
.products-strip { background: var(--bg); padding: 0; }
.products-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--amber);
  border-bottom: 1px solid var(--bg-4);
}
.strip-item {
  padding: 32px 20px;
  border-right: 1px solid var(--bg-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: background var(--transition);
  cursor: default;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--bg-2); }
.strip-icon {
  width: 52px; height: 52px;
  background: rgba(212,130,10,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: background var(--transition);
}
.strip-item:hover .strip-icon { background: rgba(212,130,10,0.22); }
.strip-item h4 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ===== WHY SECTION ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content .section-subtitle { max-width: none; }
.why-list { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-icon {
  width: 48px; height: 48px;
  background: rgba(212,130,10,0.12);
  border: 1px solid rgba(212,130,10,0.3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.why-item p  { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

.why-image { position: relative; }
.why-image-main {
  width: 100%; height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-3);
}
.why-image-main img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--amber);
  color: var(--navy);
  padding: 24px 28px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-amber);
}
.why-badge .num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.why-badge .lbl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--bg-4);
  border: 1px solid var(--bg-4);
  border-radius: 8px;
  overflow: hidden;
}
.product-card {
  background: var(--bg);
  padding: 44px 40px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card::before {
  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(--bg-2); }
.product-card:hover::before { transform: scaleX(1); }

.product-card-img {
  width: 100%; height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--bg-3);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }

.product-icon {
  width: 60px; height: 60px;
  background: rgba(212,130,10,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.product-card h3 { font-size: 1.2rem; margin-bottom: 12px; font-weight: 800; color: var(--navy); }
.product-card p  { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.product-card ul { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.product-card ul li {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  padding: 64px 0;
  background: var(--navy);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}
.trust-card {
  background: rgba(255,255,255,0.04);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition);
}
.trust-card:hover { background: rgba(255,255,255,0.08); }
.trust-card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.trust-card h4 {
  font-size: 0.88rem;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}
.trust-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-3);
  cursor: pointer;
}
.gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay h4 { font-size: 0.9rem; font-weight: 700; color: #fff; }
.gallery-overlay span { font-size: 0.75rem; color: var(--amber-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--bg-4);
  padding: 36px;
  border-radius: 8px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: rgba(212,130,10,0.12);
  line-height: 1;
}
.stars { color: var(--amber); margin-bottom: 16px; letter-spacing: 3px; font-size: 0.9rem; }
.testimonial-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.author-loc  { font-size: 0.78rem; color: var(--muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy);
  border-top: 3px solid var(--amber);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; color: #fff; }
.cta-banner p  { font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT PAGE ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--muted); line-height: 1.8; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-detail-icon {
  width: 48px; height: 48px;
  background: rgba(212,130,10,0.1);
  border: 1px solid rgba(212,130,10,0.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-item h4 { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-detail-item p  { font-size: 0.95rem; color: var(--navy); margin: 0; }
.contact-detail-item a  { color: var(--amber-dark); }
.contact-detail-item a:hover { text-decoration: underline; }

/* ===== FORM ===== */
.quote-form {
  background: var(--bg);
  border: 1px solid var(--bg-4);
  padding: 48px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.form-title    { font-size: 1.5rem; margin-bottom: 8px; color: var(--navy); }
.form-subtitle { font-size: 0.9rem; color: var(--muted); margin-bottom: 36px; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group    { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--bg-4);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,130,10,0.15);
  background: var(--bg);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-light); }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 14px; }

.alert { padding: 14px 20px; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 20px; display: none; }
.alert-success { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.3); color: #15803d; }
.alert-error   { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.3); color: #b91c1c; }

/* ===== PAGE HERO SPLIT (inner pages) ===== */
.page-hero-split {
  display: grid;
  grid-template-columns: 65% 35%;
  min-height: 380px;
  padding-top: 72px;
  background: var(--navy);
  overflow: hidden;
}
.page-hero-split__img { position: relative; overflow: hidden; }
.page-hero-split__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.page-hero-split__amber-bar {
  position: absolute;
  top: 72px; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light), transparent);
}
.page-hero-split__img::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 100%;
  background: linear-gradient(to right, transparent, var(--navy));
  pointer-events: none;
}
.page-hero-split__content {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 48px 40px 48px 24px;
}
.page-hero-split h1 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 14px;
  color: #fff;
}
.page-hero-split p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.75; }
.breadcrumb-dark {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
  font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.08em;
}
.breadcrumb-dark a { color: var(--amber-light); }

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; padding-bottom: 28px; padding-right: 28px; }
.about-img-main {
  width: 100%; height: 520px;
  background: var(--bg-3);
  border-radius: 8px;
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 180px; height: 180px;
  background: var(--amber);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  color: var(--navy);
  box-shadow: var(--shadow-amber);
}
.about-img-accent .big-num {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 900; line-height: 1;
}
.about-img-accent p { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.about-check { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.check-icon {
  width: 24px; height: 24px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--amber);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--footer-text);
  line-height: 1.8;
  margin: 20px 0 28px;
  max-width: 300px;
}
.footer-brand .logo-text span { color: #fff !important; }
.footer-brand .logo-text em   { color: var(--amber) !important; }

.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--footer-text);
  transition: var(--transition);
}
.social-link:hover { background: var(--amber); border-color: var(--amber); color: var(--navy); }

.footer-col h5 {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--footer-text); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex; align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem; color: var(--footer-text);
}
.footer-contact-item .fi { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--amber-light); }
.footer-contact-item a:hover { text-decoration: underline; }

.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.78rem; color: var(--footer-text);
}
.footer-bottom a { color: var(--footer-text); }
.footer-bottom a:hover { color: var(--amber-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  z-index: 900;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 60% 40%; }
  .hero-split__inner { padding: 72px 32px 60px 32px; }
  .why-grid    { grid-template-columns: 1fr; gap: 48px; }
  .why-image   { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .about-checks { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-split { grid-template-columns: 1fr; grid-template-rows: 52vh auto; padding-top: 72px; }
  .hero-split__img { min-height: 52vh; }
  .hero-split__img::after { background: linear-gradient(to bottom, transparent 50%, var(--navy) 100%); }
  .hero-split__inner { padding: 40px 24px 32px; max-width: none; }
  .hero-split__title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-products-list { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stats > div { border-right: none; padding: 0; flex: 0 0 40%; }
  .hero-scroll-indicator { display: none; }
  .hero-actions { flex-direction: column; }
  .products-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .quote-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .page-hero-split { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-split__img { height: 220px; }
  .page-hero-split__img::after { display: none; }
  .page-hero-split__content { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .products-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
