/* ==========================================================================
   Gunners Painting — Base
   ========================================================================== */
:root {
  --navy: #0b1524;
  --navy-2: #101d33;
  --charcoal: #14181f;
  --orange: #e8641a;
  --orange-light: #f2a13e;
  --pink: #e63b7a;
  --purple: #9b2fae;
  --lime: #c6e21e;
  --gradient: linear-gradient(90deg, var(--orange) 0%, var(--pink) 55%, var(--purple) 100%);
  --text-dark: #16202e;
  --text-mid: #4a5568;
  --text-light: #e9edf3;
  --bg-alt: #f5f6f8;
  --border: #e5e8ee;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(11, 21, 36, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 21, 36, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

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

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

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

.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); color: var(--text-light); }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.section-eyebrow-light { color: var(--lime); -webkit-text-fill-color: var(--lime); }

.section-title { font-size: 36px; margin-bottom: 18px; max-width: 760px; }
.section-title-light { color: #fff; }

.section-sub { font-size: 17px; color: var(--text-mid); max-width: 640px; margin-bottom: 20px; }
.section-sub-light { color: #b9c3d1; }

/* Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 59, 122, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(230, 59, 122, 0.36); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Top bar
   ========================================================================== */
#top-bar { background: var(--charcoal); color: #cfd6e0; font-size: 13.5px; }
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 38px;
}
.top-bar-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.top-bar-phone { font-weight: 700; color: var(--orange-light); }
.top-bar-phone:hover { color: var(--lime); }

/* Header
   ========================================================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 21, 36, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 18px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; height: 100%; }
.logo-img { height: 54px; width: auto; }

#main-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
#main-nav a {
  color: #dfe4ec;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 2px;
}
#main-nav a:hover { color: #fff; }
#main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gradient);
  transition: width 0.2s ease;
}
#main-nav a:hover::after { width: 100%; }

.header-cta { margin-left: 12px; padding: 11px 22px; }

#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
#nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,15,26,0.88) 0%, rgba(9,15,26,0.82) 45%, rgba(9,15,26,0.94) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 80px 24px; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.hero h1 { font-size: 52px; max-width: 780px; margin-bottom: 22px; color: #fff; }
.hero-sub { font-size: 18px; max-width: 620px; color: #cbd3de; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: 13.5px; color: #aab4c2; margin-top: 4px; letter-spacing: 0.02em; }

/* Trust strip
   ========================================================================== */
.trust-strip { background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.trust-strip-inner { padding: 22px 24px; text-align: center; }
.trust-strip-inner p { color: var(--text-mid); font-size: 15px; font-weight: 500; }

/* GC Partners strip
   ========================================================================== */
.gc-strip { background: var(--navy); padding: 40px 0; }
.gc-strip-label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8f9bab;
  margin-bottom: 22px;
}
.gc-strip-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.gc-strip-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #dfe4ec;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.gc-strip-item:hover { color: var(--lime); }

@media (max-width: 640px) {
  .gc-strip-list { gap: 28px; }
  .gc-strip-item { font-size: 17px; }
}

/* Services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-icon { font-size: 30px; margin-bottom: 16px; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--text-mid); font-size: 15px; }

/* About / Why Us
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.about-list { list-style: none; margin: 26px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
  padding-left: 30px;
  position: relative;
  color: #d2d9e3;
  font-size: 15.5px;
}
.about-list li::before {
  content: '✔';
  position: absolute;
  left: 0; top: 1px;
  color: var(--lime);
  font-weight: 700;
}
.about-list strong { color: #fff; }

.about-media { position: relative; height: 460px; }
.about-img {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.about-img-1 { width: 72%; height: 340px; top: 0; left: 0; z-index: 1; }
.about-img-2 { width: 58%; height: 240px; bottom: 0; right: 0; z-index: 2; border: 5px solid var(--navy); }

/* Featured project gallery
   ========================================================================== */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 40px;
}
.project-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.35s ease;
}
.project-gallery img:hover { transform: scale(1.035); }
.gspan-2 { grid-column: span 2; }

/* Gallery grid
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: translateY(-4px); }

/* Residential subsection (secondary, inside Gallery)
   ========================================================================== */
.residential-subsection {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.residential-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.gallery-grid-small {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-grid-small img { height: 190px; }

@media (max-width: 720px) {
  .gallery-grid-small { grid-template-columns: repeat(2, 1fr); }
}

/* CTA banner
   ========================================================================== */
.cta-banner { position: relative; padding: 100px 0; color: #fff; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,21,36,0.94) 20%, rgba(155,47,174,0.75) 100%); }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-content h2 { color: #fff; font-size: 34px; margin-bottom: 14px; }
.cta-content p { color: #dfe4ec; font-size: 17px; margin-bottom: 32px; }
.cta-content .hero-actions { justify-content: center; margin-bottom: 0; }

/* Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.contact-details { list-style: none; margin: 30px 0; display: flex; flex-direction: column; gap: 18px; }
.contact-details li { display: flex; flex-direction: column; gap: 3px; }
.contact-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: #9aa4b2; font-weight: 700; }
.contact-details a { font-size: 17px; font-weight: 600; color: var(--text-dark); }
.contact-details a:hover { color: var(--orange); }

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fbe6;
  color: #3d6b0f;
  border: 1px solid #d3edb8;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.google-badge:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.contact-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-family: inherit;
  font-size: 14.5px;
  background: #fff;
  color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 100, 26, 0.12);
}
.form-submit { width: 100%; margin-top: 4px; }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note { text-align: center; font-size: 13px; color: var(--text-mid); margin-top: 14px; }
.form-status { text-align: center; font-size: 14px; font-weight: 600; margin-top: 14px; min-height: 1px; }
.form-status-success { color: #3d6b0f; }
.form-status-error { color: #b3261e; }

/* Footer
   ========================================================================== */
#site-footer { background: var(--charcoal); color: #b7c0cd; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 64px 24px 40px;
}
.footer-logo { height: 46px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: #8f99a8; max-width: 320px; }
.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; }
.footer-bottom p { font-size: 13px; color: #6d7686; text-align: center; }

/* Mobile call button
   ========================================================================== */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 22px; right: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(230, 59, 122, 0.4);
  z-index: 90;
}

/* Lightbox
   ========================================================================== */
.project-gallery img,
.gallery-grid img { cursor: zoom-in; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(9, 15, 26, 0.94);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: min(90vw, 1100px);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  text-align: center;
  color: #e9edf3;
  font-size: 14px;
  padding: 0 60px;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 16px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 24px; }
  .lightbox-caption { font-size: 12.5px; bottom: 14px; padding: 0 46px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { height: 380px; margin-top: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .project-gallery { grid-template-columns: repeat(2, 1fr); }
  .gspan-2 { grid-column: span 2; }
}

@media (max-width: 720px) {
  .top-bar-item:nth-child(2) { display: none; }
  #main-nav { display: none; }
  .header-cta { display: none; }
  #nav-toggle { display: flex; }
  #main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 18px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { gap: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .project-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .mobile-call-btn { display: flex; }
  .cta-content h2 { font-size: 26px; }
}
