/* ===========================
   G&W CONTRACTING SERVICES
   Main Stylesheet
   =========================== */

:root {
  --dark: #1a1a1a;
  --charcoal: #2c2c2c;
  --stone: #3d3d3d;
  --accent: #7ab040;
  --accent-light: #8cc450;
  --gold: #8fbe60;
  --light: #f5f3ef;
  --white: #ffffff;
  --text-muted: #999999;
  --border: #3a3a3a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

p {
  color: #d0cdc8;
  line-height: 1.8;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-light);
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.97);
  border-bottom: 2px solid var(--accent);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
  font-family: 'Arial Black', sans-serif;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-main {
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  font-family: 'Arial Black', sans-serif;
  letter-spacing: 1px;
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Arial', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #cccccc;
  font-size: 13px;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 4px !important;
  border-bottom: none !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.92) 0%,
    rgba(44,44,44,0.85) 50%,
    rgba(181,69,27,0.3) 100%
  ),
  url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-logo-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-logo-hero img {
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: 6px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 88px);
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 span {
  color: var(--accent);
}

.hero-tagline {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--gold);
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 18px;
  color: #c0bdb8;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.9;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(181,69,27,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* STATS BAR */
.stats-bar {
  background: var(--charcoal);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 12px;
  font-family: 'Arial', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* SECTION BASE */
.section {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 0 32px 0;
}

.section-divider.center {
  margin: 0 auto 32px;
}

/* SERVICES SECTION */
.services-section {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 40px 32px;
  border-radius: 4px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 14px;
  font-family: 'Arial Black', sans-serif;
}

.service-card p {
  font-size: 15px;
  line-height: 1.8;
}

/* ABOUT SECTION */
.about-section {
  background: var(--charcoal);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 4px;
  display: block;
  object-fit: cover;
  height: 500px;
}

.about-img-placeholder {
  width: 100%;
  height: 500px;
  background: var(--stone);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  border: 2px dashed var(--border);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: white;
  padding: 24px;
  border-radius: 4px;
  text-align: center;
  font-family: 'Arial Black', sans-serif;
}

.about-img-badge .num {
  font-size: 36px;
  display: block;
  line-height: 1;
}

.about-img-badge .label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content {
  padding-right: 20px;
}

.about-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  margin: 28px 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #d0cdc8;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
}

.about-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

/* GALLERY */
.gallery-section {
  background: var(--dark);
}

.gallery-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  background: var(--stone);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(181,69,27,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
}

/* CTA SECTION */
.cta-section {
  background: var(--accent);
  padding: 80px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* CONTACT */
.contact-section {
  background: var(--charcoal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.contact-info h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 24px;
  font-family: 'Arial Black', sans-serif;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 12px;
  font-family: 'Arial', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-size: 16px;
  color: var(--white);
}

.contact-detail-text a {
  color: var(--white);
}

/* FORM */
.contact-form {
  background: var(--stone);
  padding: 48px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 32px;
  font-family: 'Arial Black', sans-serif;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 11px;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

input, textarea, select {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Georgia', serif;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
}

select option {
  background: var(--charcoal);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

input::placeholder, textarea::placeholder {
  color: #666;
}

.form-submit {
  margin-top: 8px;
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 18px;
}

/* FOOTER */
footer {
  background: #111111;
  padding: 60px 24px 30px;
  border-top: 2px solid var(--accent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin: 16px 0 0;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 12px;
  font-family: 'Arial', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #aaa;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

.footer-license {
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 2px;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 4px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--dark);
  border-bottom: 2px solid var(--accent);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--white);
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-content { padding-right: 0; }
  .about-img-badge { right: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 2fr 2fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 70px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .hero-btns { flex-direction: column; align-items: center; }
}
