/* ============================================================
   GRAVITEX PAINT — style.css
   Palette: Slate Gray #4A5568 | Crisp White #F8F9FA | 
            Deep Navy #1A2B4A | Golden Yellow #F5A623
   Fonts: Playfair Display (display) + DM Sans (body)
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:    #1A2B4A;
  --navy-dk: #0F1B30;
  --slate:   #4A5568;
  --slate-lt:#6B7A8D;
  --white:   #F8F9FA;
  --off-wh:  #EEF0F3;
  --gold:    #F5A623;
  --gold-dk: #D4891A;
  --text:    #2D3748;
  --text-lt: #718096;
  --border:  #E2E8F0;

  --ff-disp: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;

  --radius:  6px;
  --radius-lg: 12px;
  --shadow:  0 4px 20px rgba(26,43,74,.10);
  --shadow-lg: 0 12px 48px rgba(26,43,74,.18);

  --nav-h: 76px;
  --max-w: 1200px;
  --section-py: 96px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 50px;
  padding: 0 24px;
}

.section-py { padding: var(--section-py) 0; }

/* ── Typography Helpers ─────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--ff-disp);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dk);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-dk);
  border-color: var(--navy-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,43,74,.30);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dk);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  transition: background .3s;
}

.navbar.scrolled {
  background: rgba(15,27,48,.97);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
    width: 100%;
}

/* Logo */

.logo-con{
  
}
.nav-logo {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  
}
/* .logo-mark {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-disp);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--navy-dk);
  flex-shrink: 0;
} */
.logo-text {
  /* display: flex; */
  /* flex-direction: column; */
  /* line-height: 1; */
  width: 150px;
}

/* .logo */
/* .logo-name {
  font-family: var(--ff-disp);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-tagline {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
} */

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: right;
}
.nav-links a {
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(248,249,250,.75);
  border-radius: var(--radius);
  transition: all .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

/* Quote button in nav */
.btn-nav-quote {
  padding: 9px 20px;
  background: var(--gold);
  color: var(--navy-dk);
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-left: 12px;
  transition: all .25s;
  border: 2px solid var(--gold);
}
.btn-nav-quote:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dk);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1589939705384-5185137a7f0f?w=1800&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  opacity: .22;
  filter: saturate(0);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15,27,48,.92) 45%,
    rgba(26,43,74,.6) 80%,
    transparent
  );
}

.hero-paint-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: heroFadeUp .9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.35);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(2.8rem, 3.5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(248,249,250,.7);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image{
  width: 60%;
  z-index: 1;
  margin: 0 40px 100px 0;
}

.hero-image img{
  width: 100%;
  border-radius: 20px;
}

.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 0;
  z-index: 1;
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  margin: 10px 40px 0 0;
}
.hero-stat {
  padding: 20px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  display: block;
  font-family: var(--ff-disp);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(248,249,250,.55);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── ABOUT PREVIEW (index) ──────────────────────────────────── */
.about-preview {
  background: var(--white);
  padding: var(--section-py) 0;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy-dk);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-img-badge strong {
  display: block;
  font-family: var(--ff-disp);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about-img-badge span {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,166,35,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.about-feature h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-feature p {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── PRODUCTS SECTION ───────────────────────────────────────── */
.products {
  background: var(--off-wh);
  padding: var(--section-py) 0;
}
.products-header {
  text-align: center;
  margin-bottom: 56px;
}
.products-header .section-sub { margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h3 {
  font-family: var(--ff-disp);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.product-body p {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.product-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.product-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--slate-lt);
}
.product-spec::before {
  content: '✓';
  width: 18px;
  height: 18px;
  background: rgba(245,166,35,.15);
  color: var(--gold-dk);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}

/* ── GALLERY SECTION ────────────────────────────────────────── */
.gallery {
  padding: var(--section-py) 0;
  background: var(--white);
}
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform .5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(15,27,48,.7));
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dk);
  font-size: 1rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,15,25,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: min(90vw, 960px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  animation: lbPop .3s ease;
}
@keyframes lbPop {
  from { opacity:0; transform: scale(.9); }
  to   { opacity:1; transform: scale(1); }
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ── BLOG SECTION ───────────────────────────────────────────── */
.blog {
  background: var(--off-wh);
  padding: var(--section-py) 0;
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-img {
  height: 200px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate-lt);
  margin-bottom: 12px;
}
.blog-category {
  color: var(--gold-dk);
  background: rgba(245,166,35,.1);
  padding: 3px 10px;
  border-radius: 40px;
}
.blog-body h3 {
  font-family: var(--ff-disp);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-body p {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.blog-read-more {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.blog-read-more:hover { gap: 10px; color: var(--gold-dk); }
.blog-read-more::after { content: '→'; }

/* ── CEO SECTION ────────────────────────────────────────────── */
.ceo-section {
  background: var(--navy-dk);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.ceo-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,.08) 0%, transparent 70%);
  pointer-events: none;
}
.ceo-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}
.ceo-img-wrap {
  position: relative;
}
.ceo-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.ceo-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.ceo-img-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .5;
}
.ceo-ribbon {
  position: absolute;
  top: 24px;
  right: -12px;
  background: var(--gold);
  color: var(--navy-dk);
  padding: 8px 20px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 4px 0 0 4px;
}
.ceo-content .section-title {
  color: var(--white);
}
.ceo-name {
  font-family: var(--ff-disp);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.ceo-title-role {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.ceo-bio {
  font-size: 1rem;
  color: rgba(248,249,250,.72);
  line-height: 1.8;
  margin-bottom: 32px;
}
.ceo-quote {
  position: relative;
  padding: 28px 32px;
  background: rgba(255,255,255,.05);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 36px;
}
.ceo-quote::before {
  content: '"';
  font-family: var(--ff-disp);
  font-size: 5rem;
  color: var(--gold);
  opacity: .25;
  position: absolute;
  top: -12px;
  left: 16px;
  line-height: 1;
}
.ceo-quote p {
  font-family: var(--ff-disp);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(248,249,250,.88);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.ceo-socials {
  display: flex;
  gap: 12px;
}
.ceo-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-weight: 700;
  transition: all .2s;
}
.ceo-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dk);
}

/* ── CONTACT / QUOTE SECTION ────────────────────────────────── */
.contact {
  background: var(--white);
  padding: var(--section-py) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--ff-disp);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(26,43,74,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate-lt);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: .95rem;
  color: var(--navy);
  font-weight: 500;
}

/* Quote Form */
.quote-form-wrap {
  background: var(--navy-dk);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.quote-form-wrap h3 {
  font-family: var(--ff-disp);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.quote-form-wrap > p {
  font-size: .9rem;
  color: rgba(248,249,250,.6);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(248,249,250,.65);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--white);
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(248,249,250,.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
}
.form-group select option {
  background: var(--navy-dk);
  color: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--navy-dk);
  border: none;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,166,35,.35);
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: var(--radius);
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 12px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--navy-dk);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: .875rem;
  color: rgba(248,249,250,.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}
.footer-col h4 {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(248,249,250,.45);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(248,249,250,.6);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(248,249,250,.35);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: rgba(248,249,250,.5);
  transition: all .2s;
}
.footer-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dk);
}

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.page-hero {
  background: var(--navy-dk);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1562259929-b4e1fd3aef09?w=1600&auto=format&fit=crop&q=70');
  background-size: cover;
  background-position: center;
  opacity: .12;
}
.page-hero h1 {
  position: relative;
  font-family: var(--ff-disp);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  z-index: 1;
  margin-bottom: 12px;
}
.page-hero p {
  position: relative;
  z-index: 1;
  color: rgba(248,249,250,.65);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(248,249,250,.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span::before { content: '/'; margin-right: 8px; }

.about-story {
  padding: var(--section-py) 0;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}
.about-story-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-story-content h2 {
  font-family: var(--ff-disp);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.25;
}
.about-story-content p {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  text-align: center;
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--ff-disp);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.7;
}

.team-section {
  padding: var(--section-py) 0;
  background: var(--off-wh);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}
.team-info {
  padding: 20px 16px;
}
.team-info h4 {
  font-family: var(--ff-disp);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-info span {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-dk);
}

/* ── BLOG PAGE ──────────────────────────────────────────────── */
.blog-page { padding: var(--section-py) 0; background: var(--white); }
.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.blog-posts { display: flex; flex-direction: column; gap: 36px; }
.blog-post-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-post-img {
  height: 220px;
  overflow: hidden;
}
.blog-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.blog-post-card:hover .blog-post-img img { transform: scale(1.05); }
.blog-post-body {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
}
.blog-post-body h2 {
  font-family: var(--ff-disp);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-post-body p {
  color: var(--slate);
  font-size: .9rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}
.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sidebar-widget {
  background: var(--off-wh);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget h3 {
  font-family: var(--ff-disp);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.sidebar-categories li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories a {
  font-size: .9rem;
  color: var(--slate);
  font-weight: 500;
  transition: color .2s;
}
.sidebar-categories a:hover { color: var(--navy); }
.sidebar-categories span {
  background: var(--navy);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
}

/* ── GALLERY PAGE ───────────────────────────────────────────── */
.gallery-page {
  padding: var(--section-py) 0;
  background: var(--white);
}
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 40px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--slate);
  font-family: var(--ff-body);
  transition: all .2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-page-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-page-item:hover img { transform: scale(1.08); }
.gallery-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,27,48,.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-page-item:hover .gallery-page-overlay { opacity: 1; }
.gallery-page-overlay h4 {
  font-family: var(--ff-disp);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.gallery-page-overlay span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CEO PAGE ───────────────────────────────────────────────── */
.ceo-page {
  padding: var(--section-py) 0;
  background: var(--white);
}
.ceo-page-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.ceo-page-img {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.ceo-page-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.ceo-page-name {
  font-family: var(--ff-disp);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}
.ceo-page-role {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 32px;
}
.ceo-page-content p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 20px;
}
.ceo-page-quote {
  background: var(--navy-dk);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  margin: 36px 0;
  position: relative;
}
.ceo-page-quote::before {
  content: '"';
  font-family: var(--ff-disp);
  font-size: 6rem;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: -8px;
  left: 20px;
  line-height: 1;
}
.ceo-page-quote p {
  font-family: var(--ff-disp);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.milestones {
  background: var(--off-wh);
  padding: var(--section-py) 0;
}
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--navy) 100%);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.timeline-dot {
  position: absolute;
  left: -47px;
  top: 0;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}
.timeline-year {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 6px;
}
.timeline-item h3 {
  font-family: var(--ff-disp);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline-item p {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-page {
  padding: var(--section-py) 0;
  background: var(--white);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.map-placeholder {
  background: var(--off-wh);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  overflow: hidden;
  position: relative;
}
.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65;
  filter: saturate(.4);
}
.map-pin {
  position: absolute;
  font-size: 2rem;
}

/* ── UTILITY ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }

/* Divider */
.gold-divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 24px;
}
.gold-divider.center { margin: 0 auto 24px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid      { grid-template-columns: repeat(2, 1fr); }
  .blog-grid          { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .gallery-grid       { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: auto; }
  .gallery-item:nth-child(5) { grid-column: auto; }
  .ceo-grid           { grid-template-columns: 320px 1fr; gap: 48px; }
  .ceo-page-grid      { grid-template-columns: 320px 1fr; gap: 48px; }
  .team-grid          { grid-template-columns: repeat(2, 1fr); }
  .blog-page-grid     { grid-template-columns: 1fr; }
  .sidebar            { position: static; }
  .blog-post-card     { grid-template-columns: 1fr; }
  .blog-post-img      { height: 200px; }
  .blog-post-body     { padding: 24px; }
  .about-preview-grid { gap: 48px; }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid  { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  /* Nav mobile */
  .nav-links {
    display: none; /* Hide it by default */
    position: absolute;
    top: var(--nav-h);
    left: auto;
    right: 0;
    width: 250px;
    height: calc(100vh - var(--nav-h));
    background: var(--navy-dk);
    flex-direction: column;
    z-index: 1000;
    transition: 0.4s ease-in-out;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }

  

  .nav-links.open { transform: translateY(0); display: flex; }
  .nav-links a { 
    padding: 12px 16px; 
    width: 100%;
    text-align: center;
    padding: 15px;
    color: var(--white) !important;
   }
  .btn-nav-quote { margin: 8px 16px 8px; text-align: center; }
  /* .nav-toggle { display: flex; flex: 1; text-align: right; } */
  
  .nav-toggle {
    display: flex; /* Show the hamburger icon */
    z-index: 1001;
    margin-left: auto;
 }

 .navbar{
  display: flex;
  justify-content: space-between;
 }


  .hero-actions{
    margin-bottom: 20px;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-image{
    display: none;
  }


  .about-preview-grid,
  .about-story-grid,
  .ceo-grid,
  .ceo-page-grid,
  .contact-grid,
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-img-badge {
    bottom: -12px;
    right: 12px;
  }
  .ceo-img-wrap { max-width: 320px; margin: 0 auto; }
  .ceo-page-img { position: static; max-width: 320px; margin: 0 auto 32px; }

  .products-grid { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero-stats {
    display: none;
  }

  .quote-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
}


@media (max-width: 992px) {
  .hero .container {
    display: flex;
    flex-direction: column;
  }

  .hero {
    flex-direction: column; 
    text-align: center;
    padding-top: 40px;
  }

  .hero-image {
    width: 90%;          /* Make image wider on mobile */
    margin: 0 auto 30px; /* Center it and add space below */
    order: -1;           /* THIS MOVES IT TO THE TOP */
  }

  .hero-content {
    order: 2;            /* Moves text below the image */
  }
  
  .hero-stats {
    position: relative;  /* Pulls stats out of absolute positioning so they don't overlap */
    bottom: 0;
    margin: 40px auto;
    border-radius: var(--radius-lg);
  }
}