/* ============================================================
   Premo Garage Doors — Shared Stylesheet
   ============================================================ */

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

:root {
  --orange: #E8630A;
  --orange-lt: #F97316;
  --orange-dim: #C0510A;
  --navy: #0F1F3D;
  --navy-mid: #1A3260;
  --cream: #FAF8F5;
  --warm-gray: #F0EDE8;
  --text: #1C1C1C;
  --muted: #6B6B6B;
  --white: #FFFFFF;
  --radius: 6px;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 20px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--orange);
  color: white;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--orange-dim); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: white;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.3);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-wa {
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(15,31,61,0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: var(--nav-h);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: var(--orange-dim); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all .3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  padding: 20px 5%;
  z-index: 199;
  flex-direction: column;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: block;
  transition: color .2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--orange); }
.nav-mobile .mob-cta {
  background: var(--orange);
  color: white;
  padding: 14px 20px;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 700;
  margin-top: 14px;
  border-bottom: none;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: var(--navy);
  padding: calc(var(--nav-h) + 56px) 5% 56px;
  border-bottom: 3px solid var(--orange);
}
.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: 2px;
  color: white;
  line-height: 1;
  margin-bottom: 12px;
}
.page-header h1 span { color: var(--orange); }
.page-header p { font-size: 16px; color: rgba(255,255,255,.6); max-width: 520px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border-bottom: 3px solid var(--orange);
}
.trust-item { color: white; font-size: 13px; font-weight: 600; letter-spacing: .5px; }
.trust-item::before { content: "✓ "; color: var(--orange); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,31,61,0.82) 0%, rgba(15,31,61,0.45) 55%, rgba(15,31,61,0.15) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 5%; max-width: 600px; }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 7.5vw, 100px);
  line-height: .93;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.hero-title span { color: var(--orange); display: block; }
.hero-sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 440px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); padding: 96px 5%; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 32px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3px; }
.service-card { background: white; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,31,61,.12); }
.service-card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.service-card-body { padding: 28px 24px 24px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 18px; }
.service-link { color: var(--orange); font-size: 13px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.service-link:hover { gap: 10px; }

/* ============================================================
   GALLERY / OUR WORK
   ============================================================ */
.our-work { background: var(--navy); padding: 96px 5%; }
.our-work .section-title { color: white; }
.our-work .section-sub { color: rgba(255,255,255,.55); }
.work-section { margin-bottom: 64px; }
.work-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.work-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.work-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.work-item.wide { grid-column: span 2; aspect-ratio: 16/7; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, opacity .4s; opacity: .85; }
.work-item:hover img { transform: scale(1.04); opacity: 1; }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,31,61,.8) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 18px;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-label { color: white; font-size: 13px; font-weight: 600; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lb-close { position: absolute; top: 20px; right: 28px; color: white; font-size: 36px; cursor: pointer; line-height: 1; background: none; border: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: white; padding: 96px 5%; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); }
.about-text p { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 18px; }
.about-text p strong { color: var(--navy); }
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.about-value { display: flex; gap: 14px; padding: 14px 16px; background: var(--cream); border-left: 3px solid var(--orange); }
.about-value-text { font-size: 14px; line-height: 1.6; color: var(--text); }
.about-value-text strong { color: var(--navy); display: block; margin-bottom: 2px; font-size: 14px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--warm-gray); padding: 96px 5%; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.proc-item { background: white; padding: 36px 28px; border-top: 3px solid var(--warm-gray); transition: border-color .2s; }
.proc-item:hover { border-top-color: var(--orange); }
.proc-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: rgba(232,99,10,.15); line-height: 1; margin-bottom: 16px; }
.proc-item h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.proc-item p { font-size: 13px; line-height: 1.7; color: var(--muted); }

/* ============================================================
   CONTACT / ENQUIRE
   ============================================================ */
.enquire { background: var(--navy); padding: 96px 5%; }
.enquire-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.enquire-left .section-title { color: white; }
.enquire-left .section-sub { color: rgba(255,255,255,.6); }

.contact-info { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-info-item .ci-icon { font-size: 18px; margin-top: 1px; }
.contact-info-item .ci-text { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.5; }
.contact-info-item .ci-text a { color: var(--orange-lt); text-decoration: none; }
.contact-info-item .ci-text a:hover { text-decoration: underline; }

.contact-ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.form-wrap { background: white; padding: 40px; border-radius: var(--radius); }
.form-row { margin-bottom: 18px; }
label { display: block; font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: .5px; text-transform: uppercase; }
.fi { width: 100%; padding: 12px 14px; border: 1.5px solid #E0DDD6; border-radius: var(--radius); font-size: 14px; font-family: 'Inter', sans-serif; background: var(--cream); transition: border-color .2s; color: var(--text); }
.fi:focus { border-color: var(--orange); background: white; outline: none; }
select.fi { appearance: none; cursor: pointer; }
textarea.fi { resize: vertical; min-height: 90px; }
.door-types { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 6px; }
.door-type-btn {
  padding: 9px 10px; border: 1.5px solid #E0DDD6; border-radius: var(--radius);
  font-size: 12px; font-weight: 500; cursor: pointer; background: var(--cream);
  transition: all .2s; text-align: center; color: var(--text);
}
.door-type-btn.active { border-color: var(--orange); background: rgba(232,99,10,.06); color: var(--orange); }
.btn-submit {
  width: 100%; background: var(--orange); color: white; border: none; padding: 15px;
  border-radius: var(--radius); font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all .25s; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 8px; font-family: 'Inter', sans-serif;
}
.btn-submit:hover { background: var(--orange-dim); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .6; cursor: default; transform: none; }
.form-success {
  display: none; color: var(--navy); font-size: 14px; font-weight: 600;
  margin-top: 14px; text-align: center; padding: 14px;
  background: #e6f4ea; border-radius: var(--radius); border: 1px solid #a8d5b0;
}
.form-error {
  display: none; color: #c0392b; font-size: 13px;
  margin-top: 10px; text-align: center; padding: 12px;
  background: #fdecea; border-radius: var(--radius); border: 1px solid #f5c6c0;
}

/* ============================================================
   HOME — CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--orange);
  padding: 72px 5%;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  letter-spacing: 2px;
  color: white;
  margin-bottom: 14px;
}
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary { background: white; color: var(--orange); }
.cta-banner .btn-primary:hover { background: var(--cream); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #080f1e; padding: 60px 5% 36px; }
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.ft-brand { display: flex; flex-direction: column; gap: 0; }
.ft-logo { height: 52px; width: auto; margin-bottom: 18px; }
.ft-tagline { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 2px; color: var(--orange); margin-bottom: 12px; }
.ft-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 260px; }
.ft-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.ft-contact a { color: rgba(255,255,255,.55); font-size: 13px; text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 8px; }
.ft-contact a:hover { color: var(--orange-lt); }
.ft-col-t { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 16px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-links a { color: rgba(255,255,255,.5); font-size: 13px; text-decoration: none; transition: color .2s; }
.ft-links a:hover { color: var(--orange); }
.ft-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap; gap: 10px;
}
.ft-copy { font-size: 11px; color: rgba(255,255,255,.22); }
.ft-powered { font-size: 11px; color: rgba(255,255,255,.35); }
.ft-powered span { color: var(--orange-lt); }

/* ============================================================
   TERMS
   ============================================================ */
.terms-section { background: #080f1e; padding: 48px 5%; border-top: 1px solid rgba(255,255,255,.06); }
.terms-section h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--orange); letter-spacing: 2px; margin-bottom: 20px; }
.terms-section .terms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 960px; }
.terms-section .term-item { }
.terms-section .term-item strong { display: block; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 700; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.terms-section .term-item p { color: rgba(255,255,255,.45); font-size: 13px; line-height: 1.7; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 5% 80px;
  background: var(--cream);
}
.thankyou-box {
  background: white; border-radius: var(--radius);
  padding: 56px 48px; max-width: 520px; width: 100%; text-align: center;
  box-shadow: 0 8px 40px rgba(15,31,61,.08);
}
.thankyou-icon { font-size: 56px; margin-bottom: 20px; }
.thankyou-box h1 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--navy); letter-spacing: 2px; margin-bottom: 12px; }
.thankyou-box p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 8px; }
.thankyou-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 96px 5%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-inner,
  .enquire-inner,
  .ft-top { grid-template-columns: 1fr; gap: 40px; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-item.wide { grid-column: span 2; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about-img { height: 320px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .process-grid { grid-template-columns: 1fr; }
  .door-types { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; gap: 32px; }
  .form-wrap { padding: 24px 20px; }
  section { padding: 64px 5%; }
  .hero-title { font-size: 52px; }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON (all pages)
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 150;
  background: #25D366;
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,.3); }
.wa-float svg { width: 28px; height: 28px; }
