/* =====================================================
   Brenwood Wallpaper Pros — Main Stylesheet
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --navy:    #0d2340;
  --navy-lt: #163459;
  --orange:  #e87722;
  --orange-h:#d06010;
  --white:   #ffffff;
  --gray:    #4a5568;
  --gray-lt: #f5f7fa;
  --border:  #dde3ec;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(13,35,64,.12);
  --trans:   .25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-sub { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-h);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-lt);
  transform: translateY(-2px);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--orange); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(13,35,64,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 26px; height: 26px; fill: var(--orange); }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.logo-tagline { font-size: .72rem; color: var(--gray); letter-spacing: .05em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--trans);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,35,64,.82) 0%, rgba(13,35,64,.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,119,34,.2);
  border: 1px solid rgba(232,119,34,.5);
  color: #ffc07a;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.hero h1 span { color: var(--orange); }
.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item .icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.trust-item .label { font-size: .82rem; color: rgba(255,255,255,.8); font-weight: 600; }

/* ---------- Highlights Strip ---------- */
.highlights {
  background: var(--navy);
  padding: 28px 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
}
.highlight-item {
  background: var(--navy);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background var(--trans);
}
.highlight-item:hover { background: var(--navy-lt); }
.hi-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.hi-text strong { display: block; color: var(--white); font-size: .95rem; font-weight: 700; }
.hi-text span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ---------- About ---------- */
.about { padding: 96px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: .9rem;
  line-height: 1.3;
}
.about-badge span { display: block; font-size: 1.6rem; font-weight: 900; }
.about-content .section-sub { margin-bottom: 28px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.stat-box {
  background: var(--gray-lt);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.stat-box .num { font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-box .lbl { font-size: .78rem; color: var(--gray); margin-top: 4px; }

/* ---------- Services ---------- */
.services { padding: 96px 0; background: var(--gray-lt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13,35,64,.16);
  border-top-color: var(--orange);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(232,119,34,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* ---------- Why Choose ---------- */
.why { padding: 96px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.why-item {
  display: flex;
  gap: 18px;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.why-item:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(232,119,34,.12);
}
.why-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.why-item p  { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ---------- Process ---------- */
.process { padding: 96px 0; background: var(--navy); }
.process .section-title { color: var(--white); }
.process .section-sub   { color: rgba(255,255,255,.7); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: rgba(255,255,255,.15);
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(232,119,34,.2);
}
.step-icon { font-size: 1.4rem; margin-bottom: 14px; color: rgba(255,255,255,.6); }
.step h3 { font-size: .95rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.step p  { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.55; }

/* ---------- Gallery ---------- */
.gallery { padding: 96px 0; background: var(--gray-lt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 14px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,35,64,.45);
  opacity: 0;
  transition: opacity var(--trans);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- Contact ---------- */
.contact { padding: 96px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.contact-info p  { color: var(--gray); margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.cd-icon {
  width: 44px; height: 44px;
  background: rgba(232,119,34,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cd-text strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); margin-bottom: 2px; }
.cd-text a, .cd-text span { font-size: .95rem; color: var(--navy); font-weight: 600; }
.cd-text a:hover { color: var(--orange); }

/* Form */
.contact-form-wrap {
  background: var(--gray-lt);
  border-radius: 14px;
  padding: 40px;
}
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .93rem;
  color: var(--gray);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,119,34,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; justify-content: center; }

#form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* ---------- Map ---------- */
.map-section { background: var(--gray-lt); }
.map-section .container { padding: 0 24px 0; }
.map-header { text-align: center; padding: 64px 0 40px; }
.map-embed {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 64px;
}
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-name { color: var(--white); font-size: 1.2rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .88rem; margin-top: 16px; line-height: 1.7; }
.footer-col h4 {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .88rem; }
.footer-contact-item .fc-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Mobile Nav Overlay ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  transition: color var(--trans);
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid  { grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .form-row    { grid-template-columns: 1fr; }
  .top-bar-left { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .about-stats { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}
