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

:root {
  --green: #3a8bbf;
  --dark-green: #2271a3;
  --light-green: #4a9fd4;
  --gold: #f0a500;
  --dark: #111c2b;
  --dark2: #1a2535;
  --gray: #7a8a9a;
  --light: #eef2f7;
  --white: #ffffff;
  --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 0.8rem;
  padding: 6px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar a { color: var(--white); }
.top-bar span { margin-right: 18px; }
.top-bar i { margin-right: 5px; color: var(--gold); }

/* ===== HEADER / NAV ===== */
header {
  background: var(--dark2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.4);
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  border: 3px solid var(--gold);
}
.logo-text { line-height: 1.2; }
.logo-text strong { font-size: 1.3rem; color: var(--white); display: block; letter-spacing: 1px; }
.logo-text span { font-size: 0.7rem; color: var(--white); letter-spacing: 2px; text-transform: uppercase; }

nav ul { display: flex; align-items: center; gap: 4px; }
nav ul li { position: relative; }
nav ul li a {
  color: var(--white);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: flex; align-items: center; gap: 5px;
}
nav ul li a:hover, nav ul li a.active { background: var(--green); color: var(--white); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark2);
  min-width: 200px;
  border-top: 3px solid var(--green);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  z-index: 999;
}
.dropdown-menu li a { padding: 10px 18px; font-size: 0.83rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.dropdown-menu li a:hover { background: var(--green); padding-left: 24px; }
.dropdown:hover .dropdown-menu { display: block; }

.nav-cta { background: var(--gold) !important; color: var(--dark) !important; border-radius: 25px !important; padding: 8px 20px !important; }
.nav-cta:hover { background: var(--green) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; width: 100%; height: 100vh; min-height: 580px; overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }
.slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,25,45,0.82) 0%, rgba(0,0,0,0.35) 100%);
}
.slide-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}
.slide.active .slide-content { opacity: 1; transform: translateY(0); }
.slide-content .tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.slide-content h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.slide-content h1 span { color: var(--gold); }
.slide-content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.7; }
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--green); color: var(--white);
  padding: 13px 30px; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem;
  border: 2px solid var(--green);
  cursor: pointer; transition: all 0.3s;
  text-transform: uppercase; letter-spacing: 1px;
}
.btn-primary:hover { background: transparent; color: var(--white); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 13px 30px; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer; transition: all 0.3s;
  text-transform: uppercase; letter-spacing: 1px;
}
.btn-outline:hover { background: var(--white); color: var(--dark); }

/* Slider controls */
.slider-arrows { position: absolute; bottom: 40px; right: 40px; z-index: 5; display: flex; gap: 10px; }
.arrow-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.4);
  color: var(--white); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; backdrop-filter: blur(4px);
}
.arrow-btn:hover { background: var(--green); border-color: var(--green); }
.slider-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s;
}
.dot.active { background: var(--gold); transform: scale(1.3); }
.slide-counter {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.8rem; z-index: 5; letter-spacing: 2px;
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 54px; }
.section-tag {
  display: inline-block; color: var(--green);
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 10px;
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--dark); line-height: 1.2; }
.section-header h2 span { color: var(--green); }
.section-header p { color: var(--gray); margin-top: 14px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.divider { width: 60px; height: 4px; background: var(--green); margin: 14px auto 0; border-radius: 2px; }
.divider::after { content: ''; display: block; width: 30px; height: 4px; background: var(--gold); margin: 5px auto 0; border-radius: 2px; }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--dark2);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,139,191,0.12) 0%, transparent 50%, rgba(58,139,191,0.08) 100%);
}
.stats-band::after {
  content: '';
  position: absolute;
  top: 0; left: -10%;
  width: 55%;
  height: 100%;
  background: rgba(255,255,255,0.03);
  transform: skewX(-18deg);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; position: relative; z-index: 1; }
.stat-item { color: var(--white); }
.stat-item h3 { font-size: 2.4rem; font-weight: 800; color: var(--gold); }
.stat-item p { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; margin-top: 4px; }

/* ===== SERVICES ===== */
.services { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.35s, box-shadow 0.35s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 14px 40px rgba(0,0,0,0.13); }
.service-card img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.5s; }
.service-card:hover img { transform: scale(1.06); }
.card-body { padding: 22px; }
.card-body .icon-badge {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 14px;
}
.card-body h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--dark); }
.card-body p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.card-link { color: var(--green); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.service-card:hover .card-link { gap: 12px; }

/* ===== WHY US ===== */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { position: relative; }
.why-image img { border-radius: 10px; width: 100%; }
.why-image .badge-box {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green); color: var(--white);
  padding: 20px 24px; border-radius: 8px;
  text-align: center; box-shadow: 0 6px 20px rgba(58,139,191,0.35);
}
.why-image .badge-box strong { font-size: 2rem; display: block; }
.why-image .badge-box span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.why-list { margin-top: 28px; }
.why-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.why-item .icon { width: 46px; height: 46px; min-width: 46px; background: rgba(58,139,191,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1.2rem; }
.why-item h4 { font-size: 1rem; margin-bottom: 4px; }
.why-item p { color: var(--gray); font-size: 0.87rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark2); padding: 80px 0; }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-tag { color: var(--gold); }
.testimonials .section-header p { color: rgba(255,255,255,0.6); }
.testimonials .divider { background: var(--gold); }
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.6s ease; }
.testi-card {
  min-width: 100%;
  padding: 0 20px;
}
.testi-inner {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 36px 40px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.testi-inner .stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 18px; letter-spacing: 3px; }
.testi-inner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; border: 3px solid var(--gold);
}
.testi-info strong { color: var(--white); display: block; }
.testi-info span { color: var(--gold); font-size: 0.82rem; }
.testi-controls { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.3s; }
.testi-dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== PROCESS ===== */
.process { background: var(--light); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute; top: 40px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(to right, var(--green), var(--gold));
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem; color: var(--green); font-weight: 800;
  box-shadow: 0 4px 16px rgba(58,139,191,0.15);
  transition: all 0.3s;
}
.step-card:hover .step-num { background: var(--green); color: var(--white); }
.step-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.step-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--dark2);
  padding: 70px 0; text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,139,191,0.12) 0%, transparent 50%, rgba(58,139,191,0.08) 100%);
}
.cta-band::after {
  content: '';
  position: absolute;
  top: 0; left: -10%;
  width: 55%;
  height: 100%;
  background: rgba(255,255,255,0.03);
  transform: skewX(-18deg);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 30px; }
.cta-band .btn-gold {
  background: var(--gold); color: var(--dark);
  padding: 14px 36px; border-radius: 4px;
  font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 1px;
  transition: all 0.3s; display: inline-block;
  border: 2px solid var(--gold);
}
.cta-band .btn-gold:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; color: rgba(255,255,255,0.6); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: all 0.3s; font-size: 0.9rem;
}
.social-links a:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--green); border-radius: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.87rem; transition: color 0.3s; display: flex; align-items: center; gap: 7px; }
.footer-col ul li a::before { content: '›'; color: var(--green); font-size: 1.1rem; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.87rem; color: rgba(255,255,255,0.6); }
.footer-contact li i { color: var(--green); margin-top: 2px; min-width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark2) 0%, #1e3a5a 100%);
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-slide-1.png') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto 18px; line-height: 1.8; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== TURF DETAIL PAGE ===== */
.turf-detail { background: var(--white); }
.turf-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.turf-main-img { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.turf-main-img img { width: 100%; }
.turf-info h2 { font-size: 2rem; color: var(--dark); margin-bottom: 10px; }
.turf-info h2 span { color: var(--green); }
.turf-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(58,139,191,0.1); color: var(--green); font-size: 0.8rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 18px; }
.turf-info p { color: var(--gray); line-height: 1.8; margin-bottom: 18px; }
.turf-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.turf-feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.turf-feature i { color: var(--green); width: 20px; }
.turf-specs { background: var(--light); border-radius: 10px; padding: 24px; margin-top: 24px; }
.turf-specs h4 { font-size: 1rem; margin-bottom: 16px; color: var(--dark); }
.spec-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.88rem; }
.spec-row:last-child { border-bottom: none; }
.spec-row span:first-child { color: var(--gray); }
.spec-row span:last-child { font-weight: 600; color: var(--dark); }

/* ===== ABOUT PAGE ===== */
.about-intro { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 10px; width: 100%; }
.about-img-wrap .exp-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--gold); color: var(--dark);
  padding: 18px 22px; border-radius: 8px; text-align: center;
  box-shadow: 0 6px 20px rgba(240,165,0,0.4);
}
.about-img-wrap .exp-badge strong { font-size: 2rem; display: block; font-weight: 800; }
.about-img-wrap .exp-badge span { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; }
.team-section { background: var(--light); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.07); text-align: center; transition: transform 0.3s; }
.team-card:hover { transform: translateY(-6px); }
.team-card .team-avatar { height: 160px; background: linear-gradient(135deg, var(--green), var(--dark-green)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--white); }
.team-card-body { padding: 20px; }
.team-card-body h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card-body span { color: var(--green); font-size: 0.82rem; font-weight: 600; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; }
.contact-info-box { background: var(--dark2); border-radius: 12px; padding: 40px; color: var(--white); }
.contact-info-box h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-info-box > p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 30px; line-height: 1.7; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-item .ci-icon { width: 46px; height: 46px; min-width: 46px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-item strong { color: var(--white); display: block; font-size: 0.9rem; margin-bottom: 3px; }
.contact-item span { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; }
.contact-form-box { background: var(--light); border-radius: 12px; padding: 40px; }
.contact-form-box h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-box > p { color: var(--gray); font-size: 0.9rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #dde; border-radius: 6px;
  font-family: var(--font); font-size: 0.9rem;
  color: var(--dark); background: var(--white);
  outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { height: 130px; resize: vertical; }
.btn-submit {
  width: 100%; background: var(--green); color: var(--white);
  padding: 14px; border: none; border-radius: 6px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  text-transform: uppercase; letter-spacing: 1px; transition: background 0.3s;
}
.btn-submit:hover { background: var(--dark-green); }
.map-section { background: var(--light); padding: 0 0 80px; }
.map-section .container { }
.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.map-wrap iframe { width: 100%; height: 400px; border: none; display: block; }

/* ===== PARALLAX ===== */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0;
}
.parallax-section::before { content: ''; position: absolute; inset: 0; background: rgba(10,20,40,0.72); }
.parallax-section .container { position: relative; z-index: 1; text-align: center; color: var(--white); }
.parallax-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.parallax-section h2 span { color: var(--gold); }
.parallax-section p { color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto 28px; line-height: 1.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .turf-detail-grid, .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-image .badge-box { right: 10px; bottom: 10px; }
  .about-img-wrap .exp-badge { left: 10px; bottom: 10px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hamburger { display: flex; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark2); padding: 20px; border-top: 2px solid var(--green); }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 2px; }
  nav ul li a { padding: 10px 14px; }
  .dropdown-menu { position: static; display: none; box-shadow: none; border-top: none; padding-left: 14px; background: rgba(255,255,255,0.04); }
  .dropdown.open .dropdown-menu { display: block; }
  .hero-slider { height: 92vh; min-height: 500px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .turf-features { grid-template-columns: 1fr; }
  .slider-arrows { bottom: 14px; right: 14px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-btns { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-bar .container { flex-direction: column; text-align: center; }
}

/* ===== UTILITIES ===== */
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.bg-light { background: var(--light); }
.mt-0 { margin-top: 0; }
.hidden { display: none; }
.fade-in { animation: fadeInUp 0.7s ease forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* scroll to top */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  box-shadow: 0 4px 14px rgba(58,139,191,0.4);
  transition: background 0.3s;
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--gold); color: var(--dark); }

/* Parallax btn override */
.parallax-section .btn-primary { border-color: var(--white); }
.parallax-section .btn-primary:hover { background: var(--white); color: var(--dark); }

/* Page hero bg overlay fix */
.page-hero[style*="background-image"]::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 20, 40, 0.78);
  z-index: 0;
}
