/* ============================================================
   Westoak Painters — Main Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-bg:          #faf9f7;
  --color-white:       #ffffff;
  --color-dark:        #1a1a1a;
  --color-text:        #3a3a3a;
  --color-muted:       #7a7a7a;
  --color-accent:      #2d5016;   /* deep forest green */
  --color-accent-lt:   #3d6b20;
  --color-gold:        #b8962e;
  --color-gold-lt:     #d4af4a;
  --color-beige:       #f0ebe2;
  --color-border:      #e0dbd2;
  --font-heading:      'Playfair Display', Georgia, serif;
  --font-body:         'Inter', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm:         0 2px 8px rgba(0,0,0,.08);
  --shadow-md:         0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:         0 16px 48px rgba(0,0,0,.18);
  --radius-sm:         6px;
  --radius-md:         12px;
  --radius-lg:         20px;
  --transition:        0.35s cubic-bezier(.4,0,.2,1);
  --max-width:         1200px;
  --nav-height:        72px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--color-text); }

/* ---------- Utility ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: .6rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--color-muted); max-width: 560px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-lt);
  border-color: var(--color-accent-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}
.btn-gold:hover {
  background: var(--color-gold-lt);
  border-color: var(--color-gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Fade-in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fade-up  { animation: fadeInUp .7s ease both; }
.animate-fade-in  { animation: fadeIn .7s ease both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition);
}
.nav-logo .logo-sub {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo .logo-main { color: var(--color-accent); }
#navbar.scrolled .nav-logo .logo-sub  { color: var(--color-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
#navbar.scrolled .nav-links a { color: var(--color-text); }
.nav-links a:hover { color: var(--color-gold); }
#navbar.scrolled .nav-links a:hover { color: var(--color-accent); }

.nav-cta {
  padding: .55rem 1.4rem;
  font-size: .88rem;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .nav-hamburger span { background: var(--color-dark); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 1.5rem 24px 2rem;
  flex-direction: column;
  gap: 1.2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  padding: .4rem 0;
  border-bottom: 1px solid var(--color-border);
}
.nav-mobile .btn { margin-top: .5rem; width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,10,.78) 0%, rgba(20,30,15,.55) 60%, rgba(0,0,0,.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: var(--nav-height);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(184,150,46,.2);
  border: 1px solid rgba(184,150,46,.5);
  color: var(--color-gold-lt);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.hero-title {
  color: var(--color-white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-title span { color: var(--color-gold-lt); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba
(255,255,255,.82);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--color-white);
}
.hero-phone-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.hero-phone-text small { display: block; font-size: .72rem; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; }
.hero-phone-text a { font-size: 1.25rem; font-weight: 700; color: var(--color-white); letter-spacing: .02em; }
.hero-phone-text a:hover { color: var(--color-gold-lt); }

.hero-stats {
  position: absolute;
  bottom: 3rem; left: 0; right: 0;
  z-index: 2;
}
.hero-stats .container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 120px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold-lt);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 100px 0;
  background: var(--color-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold-lt);
  line-height: 1;
}
.about-badge .badge-text {
  font-size: .75rem;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.about-content .section-subtitle { max-width: 100%; margin-bottom: 1.5rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin: 1.8rem 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  font-weight: 500;
}
.about-feature i {
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.owner-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-beige);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  margin-top: 1.8rem;
  border-left: 4px solid var(--color-accent);
}
.owner-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-white);
  flex-shrink: 0;
}
.owner-name { font-weight: 700; font-size: .95rem; }
.owner-title { font-size: .8rem; color: var(--color-muted); }

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 100px 0;
  background: var(--color-beige);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--color-accent);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  font-size: 1.5rem;
  color: var(--color-white);
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h3 { margin-bottom: .6rem; font-size: 1.15rem; }
.service-card p  { font-size: .9rem; color: var(--color-muted); line-height: 1.65; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why {
  padding: 100px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(45,80,22,.25);
  pointer-events: none;
}
#why .section-title { color: var(--color-white); }
#why .section-subtitle { color: rgba(255,255,255,.6); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(184,150,46,.4);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-gold-lt);
}
.why-card h3 { color: var(--color-white); margin-bottom: .5rem; font-size: 1.05rem; }
.why-card p  { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: 100px 0;
  background: var(--color-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,10,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--color-white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews {
  padding: 100px 0;
  background: var(--color-beige);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: .2;
  font-family: Georgia, serif;
  margin-bottom: .5rem;
}
.review-stars { color: #f4b400; font-size: 1rem; margin-bottom: .8rem; letter-spacing: .05em; }
.review-text { font-size: .92rem; color: var(--color-text); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.reviewer {
  display: flex;
  align-items: center;
  gap: .8rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: .9rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .9rem; }
.reviewer-location { font-size: .78rem; color: var(--color-muted); }

/* ============================================================
   PROCESS
   ============================================================ */
#process {
  padding: 100px 0;
  background: var(--color-white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
}
.process-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .step-number {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.1);
}
.process-step h4 { margin-bottom: .4rem; }
.process-step p  { font-size: .88rem; color: var(--color-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 100px 0;
  background: var(--color-beige);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p  { color: var(--color-muted); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text small { display: block; font-size: .72rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .15rem; }
.contact-item-text a, .contact-item-text span { font-weight: 600; font-size: .95rem; color: var(--color-dark); }
.contact-item-text a:hover { color: var(--color-accent); }

/* Form */
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: .04em;
}
.form-group input,
.form-group textarea {
  padding: .85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-dark);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(45,80,22,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
#form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
#form-success .success-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
#form-success h4 { color: var(--color-accent); margin-bottom: .5rem; }
#form-success p  { color: var(--color-muted); font-size: .9rem; }

/* ============================================================
   MAP
   ============================================================ */
#map {
  height: 420px;
  background: var(--color-border);
}
#map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #0f1a0a;
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-main { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--color-white); }
.footer-brand .logo-sub  { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--color-gold); }
.footer-brand p { font-size: .88rem; margin-top: 1rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-social {
  display: flex;
  gap: .8rem;
  margin-top: 1.4rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}
.footer-col h4 {
  color: var(--color-white);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-gold-lt); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .85rem;
}
.footer-contact-item i { color: var(--color-gold); margin-top: .15rem; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--color-gold-lt); }
.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  align-items: flex-end;
}
.floating-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-call { background: var(--color-accent); color: var(--color-white); }
.floating-email { background: var(--color-gold); color: var(--color-white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid, .why-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero-stats { position: static; padding: 2rem 0; }
  .hero-stats .container { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 300px; }
  .about-badge { bottom: -10px; right: 10px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats .container { flex-direction: column; align-items: center; }
  .stat-item { width: 100%; max-width: 200px; }
}
