/*
Theme Name: GreenScape Turfs v2
Theme URI: https://greenscapeturfs.com
Author: GreenScape Turfs
Description: Premium Artificial Grass — Luxury redesign with Elementor support
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: greenscape
*/

/* ============================================================
   DESIGN TOKENS — Logo-matched color scheme
   Primary Green: #1a6b2e (dark from logo)
   Accent Orange: #f7941d (sun from logo)
   Mid Green:     #2e8b3a
   Light Green:   #4db848
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --gs-forest:   #0f4d1f;
  --gs-dark:     #1a6b2e;
  --gs-mid:      #2e8b3a;
  --gs-light:    #4db848;
  --gs-pale:     #e8f5e9;
  --gs-orange:   #f7941d;
  --gs-orange2:  #e8891a;
  --gs-white:    #ffffff;
  --gs-off:      #f8fdf8;
  --gs-gray:     #f2f7f2;
  --gs-text:     #0f1f13;
  --gs-muted:    #4a6350;
  --gs-border:   #d4e8d4;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Open Sans', sans-serif;

  /* Radius & Shadow */
  --gs-radius:   12px;
  --gs-radius-lg: 20px;
  --gs-shadow:   0 4px 24px rgba(15,77,31,0.10);
  --gs-shadow-lg: 0 12px 48px rgba(15,77,31,0.18);

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 100px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gs-text);
  background: var(--gs-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--gs-dark);
  letter-spacing: -0.02em;
}

a { color: var(--gs-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gs-light); }
img { max-width: 100%; display: block; height: auto; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5%, 60px);
  width: 100%;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.gs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gs-orange);
  color: var(--gs-forest) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: 15px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.gs-btn-primary:hover {
  background: var(--gs-orange2);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(247,148,29,.45);
}

.gs-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gs-dark);
  color: var(--gs-white) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: 15px 32px;
  border-radius: 50px;
  transition: background .2s, transform .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.gs-btn-dark:hover { background: var(--gs-forest); transform: translateY(-3px); }

.gs-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.7);
  color: var(--gs-white) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 30px;
  border-radius: 50px;
  transition: background .2s, border-color .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.gs-btn-outline:hover { background: rgba(255,255,255,.15); border-color: white; }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.gs-section { padding: var(--section-pad) 0; }
.gs-section-dark { background: var(--gs-forest); }
.gs-section-gray { background: var(--gs-gray); }
.gs-section-pale { background: var(--gs-pale); }

.gs-eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gs-orange);
  margin-bottom: 12px;
  display: block;
}

.gs-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--gs-dark);
  margin-bottom: 16px;
}
.gs-title-white { color: var(--gs-white) !important; }
.gs-title em { font-style: italic; color: var(--gs-orange); }

.gs-lead {
  font-size: 1.05rem;
  color: var(--gs-muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}
.gs-lead-white { color: rgba(255,255,255,.80) !important; }

.gs-divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--gs-orange), var(--gs-light));
  border-radius: 2px;
  margin: 16px 0 28px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.gs-nav {
  background: var(--gs-forest);
  position: sticky;
  top: 0;
  z-index: 9999;
  height: 72px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  transition: background .3s;
}

.gs-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.gs-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.gs-nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.gs-nav-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: white;
}
.gs-nav-logo-text span { color: var(--gs-orange); }

/* Nav Links */
.gs-nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}
.gs-nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.gs-nav-links a:hover { color: white; background: rgba(255,255,255,.1); }
.gs-nav-cta {
  background: var(--gs-orange) !important;
  color: var(--gs-forest) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}
.gs-nav-cta:hover { background: var(--gs-orange2) !important; }

/* Hamburger */
.gs-nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .2s;
}
.gs-nav-toggle:hover { background: rgba(255,255,255,.1); }

/* Mobile Menu */
.gs-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--gs-forest);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.gs-mobile-menu.open { display: flex; }
.gs-mobile-menu a {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: block;
}
.gs-mobile-menu a:last-child { border: none; }
.gs-mobile-menu .gs-btn-primary {
  margin-top: 16px;
  justify-content: center;
  width: 100%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.gs-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gs-forest);
}

/* Background image */
.gs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gs-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.gs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,40,18,.90) 0%,
    rgba(15,77,31,.75) 50%,
    rgba(26,107,46,.60) 100%
  );
}

.gs-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Hero Text Side */
.gs-hero-text { }

.gs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,148,29,.18);
  border: 1px solid rgba(247,148,29,.5);
  color: var(--gs-orange);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.gs-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: white;
  margin-bottom: 24px;
  line-height: 1.12;
}
.gs-hero h1 em {
  font-style: italic;
  color: var(--gs-orange);
  display: block;
}

.gs-hero .hero-desc {
  color: rgba(255,255,255,.85);
  font-size: 1.08rem;
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 480px;
}

.gs-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero trust row */
.gs-hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.gs-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 500;
}
.gs-trust-item .ti-icon {
  color: var(--gs-orange);
  font-size: 1.1rem;
}

/* Hero Image Card (Right Side) */
.gs-hero-visual {
  position: relative;
}
.gs-hero-img-stack {
  position: relative;
}
.gs-hero-img-main {
  border-radius: var(--gs-radius-lg);
  overflow: hidden;
  box-shadow: var(--gs-shadow-lg);
  height: 440px;
}
.gs-hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-hero-img-main .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gs-dark), var(--gs-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.gs-hero-img-sub {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 160px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  border: 3px solid white;
}
.gs-hero-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-hero-img-sub .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gs-orange), var(--gs-orange2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.gs-hero-stat-pill {
  position: absolute;
  top: 24px;
  right: -16px;
  background: white;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  text-align: center;
  min-width: 120px;
}
.gs-hero-stat-pill .num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gs-dark);
  display: block;
  line-height: 1;
}
.gs-hero-stat-pill .lbl {
  font-size: .68rem;
  color: var(--gs-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   PRICE BANNER
   ============================================================ */
.gs-price-banner {
  background: linear-gradient(90deg, var(--gs-orange) 0%, var(--gs-orange2) 100%);
  padding: 14px 20px;
  text-align: center;
}
.gs-price-banner p {
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  color: var(--gs-forest);
}
.gs-price-banner a {
  color: var(--gs-forest);
  text-decoration: underline;
  font-weight: 800;
}

/* ============================================================
   USE CASES / APPLICATION CARDS
   ============================================================ */
.gs-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.gs-use-card {
  background: white;
  border-radius: var(--gs-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--gs-shadow);
  border: 1px solid var(--gs-border);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.gs-use-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gs-dark), var(--gs-orange));
  transform: scaleX(0);
  transition: transform .25s;
}
.gs-use-card:hover { transform: translateY(-6px); box-shadow: var(--gs-shadow-lg); }
.gs-use-card:hover::before { transform: scaleX(1); }

.gs-use-card .icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.gs-use-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gs-dark);
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.gs-use-card p { font-size: .84rem; color: var(--gs-muted); line-height: 1.6; }

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.gs-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.gs-why-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.gs-why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--gs-radius);
  transition: background .2s;
}
.gs-why-item:hover { background: var(--gs-pale); }

.gs-why-icon {
  background: linear-gradient(135deg, var(--gs-dark), var(--gs-mid));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.gs-why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gs-dark);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.gs-why-item p { font-size: .87rem; color: var(--gs-muted); }

/* Visual box */
.gs-visual-box {
  border-radius: var(--gs-radius-lg);
  overflow: hidden;
  box-shadow: var(--gs-shadow-lg);
  position: relative;
}
.gs-visual-inner {
  width: 100%;
  height: 460px;
  overflow: hidden;
}
.gs-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gs-visual-box:hover .gs-visual-inner img { transform: scale(1.03); }
.gs-visual-inner .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gs-dark), var(--gs-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
}

.gs-visual-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,40,18,.88);
  backdrop-filter: blur(8px);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gs-visual-badge .txt { color: rgba(255,255,255,.82); font-size: .87rem; font-weight: 500; }
.gs-visual-badge .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gs-orange);
}

/* ============================================================
   SPECS SECTION
   ============================================================ */
.gs-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gs-spec-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--gs-radius);
  padding: 28px 24px;
  transition: background .2s, transform .2s;
}
.gs-spec-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}
.gs-spec-card .lbl {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.45);
  margin-bottom: 8px;
  font-weight: 600;
}
.gs-spec-card .val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gs-orange);
  margin-bottom: 6px;
  display: block;
}
.gs-spec-card .desc { font-size: .82rem; color: rgba(255,255,255,.65); }

/* CTA Box */
.gs-cta-box {
  background: linear-gradient(135deg, var(--gs-orange) 0%, var(--gs-orange2) 100%);
  border-radius: var(--gs-radius-lg);
  padding: 52px 48px;
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.gs-cta-box h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--gs-forest);
  margin-bottom: 10px;
}
.gs-cta-box p { color: rgba(10,40,18,.8); font-size: 1rem; max-width: 520px; }
.gs-cta-box .gs-btn-dark {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   PROJECTS GRID
   ============================================================ */
.gs-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gs-project-card {
  border-radius: var(--gs-radius);
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  background: white;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.gs-project-card:hover { transform: translateY(-6px); box-shadow: var(--gs-shadow-lg); }

.gs-project-img {
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gs-mid), var(--gs-light));
  position: relative;
}
.gs-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gs-project-card:hover .gs-project-img img { transform: scale(1.06); }
.gs-project-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.gs-project-info { padding: 20px; }
.gs-project-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gs-dark);
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.gs-project-info p { font-size: .84rem; color: var(--gs-muted); }

.gs-project-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gs-orange);
  color: var(--gs-forest);
  font-size: .68rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.gs-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.gs-about-img {
  border-radius: var(--gs-radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--gs-shadow-lg);
}
.gs-about-img img { width: 100%; height: 100%; object-fit: cover; }
.gs-about-img .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gs-dark), var(--gs-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
}

.gs-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.gs-stat-box {
  background: white;
  border-radius: var(--gs-radius);
  padding: 22px 20px;
  border-left: 4px solid var(--gs-orange);
  box-shadow: var(--gs-shadow);
}
.gs-stat-box .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gs-dark);
  display: block;
}
.gs-stat-box .lbl { font-size: .78rem; color: var(--gs-muted); font-weight: 600; }

/* Values Grid */
.gs-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.gs-value-card {
  background: white;
  border-radius: var(--gs-radius);
  padding: 32px 28px;
  box-shadow: var(--gs-shadow);
  border-top: 4px solid var(--gs-light);
  transition: transform .2s;
}
.gs-value-card:hover { transform: translateY(-4px); }
.gs-value-card .vicon { font-size: 2rem; margin-bottom: 16px; display: block; }
.gs-value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gs-dark);
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.gs-value-card p { font-size: .88rem; color: var(--gs-muted); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.gs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.gs-contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: var(--gs-radius);
  background: white;
  box-shadow: var(--gs-shadow);
}
.gs-contact-detail .ico {
  background: linear-gradient(135deg, var(--gs-dark), var(--gs-mid));
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.gs-contact-detail strong { display: block; font-size: .9rem; color: var(--gs-dark); margin-bottom: 3px; font-weight: 700; }
.gs-contact-detail span { font-size: .88rem; color: var(--gs-muted); }
.gs-contact-detail a { color: var(--gs-dark); font-weight: 600; }
.gs-contact-detail a:hover { color: var(--gs-light); }

.gs-price-promise {
  background: linear-gradient(135deg, #fff8ee, #fff3e0);
  border-radius: var(--gs-radius);
  padding: 24px;
  border-left: 4px solid var(--gs-orange);
  margin-top: 8px;
}
.gs-price-promise strong { color: var(--gs-dark); display: block; margin-bottom: 8px; font-size: 1rem; }
.gs-price-promise p { font-size: .88rem; color: var(--gs-muted); }

/* Form Wrap */
.gs-form-wrap {
  background: var(--gs-off);
  border-radius: var(--gs-radius-lg);
  padding: 40px 36px;
  box-shadow: var(--gs-shadow);
  border: 1px solid var(--gs-border);
}
.gs-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gs-dark);
  margin-bottom: 8px;
}
.gs-form-wrap .form-subtitle { font-size: .9rem; color: var(--gs-muted); margin-bottom: 28px; }

/* WPForms styling override */
.gs-form-wrap .wpforms-form input,
.gs-form-wrap .wpforms-form textarea,
.gs-form-wrap .wpforms-form select {
  border: 1.5px solid var(--gs-border) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: .9rem !important;
  font-family: var(--font-body) !important;
  background: white !important;
  transition: border-color .2s !important;
  width: 100% !important;
}
.gs-form-wrap .wpforms-form input:focus,
.gs-form-wrap .wpforms-form textarea:focus {
  border-color: var(--gs-dark) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(26,107,46,.1) !important;
}
.gs-form-wrap .wpforms-submit-container button,
.gs-form-wrap .wpforms-form button[type="submit"] {
  background: var(--gs-dark) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 14px 32px !important;
  border-radius: 50px !important;
  font-size: .95rem !important;
  border: none !important;
  cursor: pointer !important;
  transition: background .2s, transform .2s !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
}
.gs-form-wrap .wpforms-submit-container button:hover { background: var(--gs-forest) !important; transform: translateY(-2px) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.gs-footer {
  background: var(--gs-forest);
  padding: 70px 0 0;
}

.gs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}

.gs-footer-brand .logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gs-footer-brand .logo img { height: 46px; }
.gs-footer-brand .logo span { color: var(--gs-orange); }
.gs-footer-brand p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.8; max-width: 300px; }

.gs-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.gs-footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: background .2s, color .2s;
}
.gs-footer-social a:hover { background: var(--gs-orange); color: white; }

.gs-footer h4 {
  color: white;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
}
.gs-footer ul { list-style: none; }
.gs-footer ul li { margin-bottom: 10px; }
.gs-footer ul a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color .2s; }
.gs-footer ul a:hover { color: var(--gs-orange); }

.gs-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.gs-footer-bottom span { font-size: .82rem; color: rgba(255,255,255,.35); }
.gs-footer-bottom div { display: flex; gap: 20px; }
.gs-footer-bottom a { font-size: .82rem; color: rgba(255,255,255,.35); transition: color .2s; }
.gs-footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.gs-page-hero {
  background: linear-gradient(135deg, var(--gs-forest) 0%, var(--gs-dark) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gs-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gs-orange), transparent);
}
.gs-page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.gs-page-hero p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.gs-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.gs-testimonial {
  background: white;
  border-radius: var(--gs-radius);
  padding: 32px 28px;
  box-shadow: var(--gs-shadow);
  border: 1px solid var(--gs-border);
  position: relative;
}
.gs-testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: var(--gs-pale);
  font-family: var(--font-display);
  line-height: 1;
}
.gs-testimonial p { font-size: .9rem; color: var(--gs-muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.gs-testimonial-author { display: flex; align-items: center; gap: 12px; }
.gs-testimonial-author .av {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gs-dark), var(--gs-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.gs-testimonial-author strong { display: block; font-size: .9rem; color: var(--gs-dark); font-weight: 700; }
.gs-testimonial-author span { font-size: .78rem; color: var(--gs-muted); }
.gs-stars { color: var(--gs-orange); font-size: .9rem; margin-bottom: 16px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.gs-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 16px;
  position: relative;
}
.gs-process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.gs-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gs-dark), var(--gs-mid));
  color: white;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.gs-process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gs-dark);
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.gs-process-step p { font-size: .85rem; color: var(--gs-muted); }

/* ============================================================
   ELEMENTOR COMPATIBILITY
   ============================================================ */
/* Ensure Elementor widgets inherit theme tokens */
.elementor-widget-text-editor { font-family: var(--font-body) !important; }
.elementor-heading-title { font-family: var(--font-display) !important; }

/* Override Elementor section padding if needed */
.elementor-section .elementor-container { max-width: 1200px !important; }

/* Theme classes usable inside Elementor HTML widget */
.el-eyebrow { font-family: var(--font-body); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gs-orange); margin-bottom: 12px; display: block; }
.el-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--gs-dark); margin-bottom: 16px; }
.el-title-white { color: white !important; }
.el-divider { width: 56px; height: 4px; background: linear-gradient(90deg, var(--gs-orange), var(--gs-light)); border-radius: 2px; margin: 16px 0 28px; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .gs-hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .gs-hero-text { order: 1; }
  .gs-hero-visual { order: 2; }
  .gs-hero-btns { justify-content: center; }
  .gs-hero-trust { justify-content: center; }
  .gs-hero h1 em { display: inline; }
  .gs-hero-stat-pill { right: 16px; }

  .gs-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .gs-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .gs-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .gs-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gs-cta-box { flex-direction: column; text-align: center; padding: 36px 28px; }
  .gs-cta-box .gs-btn-dark { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  :root { --section-pad: clamp(44px, 8vw, 70px); }

  .gs-nav-links { display: none; }
  .gs-nav-toggle { display: flex; align-items: center; justify-content: center; }

  .gs-hero { min-height: 100svh; }
  .gs-hero h1 { font-size: 2.1rem; }
  .gs-hero-img-main { height: 280px; }
  .gs-hero-img-sub { width: 110px; height: 100px; left: -8px; bottom: -20px; }
  .gs-hero-stat-pill { top: 14px; right: 8px; }

  .gs-footer-grid { grid-template-columns: 1fr; }
  .gs-footer-bottom { flex-direction: column; text-align: center; }

  .gs-stats-grid { grid-template-columns: 1fr; }
  .gs-checklist { grid-template-columns: 1fr; }

  .gs-cta-box { padding: 28px 20px; }
  .gs-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .gs-cards-grid { grid-template-columns: 1fr 1fr; }
  .gs-projects-grid { grid-template-columns: 1fr; }
  .gs-specs-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .gs-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .gs-reveal.visible {
    opacity: 1;
    transform: none;
  }
}
