:root {
  --navy: #16232e;
  --navy-deep: #0d151c;
  --steel: #3d5266;
  --steel-light: #6b8299;
  --copper: #c1653b;
  --copper-light: #d98357;
  --cream: #f5f1ea;
  --cream-dim: #e8e1d4;
  --white: #ffffff;
  --text: #232a2f;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Public Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.35s ease;
  background: transparent;
}

header.scrolled {
  padding: 12px 0;
  background: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logotype {
  font-family: var(--font-head);
  font-size: 1.9rem;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logotype span { color: var(--copper-light); }

nav.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

nav.main-nav a {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

nav.main-nav a:hover { color: var(--copper-light); }

.nav-cta {
  background: var(--copper);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: 700;
}

.nav-cta:hover { background: var(--copper-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,21,28,0.55) 0%, rgba(13,21,28,0.75) 55%, rgba(13,21,28,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 720px;
  padding-top: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193,101,59,0.18);
  border: 1px solid var(--copper-light);
  color: var(--copper-light);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--copper-light);
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--cream-dim);
  max-width: 560px;
  margin-bottom: 34px;
}

.btn-row { display: flex; gap: 18px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
}
.btn-primary:hover { background: var(--copper-light); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bob 2s infinite ease-in-out;
  z-index: 1;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* TRUST STRIP */
.trust-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 20px 0;
}

.trust-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item i { color: var(--copper-light); }

.stars { color: #e0a638; display: flex; gap: 2px; }

/* SECTION GENERAL */
section { padding: 100px 0; }

.section-label {
  color: var(--copper);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1;
}

.section-intro {
  max-width: 620px;
  color: var(--steel);
  font-size: 1.1rem;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}

.about-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(22,35,46,0.25);
}

.about-text p {
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stat {
  border-left: 3px solid var(--copper);
  padding-left: 16px;
}

.stat .num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
}

.stat .label {
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 600;
}

/* SERVICES */
.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--cream-dim);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(22,35,46,0.12);
  border-color: var(--copper-light);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i { color: var(--copper-light); width: 26px; height: 26px; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--steel);
  line-height: 1.6;
  font-size: 0.98rem;
}

/* MARQUEE - auto scrolling brand strip */
.marquee-wrap {
  background: var(--navy-deep);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: scroll-left 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--steel-light);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.marquee-track span i { color: var(--copper); width: 18px; height: 18px; }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.gallery-grid img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main { grid-row: span 2; height: 100%; }
.gallery-sub { height: 100%; }

/* WHY US */
.why-us {
  background: var(--navy);
  color: var(--cream);
}

.why-us .section-title { color: var(--white); }
.why-us .section-intro { color: var(--steel-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.why-item {
  text-align: center;
  padding: 20px;
}

.why-item i {
  width: 40px;
  height: 40px;
  color: var(--copper-light);
  margin-bottom: 18px;
}

.why-item h4 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--steel-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
}

.contact-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(22,35,46,0.08);
}

.contact-row {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-dim);
}
.contact-row:last-child { border-bottom: none; }

.contact-row i {
  color: var(--copper);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-row h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--steel);
  margin-bottom: 4px;
}

.contact-row p, .contact-row a {
  color: var(--navy);
  font-weight: 600;
  font-size: 1.05rem;
}

.map-frame {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  box-shadow: 0 10px 40px rgba(22,35,46,0.08);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 380px;
}

/* FOOTER */
footer {
  background: var(--navy-deep);
  color: var(--cream-dim);
  padding: 70px 0 30px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-logo span { color: var(--copper-light); }

.footer-tagline {
  color: var(--steel-light);
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-links a { color: var(--cream-dim); font-weight: 600; font-size: 0.92rem; }
.footer-links a:hover { color: var(--copper-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--steel);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }

  nav.main-nav.mobile-open {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78vw;
    max-width: 320px;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    z-index: 1050;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-main { grid-row: auto; }
}

@media (max-width: 600px) {
  .service-grid, .why-grid { grid-template-columns: 1fr; }
  .trust-strip .container { gap: 20px; }
  section { padding: 70px 0; }
}
