/*
Theme Name: Group Tile Services
Theme URI: https://gts-htx.com
Author: Group Tile Services
Description: Premium dark luxury WordPress theme for Group Tile Services — tile, hardwood, and countertop contractor in Houston, TX.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gts
*/

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

:root {
  --bg: #0a0a0a;
  --card: #121212;
  --primary: #d4a548;
  --primary-hover: #e0b55a;
  --text: #ffffff;
  --text-muted: #a3a3a3;
  --text-dim: #737373;
  --border: #262626;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== Typography ===== */
.font-heading { font-family: var(--font-heading); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }

.eyebrow {
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }

.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title .eyebrow { margin-bottom: 0.75rem; }

/* ===== Header / Nav ===== */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 999; }

.top-bar {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.7rem;
  color: var(--text-muted);
}
.top-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
}
@media (min-width: 640px) {
  .top-bar .container { flex-direction: row; justify-content: space-between; }
}
.top-bar .contact-info { display: flex; gap: 1rem; }
.top-bar a { display: inline-flex; align-items: center; gap: 0.375rem; transition: color 0.2s; }
.top-bar a:hover { color: var(--primary); }

.main-nav {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  transition: background 0.3s;
}
.main-nav.scrolled { background: rgba(0, 0, 0, 0.95); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark {
  width: 2.75rem; height: 2.75rem;
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  transform: rotate(45deg);
  transition: transform 0.5s;
}
.logo-mark span {
  transform: rotate(-45deg);
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  transition: transform 0.5s;
}
.logo:hover .logo-mark { transform: rotate(225deg); }
.logo:hover .logo-mark span { transform: rotate(-225deg); }
.logo-text { font-family: var(--font-heading); color: #fff; font-size: 1.05rem; letter-spacing: 0.02em; }
@media (max-width: 639px) { .logo-text { display: none; } }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #000;
  padding: 0.625rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: filter 0.2s;
}
.nav-cta:hover { filter: brightness(1.1); }

.mobile-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; }
@media (max-width: 767px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .mobile-toggle { display: block; }
}

.mobile-menu {
  display: none;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
}
.mobile-menu a.active { color: var(--primary); }
.mobile-menu .nav-cta { margin-top: 0.75rem; justify-content: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary { background: var(--primary); color: #000; }
.btn-primary:hover { filter: brightness(1.1); }
.btn-outline { background: transparent; color: #fff; border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #000; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 768px;
}
.hero-content h1 { color: #fff; margin-bottom: 1.5rem; }
.hero-content p { color: #d4d4d4; font-size: 1.1rem; margin-bottom: 2rem; max-width: 36rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero-indicators button {
  height: 4px;
  width: 20px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-indicators button.active { width: 40px; background: var(--primary); }

/* ===== Trust Badges ===== */
.trust-badges {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.trust-badges .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 1rem;
}
@media (min-width: 768px) { .trust-badges .container { grid-template-columns: repeat(4, 1fr); } }
.trust-badge { display: flex; align-items: center; gap: 0.75rem; justify-content: center; }
.trust-badge svg { color: var(--primary); flex-shrink: 0; }
.trust-badge span { color: #fff; font-size: 0.8rem; font-weight: 600; }

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card { background: var(--card); border: 1px solid rgba(255,255,255,0.05); transition: border-color 0.3s; }
.service-card:hover { border-color: rgba(212, 165, 72, 0.3); }
.service-card-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img .num {
  position: absolute; top: 1rem; left: 1rem;
  width: 2rem; height: 2rem;
  background: var(--primary); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { color: #fff; margin-bottom: 0.75rem; }
.service-card-body p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1.25rem; }
.service-card-body .learn-more {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: var(--primary); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  transition: gap 0.2s;
}
.service-card-body .learn-more:hover { gap: 0.75rem; }

/* ===== Stats ===== */
.stats-section { background: #000; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.stats-section .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 4rem 1rem;
}
@media (min-width: 768px) { .stats-section .container { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat .value { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: var(--primary); }
.stat .label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== About Preview ===== */
.about-preview .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 1rem;
}
@media (min-width: 1024px) { .about-preview .container { grid-template-columns: 1fr 1fr; } }
.about-preview-img { aspect-ratio: 4/3; overflow: hidden; }
.about-preview-img img { width: 100%; height: 100%; object-fit: cover; }
.about-preview-text h2 { color: #fff; margin: 0.75rem 0 1.5rem; }
.about-preview-text p { color: var(--text-muted); margin-bottom: 1rem; }

/* ===== Testimonials ===== */
.testimonials { background: #000; border-top: 1px solid rgba(255,255,255,0.1); }
.testimonials .container { padding: 5rem 1rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial { background: var(--card); border: 1px solid rgba(255,255,255,0.05); padding: 2rem; }
.testimonial .stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial .stars svg { color: var(--primary); }
.testimonial .quote { color: #d4d4d4; font-style: italic; margin-bottom: 1.5rem; }
.testimonial .name { color: #fff; font-weight: 600; font-size: 0.875rem; }
.testimonial .role { color: var(--primary); font-size: 0.75rem; }

/* ===== CTA Section ===== */
.cta-section { position: relative; padding: 5rem 0; overflow: hidden; }
.cta-section .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.cta-section .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.cta-section .container { position: relative; z-index: 2; text-align: center; max-width: 768px; }
.cta-section h2 { color: #fff; margin-bottom: 1.5rem; }
.cta-section p { color: #d4d4d4; margin-bottom: 2rem; }
.cta-section .buttons { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 640px) { .cta-section .buttons { flex-direction: row; justify-content: center; } }

/* ===== Page Header ===== */
.page-header { background: #000; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 5rem 0; text-align: center; }
.page-header .eyebrow { margin-bottom: 0.75rem; }
.page-header h1 { color: #fff; margin-bottom: 1.5rem; }
.page-header p { color: var(--text-muted); max-width: 42rem; margin: 0 auto; }
.page-header .divider { width: 4rem; height: 1px; background: var(--primary); margin: 2rem auto 0; }

/* ===== Service Detail (alternating) ===== */
.service-detail { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .service-detail { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.service-detail.reverse .service-detail-img { order: 2; }
@media (max-width: 1023px) { .service-detail.reverse .service-detail-img { order: 0; } }
.service-detail-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-img .num {
  position: absolute; top: 1rem; left: 1rem;
  width: 2.5rem; height: 2.5rem;
  background: var(--primary); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.service-detail-body h2 { color: #fff; margin-bottom: 1rem; }
.service-detail-body p { color: var(--text-muted); margin-bottom: 1.5rem; }
.service-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 2rem; }
.service-feature { display: flex; align-items: center; gap: 0.5rem; }
.service-feature svg { color: var(--primary); flex-shrink: 0; }
.service-feature span { color: #d4d4d4; font-size: 0.875rem; }

/* ===== Gallery ===== */
.gallery-filter {
  position: sticky;
  top: 100px;
  background: var(--bg);
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 0;
}
.gallery-filter .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.gallery-filter button {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-filter button.active, .gallery-filter button:hover {
  background: var(--primary); color: #000; border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.gallery-item { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--card); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent, transparent);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem;
  transform: translateY(0.5rem); opacity: 0; transition: all 0.3s;
}
.gallery-item:hover .info { transform: translateY(0); opacity: 1; }
.gallery-item .info .cat { color: var(--primary); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; }
.gallery-item .info h3 { color: #fff; font-size: 0.875rem; font-weight: 600; margin-top: 0.25rem; }
.gallery-item .info p { color: var(--text-muted); font-size: 0.75rem; }

/* ===== About Page ===== */
.about-who .container {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
  padding: 5rem 1rem;
}
@media (min-width: 1024px) { .about-who .container { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-who h2 { color: #fff; margin: 0.75rem 0 1.5rem; }
.about-who p { color: var(--text-muted); margin-bottom: 1rem; }
.about-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.about-stat {
  background: var(--card); border: 1px solid rgba(255,255,255,0.05);
  aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
}
.about-stat .value { font-family: var(--font-heading); font-size: clamp(2rem, 3vw, 3rem); color: var(--primary); }
.about-stat .label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

.values-section { background: #000; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.values-section .container { padding: 5rem 1rem; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card { background: var(--card); border: 1px solid rgba(255,255,255,0.05); padding: 2rem; text-align: center; }
.value-card .icon-box {
  width: 3.5rem; height: 3.5rem; border: 1px solid rgba(212,165,72,0.3);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.value-card .icon-box svg { color: var(--primary); }
.value-card h3 { color: #fff; margin-bottom: 0.75rem; }
.value-card p { color: var(--text-muted); font-size: 0.875rem; }

.service-areas .container {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
  padding: 5rem 1rem;
}
@media (min-width: 1024px) { .service-areas .container { grid-template-columns: 1fr 1fr; } }
.service-areas-img { aspect-ratio: 4/3; overflow: hidden; }
.service-areas-img img { width: 100%; height: 100%; object-fit: cover; }
.service-areas h2 { color: #fff; margin: 0.75rem 0 1.5rem; }
.service-areas p { color: var(--text-muted); margin-bottom: 2rem; }
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
.area-item { display: flex; align-items: center; gap: 0.5rem; }
.area-item .dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }
.area-item span { color: #d4d4d4; font-size: 0.875rem; }

/* ===== Contact ===== */
.contact-section .container {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding: 4rem 1rem;
}
@media (min-width: 1024px) { .contact-section .container { grid-template-columns: 1fr 2fr; } }

.contact-info-card { background: var(--card); border: 1px solid rgba(255,255,255,0.05); padding: 2rem; }
.contact-info-card h2 { color: #fff; margin-bottom: 2rem; font-size: 1.25rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 2rem; }
.contact-info-item .icon-box {
  width: 2.5rem; height: 2.5rem; border: 1px solid rgba(212,165,72,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item .icon-box svg { color: var(--primary); }
.contact-info-item .label { font-size: 0.65rem; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-info-item .value { color: #fff; font-size: 0.875rem; }
.contact-info-item .value-sub { color: var(--text-muted); font-size: 0.875rem; }
.contact-info-card .note { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.75rem; color: var(--text-dim); }

.contact-form-card { background: var(--card); border: 1px solid rgba(255,255,255,0.05); padding: 2.5rem; }
.form-section-label { color: var(--primary); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 1rem; margin-top: 2rem; }
.form-section-label:first-of-type { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-field label { display: block; font-size: 0.65rem; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--card); border: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1rem; font-size: 0.875rem; color: #fff;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--primary); outline: none; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #525252; }
.form-field textarea { resize: none; }
.form-success { text-align: center; padding: 4rem 0; }
.form-success .check { width: 4rem; height: 4rem; border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.form-success .check svg { color: var(--primary); }
.form-success h3 { color: #fff; font-size: 1.75rem; margin-bottom: 1rem; }
.form-success p { color: var(--text-muted); max-width: 24rem; margin: 0 auto; }
.form-error { background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.3); color: #fca5a5; padding: 1rem; font-size: 0.875rem; margin-bottom: 1rem; }

/* ===== Footer ===== */
.site-footer { background: #000; border-top: 1px solid rgba(255,255,255,0.1); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; margin-top: 1rem; line-height: 1.6; }
.footer-col h4 { color: var(--primary); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.875rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--text-muted); font-size: 0.875rem; margin-bottom: 0.75rem; }
.footer-contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-areas { display: flex; flex-wrap: wrap; gap: 0.5rem 0.75rem; }
.footer-areas span { color: var(--text-muted); font-size: 0.75rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 2.25rem; height: 2.25rem; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  font-size: 0.75rem; color: #525252;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ===== Main content offset for fixed header ===== */
main { padding-top: 100px; }
.front-page main { padding-top: 0; }

/* ===== Utility ===== */
.section-pad { padding: 5rem 0; }
@media (min-width: 768px) { .section-pad { padding: 7rem 0; } }
.bg-black { background: #000; }

/* ===== Custom Logo ===== */
.logo img,
.footer-brand img.custom-logo {
  max-height: 3rem;
  width: auto;
  padding: 0.25rem;
}
.footer-brand img.custom-logo {
  max-height: 2.5rem;
}
@media (max-width: 639px) {
  .logo img { max-height: 2.5rem; }
}

/* ===== Floating WhatsApp Button ===== */
.gts-whatsapp-btn {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 998;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.gts-whatsapp-btn:hover { transform: scale(1.1); color: #fff; }
@media (min-width: 768px) {
  .gts-whatsapp-btn { bottom: 1.5rem; right: 1.5rem; }
}

/* ===== Mobile Sticky CTA Bar ===== */
.gts-mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(212,165,72,0.3);
}
.gts-mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.gts-mobile-cta-call { color: #fff; border-right: 1px solid rgba(255,255,255,0.1); }
.gts-mobile-cta-call svg { color: var(--primary); }
.gts-mobile-cta-quote { background: var(--primary); color: #000; }
@media (min-width: 768px) { .gts-mobile-cta { display: none; } }
@media (max-width: 767px) { main { padding-bottom: 4rem; } }

/* ===== Sticky Header Call Button ===== */
.nav-call-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(212,165,72,0.3);
  transition: all 0.2s;
}
.nav-call-btn:hover { border-color: var(--primary); color: var(--primary); }
.nav-call-btn svg { color: var(--primary); }
@media (min-width: 768px) {
  .nav-call-desktop { display: inline-flex; }
}
.mobile-menu .nav-call-btn {
  margin-top: 0.5rem;
  justify-content: center;
  border-color: rgba(212,165,72,0.3);
}

/* ===== Urgency Banner ===== */
.urgency-banner {
  background: linear-gradient(135deg, #1a1408, #0a0a0a);
  border-top: 2px solid var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
}
.urgency-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .urgency-content { flex-direction: row; justify-content: space-between; text-align: left; }
}
.urgency-left { display: flex; flex-direction: column; gap: 0.25rem; }
.urgency-label {
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.urgency-text { color: #fff; font-size: 0.9rem; font-weight: 600; }
.urgency-countdown { display: flex; gap: 0.5rem; }
.urgency-time {
  background: var(--card);
  border: 1px solid rgba(212,165,72,0.3);
  min-width: 3rem;
  padding: 0.5rem 0.75rem;
  text-align: center;
}
.urgency-time span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
}
.urgency-time small {
  font-size: 0.55rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.urgency-cta { white-space: nowrap; }

/* ===== Exit-Intent Popup ===== */
.gts-exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.gts-exit-overlay.gts-exit-visible {
  opacity: 1;
  visibility: visible;
}
.gts-exit-popup {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(212,165,72,0.3);
  max-width: 30rem;
  width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.gts-exit-overlay.gts-exit-visible .gts-exit-popup { transform: scale(1); }
.gts-exit-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.gts-exit-close:hover { color: var(--primary); }
.gts-exit-icon {
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}
.gts-exit-popup h3 {
  color: #fff;
  font-size: 1.75rem;
  margin: 0.75rem 0 1rem;
}
.gts-exit-popup p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.gts-exit-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 480px) {
  .gts-exit-buttons { flex-direction: row; justify-content: center; }
}
.gts-exit-sub {
  color: var(--text-dim);
  font-size: 0.7rem;
  margin: 0;
}

/* ===== Service Detail / Area Content ===== */
.service-detail-content {
    max-width: 48rem;
    margin: 0 auto;
}
.service-detail-content h2 { color: #fff; margin: 2rem 0 1rem; }
.service-detail-content h3 { color: #fff; margin: 1.5rem 0 0.75rem; }
.service-detail-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.service-detail-content ul { margin: 1rem 0 1.5rem 1.5rem; list-style: disc; }
.service-detail-content ul li { color: var(--text-muted); margin-bottom: 0.5rem; }
.service-detail-content strong { color: #fff; }

.value-card-icon {
    width: 3.5rem; height: 3.5rem; border: 1px solid rgba(212,165,72,0.3);
    display: flex; align-items: center; justify-content: center;
}
.value-card-icon svg { color: var(--primary); }

.area-map {
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.area-map iframe { display: block; filter: invert(0.92) hue-rotate(180deg) brightness(0.9); }

/* ===== Lead Gen Split Section ===== */
.lead-gen-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 768px) { .lead-gen-split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.lead-gen-text h2 { color: #fff; margin: 0.75rem 0 1.5rem; }
.lead-gen-text p { color: #d4d4d4; margin-bottom: 1.5rem; }
.lead-gen-contact { margin-bottom: 1rem; }
.lead-gen-trust { color: var(--text-dim); font-size: 0.75rem; }

.lead-gen-form-wrap {
    background: var(--card);
    border: 1px solid rgba(212,165,72,0.2);
    padding: 2rem;
}
.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (min-width: 480px) { .lead-form-grid { grid-template-columns: 1fr 1fr; } }
.lead-form .form-field label { display: block; font-size: 0.65rem; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.lead-form .form-field input, .lead-form .form-field select, .lead-form .form-field textarea {
    width: 100%; background: var(--bg); border: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 1rem; font-size: 0.875rem; color: #fff; font-family: var(--font-body);
    transition: border-color 0.2s;
}
.lead-form .form-field input:focus, .lead-form .form-field select:focus, .lead-form .form-field textarea:focus { border-color: var(--primary); outline: none; }
.lead-form .form-field textarea { resize: none; }
.lead-form-submit { width: 100%; }

/* ===== Post a Job ===== */
.postajob-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .postajob-steps { grid-template-columns: repeat(4, 1fr); } }
.postajob-step {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem;
}
.postajob-step .num { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); display: block; margin-bottom: 0.5rem; }
.postajob-step .text { color: #d4d4d4; font-size: 0.875rem; }

.postajob-cta { background: #000; border-top: 1px solid rgba(255,255,255,0.1); padding: 5rem 0; }
.postajob-cta-inner {
  background: linear-gradient(to right, var(--card), #000);
  border: 1px solid rgba(212,165,72,0.2);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .postajob-cta-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.postajob-cta-text h2 { color: #fff; margin: 0.75rem 0 1.5rem; }
.postajob-cta-text p { color: var(--text-muted); margin-bottom: 2rem; }
.postajob-cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.postajob-cta-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.postajob-cta-step { background: var(--card); border: 1px solid rgba(255,255,255,0.05); padding: 1.25rem; }
.postajob-cta-step .num { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); display: block; margin-bottom: 0.5rem; }
.postajob-cta-step span:last-child { color: #d4d4d4; font-size: 0.875rem; }

/* ===== Gallery "Get This Look" CTA ===== */
.gallery-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--primary);
  color: #000;
  padding: 0.375rem 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: filter 0.2s;
}
.gallery-cta:hover { filter: brightness(1.1); color: #000; }

/* ===== Google Reviews Section ===== */
.gts-reviews { background: var(--bg); padding: 5rem 0; }
.gts-reviews-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}
.gts-reviews-header { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.gts-reviews-header span { color: #fff; font-size: 1.1rem; font-weight: 600; }
.gts-reviews-stars { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.gts-reviews-stars svg { color: var(--primary); }
.gts-reviews-score { font-family: var(--font-heading); font-size: 3rem; color: var(--primary); margin-bottom: 0.5rem; }
.gts-reviews-label { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 0.5rem; }
.gts-reviews-sub { color: var(--text-dim); font-size: 0.75rem; margin-bottom: 2rem; }
.gts-reviews-buttons { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 640px) { .gts-reviews-buttons { flex-direction: row; justify-content: center; } }