/* ═══════════════════════════════════════════════════════════════
   ROATAN GENERAL TRADING — PREMIUM WEBSITE STYLES
   Advanced Design with Animations, Glass Morphism & Luxury Feel
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --gold: #c89442;
  --gold-light: #deb66e;
  --gold-dark: #a67730;
  --navy: #0b2239;
  --navy-deep: #071b32;
  --navy-light: #173b5e;
  --text: #14273d;
  --text-light: #687582;
  --text-muted: #9faebb;
  --bg: #ffffff;
  --bg-warm: #f5f4ef;
  --bg-card: #fbfaf7;
  --border: #e7e6e2;
  --shadow-sm: 0 2px 12px rgba(10,31,53,.06);
  --shadow-md: 0 8px 32px rgba(10,31,53,.09);
  --shadow-lg: 0 20px 60px rgba(10,31,53,.13);
  --shadow-gold: 0 8px 32px rgba(200,148,66,.25);
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --transition-fast: .2s ease;
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 9999;
  width: 0%;
  transition: width .1s linear;
  box-shadow: 0 0 10px rgba(200,148,66,.6);
}

/* ── Loading Screen ── */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-logo {
  max-width: 180px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  animation: loadPulse 1.5s ease-in-out infinite;
}
.loading-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  margin-top: 30px;
  overflow: hidden;
}
.loading-bar::after {
  content: '';
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  animation: loadBar 1.2s ease-in-out infinite;
}
@keyframes loadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}
@keyframes loadPulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* ── Particles ── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(200,148,66,.08);
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ── Container ── */
.container { width: min(1200px, calc(100% - 32px)); margin: auto; }
a { text-decoration: none; color: inherit; }

/* ── Moving Marquee Top Bar ── */
.topbar {
  background: var(--navy-deep);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(200,148,66,.15);
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.topbar-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  will-change: transform;
}
.topbar-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.topbar-text {
  color: rgba(255,255,255,.5);
  font-size: 11px;
  letter-spacing: .03em;
  font-weight: 500;
  padding: 0 8px;
  white-space: nowrap;
}
.topbar-text a { color: var(--gold-light); text-decoration: none; transition: var(--transition-fast); }
.topbar-text a:hover { color: #fff; }
.topbar-sep { color: var(--gold); opacity: .4; padding: 0 10px; font-size: 10px; }

/* ── Sidebar Nav (Desktop + Mobile) ── */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,20,37,.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
}
.sidebar-overlay.open { opacity: 1; visibility: visible; }

.sidebar-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  z-index: 201;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.25,.8,.25,1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(4,20,37,.15);
}
.sidebar-nav-panel.open { transform: translateX(0); }

.sidebar-nav-head {
  padding: 24px 20px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sidebar-nav-head img {
  max-height: 44px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.sidebar-nav-close {
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: var(--navy); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(4,20,37,.22);
  transition: all .3s cubic-bezier(.25,.8,.25,1);
  flex-shrink: 0;
}
.sidebar-nav-close svg { width: 18px; height: 18px; display: block; }
.sidebar-nav-close:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: rotate(90deg) scale(1.06);
  box-shadow: 0 6px 18px rgba(200,148,66,.4);
}
.sidebar-nav-close:active { transform: rotate(90deg) scale(.92); }

.sidebar-nav-links {
  flex: 1; padding: 16px 20px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 2px;
}
.sidebar-nav-links a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: var(--radius);
  color: var(--text); text-decoration: none; font-size: 15px; font-weight: 600;
  transition: var(--transition-fast); position: relative;
}
.sidebar-nav-links a i { font-size: 20px; color: var(--text-muted); transition: var(--transition-fast); }
.sidebar-nav-links a:hover { background: rgba(200,148,66,.06); color: var(--gold-dark); }
.sidebar-nav-links a:hover i { color: var(--gold); }
.sidebar-nav-links a.sidebar-active { background: rgba(200,148,66,.08); color: var(--gold-dark); }
.sidebar-nav-links a.sidebar-active i { color: var(--gold); }
.sidebar-nav-links a.sidebar-active::before {
  content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:3px;height:24px;border-radius:2px;background:var(--gold);
}

.sidebar-nav-divider {
  height: 1px; background: var(--border); margin: 8px 18px;
}

.sidebar-nav-cta {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
}
.sidebar-nav-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: var(--radius); text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .04em;
  transition: var(--transition);
}
.sidebar-nav-cta a:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Hamburger — hidden on desktop, shown on mobile */
.menu {
  display: none;
  width: 44px; height: 44px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--bg-warm);
  cursor: pointer; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
  transition: var(--transition-fast);
}
.menu-lines {
  display: flex; flex-direction: column; gap: 5px; width: 20px;
}
.menu-lines span {
  display: block; height: 2px; background: var(--text); border-radius: 2px;
  transition: var(--transition-fast);
}
.menu-lines span:nth-child(1) { width: 100%; }
.menu-lines span:nth-child(2) { width: 70%; }
.menu-lines span:nth-child(3) { width: 100%; }
.menu:hover { background: var(--navy); border-color: var(--navy); }
.menu:hover .menu-lines span { background: #fff; }
.menu:hover .menu-lines span:nth-child(2) { width: 100%; }
.menu:active { transform: scale(.92); }

/* ── Header / Navbar ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(10,31,53,.08);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo img {
  max-width: 260px;
  max-height: 70px;
  width: auto;
  height: auto;
  display: block;
  transition: var(--transition);
}
.logo img:hover { transform: scale(1.02); }

/* Footer logo — any uploaded size stays proportional */
.foot-brand img {
  max-width: 220px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}
.nav nav a {
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}
.nav nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.nav nav a:hover::after,
.nav nav a.active::after { transform: scaleX(1); }
.nav nav a:hover { color: var(--gold-dark); }
.quote {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #fff !important;
  padding: 11px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 800 !important;
  letter-spacing: .03em;
  box-shadow: var(--shadow-gold);
  transition: var(--transition) !important;
  border: none !important;
}
.quote::after { display: none !important; }
.quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200,148,66,.35) !important;
}
/* .menu styles moved to sidebar section above */

/* ── Hero Section ── */
.hero {
  min-height: 700px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,20,37,.95) 0%, rgba(11,34,57,.85) 40%, rgba(4,20,37,.6) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-copy {
  max-width: 800px;
  padding: 90px 0;
}

/* ── Eyebrow ── */
.eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  font-weight: 800;
  color: var(--gold-light);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.eyebrow.dark { color: var(--gold-dark); }
.eyebrow.dark::before { background: var(--gold-dark); }

/* ── Hero Headline ── */
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(50px, 6.5vw, 84px);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -.03em;
}
.hero h1 span {
  color: var(--gold-light);
  position: relative;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 4px;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 18px;
  color: rgba(229,235,240,.85);
  max-width: 640px;
  line-height: 1.7;
}

/* ── Typing Cursor ── */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--gold-light);
  margin-left: 4px;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── Buttons ── */
.actions { display: flex; gap: 14px; margin: 36px 0; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 13px;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200,148,66,.4);
}
.outline {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
}
.outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(200,148,66,.08);
  transform: translateY(-3px);
}
.light {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-md);
}
.light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
}
.dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(11,34,53,.3);
}

/* ── Trust Row ── */
.trust-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.trust-row b {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.trust-row b:last-child { border-right: none; }
.trust-row b::before {
  content: '✦';
  color: var(--gold-light);
  font-size: 8px;
}

/* ── Section Styles ── */
.section { padding: 110px 0; position: relative; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 50px;
}
.section-head h2, .about h2, .contact h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}
.section-head h2 span, .about h2 span, .contact h2 span {
  color: var(--gold);
  position: relative;
}
.section-head > p {
  max-width: 420px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger > * { transition-delay: calc(var(--i, 0) * .12s); }

/* ── Service Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service {
  border: 1px solid var(--border);
  background: #fff;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service:hover::before { transform: scaleX(1); }
.service:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service img {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: var(--transition-slow);
}
.service:hover img { transform: scale(1.05); }
.service-img-wrap {
  overflow: hidden;
  position: relative;
}
.service-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  transition: var(--transition);
  z-index: 2;
}
.service:hover .service-icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(10deg) scale(1.1);
}
.service > div {
  padding: 28px;
}
.service small {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .14em;
  font-size: 11px;
}
.service h3 {
  font-size: 24px;
  margin: 8px 0 10px;
  font-family: "Playfair Display", serif;
}
.service p {
  color: var(--text-light);
  font-size: 14px;
  min-height: 65px;
  line-height: 1.65;
}
.service a {
  color: var(--gold-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.service a:hover { gap: 12px; color: var(--gold); }

/* ── About Section ── */
.about { background: var(--bg-warm); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-deep);
  position: relative;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(200,148,66,.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: var(--transition-slow);
}
.about-photo:hover img { transform: scale(1.04); opacity: 1; }
.about p:not(.eyebrow) { color: var(--text-light); line-height: 1.75; }
.mini-stats {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.mini-stats > div {
  background: #fff;
  border: 1px solid rgba(200,148,66,.15);
  padding: 18px 22px;
  min-width: 130px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mini-stats > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.mini-stats > div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mini-stats strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 2px;
}
.mini-stats span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-light);
}

/* ── Products Grid ── */
.products { background: #fff; }
.center { justify-content: center; text-align: center; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product {
  min-height: 160px;
  padding: 28px;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-warm));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}
.product::after {
  content: '';
  position: absolute;
  right: -25px;
  top: -25px;
  width: 100px;
  height: 100px;
  border: 1.5px solid rgba(200,148,66,.25);
  border-radius: 50%;
  transition: var(--transition-slow);
}
.product:hover::after {
  transform: scale(1.3);
  border-color: rgba(200,148,66,.5);
}
.product::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.product:hover::before { transform: scaleX(1); }
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product b {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  position: relative;
  z-index: 1;
}
.product span {
  font-size: 12px;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

/* ── Why Section ── */
.why {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,148,66,.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.why h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.08;
  margin: 0 0 22px;
}
.why h2 em {
  color: var(--gold-light);
  font-style: normal;
  position: relative;
}
.why-copy p { color: var(--text-muted); max-width: 500px; line-height: 1.75; }
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-cards > div {
  border: 1px solid rgba(255,255,255,.1);
  padding: 26px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
}
.why-cards > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.why-cards > div:hover::before { opacity: 1; }
.why-cards > div:hover {
  border-color: rgba(200,148,66,.3);
  transform: translateY(-5px);
  background: rgba(255,255,255,.06);
}
.why-cards .why-num {
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-cards .why-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200,148,66,.25);
}
.why-cards h3 { margin: 10px 0 6px; font-size: 17px; }
.why-cards p { color: var(--text-muted); font-size: 13px; margin: 0; line-height: 1.6; }

/* ── Animated Counters ── */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: -55px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}
.counter {
  padding: 38px 30px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.counter:last-child { border-right: none; }
.counter:hover { background: var(--bg-warm); }
.counter .num {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 3.5vw, 48px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.counter .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
}

/* ── Projects Section ── */
.projects { background: var(--bg-warm); }
.project-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-note > div {
  min-height: 280px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  cursor: default;
}
.project-note > div::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,21,37,.94) 0%, rgba(4,21,37,.15) 60%, transparent 100%);
  z-index: 1;
}
.project-note > div::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: var(--transition-slow);
}
.project-note > div:nth-child(1)::after { background-image: url("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1000&q=85"); }
.project-note > div:nth-child(2)::after { background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1000&q=85"); }
.project-note > div:nth-child(3)::after { background-image: url("https://images.unsplash.com/photo-1564501049412-61c2a3083791?auto=format&fit=crop&w=1000&q=85"); }
.project-note > div:hover::after { transform: scale(1.08); }
.project-note > div:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-note strong {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  position: relative;
  z-index: 2;
}
.project-note span {
  font-size: 12px;
  opacity: .85;
  position: relative;
  z-index: 2;
}
.project-note .proj-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}
.project-note > div:hover .proj-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ── Testimonials Section ── */
.testimonials { background: #fff; overflow: hidden; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: "Playfair Display", serif;
  font-size: 80px;
  color: rgba(200,148,66,.15);
  line-height: 1;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.testimonial p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
}
.testimonial-author small {
  color: var(--text-light);
  font-size: 12px;
}

/* ── Clients / Brands ── */
.clients {
  padding: 80px 0;
  background: var(--bg-warm);
  overflow: hidden;
}
.clients-title {
  text-align: center;
  margin-bottom: 40px;
}
.clients-title h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 8px 0 0;
  color: var(--text);
}
.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  opacity: .55;
}
.client-logos .client-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--navy);
  transition: var(--transition);
  white-space: nowrap;
}
.client-logos .client-logo:hover { opacity: 1; color: var(--gold); }

/* ── Blog Section ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-grid article {
  border-radius: var(--radius);
}
.blog-img-wrap {
  position: relative;
}
.blog-grid article {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-grid article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.blog-img-wrap {
  overflow: hidden;
  position: relative;
}
.blog-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-slow);
}
.blog-grid article:hover img { transform: scale(1.06); }
.blog-grid .blog-body {
  padding: 24px 26px 28px;
}
.blog-grid small {
  display: block;
  color: var(--gold);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .14em;
  margin-bottom: 10px;
}
.blog-grid h3 {
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
}
.blog-grid p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-grid a {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.blog-grid a:hover { gap: 12px; color: var(--gold); }

/* ── CTA Section ── */
.cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}
.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.12;
  margin: 0;
}
.cta h2 span { color: var(--navy-deep); }

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.details {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.details a, .details div {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
}
.details a:hover {
  background: var(--bg-warm);
  border-color: var(--border);
}
.details b {
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--gold-dark);
}
.details span { font-size: 14px; font-weight: 700; }
.contact-grid > div > p:not(.eyebrow) { color: var(--text-light); }

/* ── Contact Form ── */
.contact-grid form {
  background: var(--bg-warm);
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-grid label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.contact-grid input,
.contact-grid select,
.contact-grid textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 14px 16px;
  border: 1.5px solid #ddd8ce;
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  font-size: 14px;
  transition: var(--transition);
}
.contact-grid input:focus,
.contact-grid select:focus,
.contact-grid textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,148,66,.12);
}
.contact-grid textarea { min-height: 140px; resize: vertical; }
.contact-grid button {
  cursor: pointer;
  margin-top: 6px;
  width: 100%;
}
.contact-grid form small {
  display: block;
  color: var(--gold-dark);
  margin-top: 12px;
  font-size: 13px;
}

/* ── Footer ── */
footer {
  background: linear-gradient(180deg, var(--navy-deep), #040e1a);
  color: #dbe5ee;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.foot-brand img {
  width: 235px;
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
}
.footer-grid > div > h4 {
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--gold-light);
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer-grid > div > h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-grid a, .footer-grid span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin: 8px 0;
  transition: var(--transition-fast);
}
.footer-grid a:hover { color: var(--gold-light); padding-left: 4px; }
.foot-brand p {
  max-width: 320px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  padding-left: 0;
}
.copyright {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  margin-top: 50px;
  color: #5a6d7f;
  font-size: 12px;
}

/* ── WhatsApp Float ── */
.wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #25d366, #128c42);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  z-index: 80;
  box-shadow: 0 8px 30px rgba(37,211,102,.35);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 40px rgba(37,211,102,.45);
}
.wa svg { width: 18px; height: 18px; }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: #fff;
  border: 1.5px solid rgba(200,148,66,.45);
  border-radius: 50%;
  cursor: pointer;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(4,20,37,.25);
}
.back-to-top svg { width: 20px; height: 20px; display: block; }
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(200,148,66,.45);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .counters { grid-template-columns: repeat(2, 1fr); }
  .counter:nth-child(2) { border-right: none; }
  .counter:nth-child(1), .counter:nth-child(2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 950px) {
  .nav nav {
    display: none;
    position: absolute;
    top: 118px;
    right: 24px;
    left: 24px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 20px 50px rgba(10,31,53,.18);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    gap: 4px;
  }
  .nav nav.open { display: flex; }
  .nav nav a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav nav a::after { display: none; }
  .nav nav a:hover { background: var(--bg-warm); }
  .menu { display: flex !important; }
  .cards, .product-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; gap: 22px; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .project-note { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counters { grid-template-columns: repeat(2, 1fr); margin-top: -30px; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 32px); }
  .topbar-inner {
    font-size: 9px;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0;
  }
  .logo img { max-width: min(200px, 52vw); max-height: 56px; }
  .hero { min-height: 600px; }
  .hero h1 { font-size: 42px; line-height: 1.1; }
  .hero-copy { padding: 60px 0; }
  .hero-copy > p:not(.eyebrow) { font-size: 15px; line-height: 1.7; }
  .trust-row { gap: 14px; flex-wrap: wrap; }
  .trust-row b { font-size: 11px; padding: 6px 12px; }
  .section { padding: 70px 0; }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-head h2 { font-size: 30px; }
  .section-head p { font-size: 14px; }
  .cards, .product-grid, .blog-grid, .why-cards, .testimonial-grid, .row {
    grid-template-columns: 1fr;
  }
  .blog-grid article { border-radius: 14px; }
  .blog-img-wrap img { height: 200px !important; }
  .blog-body { padding: 18px; }
  .blog-body h3 { font-size: 18px; }
  .counters { grid-template-columns: 1fr; }
  .counter { border-right: none !important; border-bottom: 1px solid var(--border) !important; padding: 20px; }
  .counter:last-child { border-bottom: none !important; }
  .mini-stats { flex-wrap: wrap; }
  .cta .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cta h2 { font-size: 28px; }
  .copyright { flex-direction: column; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .wa { right: 14px; bottom: 14px; padding: 12px 16px; font-size: 12px; }
  .back-to-top { bottom: 74px; right: 14px; width: 40px; height: 40px; }
  .foot-brand img { max-width: 180px; max-height: 60px; }
  .service img, .service-img-wrap img { height: 220px; }
  .client-logos { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .client-logo { font-size: 14px; padding: 8px 16px; }
  .testimonial { padding: 24px 20px; }
  .testimonial p { font-size: 14px; }
  .testimonial-author strong { font-size: 14px; }
  .contact-grid { gap: 40px; }
  .details a, .details div { padding: 14px 0; }
  .contact form .row { flex-direction: column; gap: 14px; }
  .about-photo img { height: 200px; }
  .why-grid { gap: 40px; }
}
