/* ============================================================
   FABIO'S CUSTOM MASONRY & CONSTRUCTION CORP.
   Design by Aakash Sahu
   Aesthetic: Clean Premium · Navy + Gold · Strong Condensed
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  --navy:       #0a1628;
  --navy2:      #112240;
  --navy3:      #1a3460;
  --gold:       #b8860b;
  --gold2:      #d4a017;
  --gold3:      #f0c040;
  --gold-light: #fdf3dc;
  --white:      #ffffff;
  --off-white:  #f8f9fc;
  --light:      #f0f2f7;
  --border:     #e2e6ef;
  --text:       #0a1628;
  --muted:      #5a6a85;
  --shadow-sm:  0 2px 12px rgba(10,22,40,.07);
  --shadow:     0 6px 32px rgba(10,22,40,.10);
  --shadow-lg:  0 16px 64px rgba(10,22,40,.14);
}

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

/* ── Typography System ── */
h1,h2,h3,h4,h5 { font-family: 'Oswald', sans-serif; line-height: 1.05; letter-spacing: .5px; }

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold2); display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold2); flex-shrink: 0; }

.display-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700; line-height: .95;
  letter-spacing: -.5px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600; line-height: 1;
}
.body-text { font-size: 16px; color: var(--muted); line-height: 1.75; }

/* ── Gold rule accent ── */
.gold-rule {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.gold-rule::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; padding: 14px 32px;
  border: none; cursor: pointer;
  transition: all .28s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12); opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn-gold {
  background: var(--gold2); color: var(--navy);
  box-shadow: 0 4px 20px rgba(184,134,11,.25);
}
.btn-gold:hover { background: var(--gold3); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,134,11,.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.btn-outline-gold {
  background: transparent; color: var(--gold2);
  border: 1px solid var(--gold2);
}
.btn-outline-gold:hover { background: var(--gold2); color: var(--navy); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 28px; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  padding: 11px 0;
  border-bottom: 1px solid rgba(212,160,23,.15);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.topbar-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: rgba(255,255,255,.5);
  font-family: 'Oswald', sans-serif; font-weight: 400; letter-spacing: .5px;
}
.topbar-item i { color: var(--gold2); font-size: 11px; }
.topbar-item strong { color: rgba(255,255,255,.85); font-weight: 500; }
.topbar-socials { display: flex; gap: 14px; }
.topbar-socials a {
  color: rgba(255,255,255,.35); font-size: 13px;
  transition: color .2s;
}
.topbar-socials a:hover { color: var(--gold2); }

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; max-width: 1200px; margin: 0 auto; padding: 0 28px;
}
.logo { display: flex; align-items: center; gap: 0; }
.logo img { height: 58px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links > li > a,
.nav-links > li > span {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted);
  transition: color .2s; cursor: pointer;
  position: relative;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--gold2);
  transform: scaleX(0); transition: transform .25s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--navy); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); min-width: 250px;
  border-top: 2px solid var(--gold2);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  z-index: 200;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; font-size: 14px;
  font-family: 'Oswald', sans-serif; font-weight: 400;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.dropdown-menu a i { color: var(--gold2); font-size: 12px; width: 14px; }
.dropdown-menu a:hover { color: var(--navy); background: var(--off-white); padding-left: 26px; }
.nav-cta { margin-left: 20px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); display: block; transition: all .3s; }
.mobile-menu {
  display: none; background: var(--white);
  border-top: 2px solid var(--gold2);
  padding: 16px 24px 24px;
}
.mobile-menu a {
  display: block; padding: 11px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 16px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold2); }
.mobile-menu.open { display: block; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy); padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .06;
}
/* Geometric accent */
.page-hero::after {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 360px; height: 360px;
  border: 1px solid rgba(212,160,23,.15);
  transform: rotate(12deg);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px,6vw,72px); font-weight: 700;
  color: var(--white); letter-spacing: 1px;
  text-transform: uppercase; margin-top: 12px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.4);
  font-family: 'Oswald', sans-serif; font-weight: 400;
  letter-spacing: 1px; text-transform: uppercase;
}
.breadcrumb a { color: var(--gold2); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold3); }
.breadcrumb i { font-size: 8px; color: rgba(255,255,255,.25); }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo { display: flex; align-items: center; margin-bottom: 18px; }
.footer-logo img { height: 64px; width: auto; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.35); line-height: 1.75; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.fsoc {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: 13px;
  transition: all .2s;
}
.fsoc:hover { background: var(--gold2); border-color: var(--gold2); color: var(--navy); }
.footer-col h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 20px;
}
.footer-links li + li { margin-top: 11px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.footer-links a i { color: var(--gold2); font-size: 9px; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.fc-item { display: flex; gap: 11px; align-items: flex-start; }
.fc-item i { color: var(--gold2); font-size: 12px; margin-top: 3px; flex-shrink: 0; width: 14px; }
.fc-item span, .fc-item a { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.5; }
.fc-item a:hover { color: var(--gold2); }
.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p, .footer-bottom-right a { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-bottom-right { display: flex; gap: 20px; align-items: center; }
.footer-bottom-right a:hover { color: var(--gold2); }
.designer { font-size: 12px; color: rgba(255,255,255,.2); }
.designer span { color: var(--gold2); }

/* ── Visitor Bar ── */
.visitor-bar {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 8px 0;
}
.visitor-bar-inner { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.visitor-count { font-size: 12px; color: rgba(255,255,255,.2); display: flex; align-items: center; gap: 6px; }
.visitor-count i { color: var(--gold2); font-size: 11px; }

/* ── Float Buttons ── */
.float-wrap { position: fixed; right: 20px; bottom: 28px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.float-btn {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(0,0,0,.28); }
.fb-wa { background: #25D366; }
.fb-ph { background: var(--gold2); color: var(--navy); }
.back-top {
  position: fixed; left: 20px; bottom: 28px;
  width: 44px; height: 44px; background: var(--navy);
  color: var(--white); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  box-shadow: var(--shadow); transition: all .3s;
  opacity: 0; visibility: hidden; z-index: 999;
}
.back-top.vis { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--gold2); color: var(--navy); }

/* ── Shared form styles ── */
.form-wrap { background: var(--navy); padding: 48px 44px; }
.form-wrap h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px;
}
.form-wrap .form-sub { font-size: 14px; color: rgba(255,255,255,.4); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { margin-bottom: 14px; }
.fg label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 7px;
  font-family: 'Oswald', sans-serif;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white); font-family: 'Nunito Sans', sans-serif;
  font-size: 15px; outline: none;
  transition: border-color .2s;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.2); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold2); }
.fg select { cursor: pointer; }
.fg select option { background: var(--navy2); color: var(--white); }
.fg textarea { resize: vertical; min-height: 120px; }
.check-row { display: flex; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; }
.fcheck { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.5); cursor: pointer; }
.fcheck input { accent-color: var(--gold2); width: 15px; height: 15px; }
.form-msg { display: none; padding: 13px 16px; font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.submit-btn { width: 100%; padding: 16px; font-size: 15px; letter-spacing: 3px; }

/* ── CTA Banner ── */
.cta-band {
  background: var(--gold2); padding: 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; left: -40px; top: -40px;
  width: 200px; height: 200px;
  border: 1px solid rgba(255,255,255,.15);
  transform: rotate(20deg);
}
.cta-band-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 28px;
  padding: 36px 0; flex-wrap: wrap;
}
.cta-band h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px,2.5vw,32px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--navy);
}
.cta-band p { font-size: 15px; color: rgba(10,22,40,.65); margin-top: 4px; }
.cta-band .btn-navy { flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-right { flex-direction: column; gap: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
