/* =====================================================
   ARSPL – Design System
   Colors: Golden (#C8960C / #F5C518), Lemon Green (#7EC51E / #A8E63D), Deep Green (#1A4D2E)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --gold: #C8960C;
  --gold-light: #F5C518;
  --gold-dark: #9A7209;
  --green-lemon: #7EC51E;
  --green-lemon-light: #A8E63D;
  --green-deep: #1A4D2E;
  --green-mid: #2E7D32;
  --green-dark: #0D2B18;
  --white: #FFFFFF;
  --off-white: #F9F8F4;
  --light-gray: #F2F2F0;
  --text-dark: #1C1C1C;
  --text-mid: #444444;
  --text-light: #777777;
  --header-h: 72px;
  --shadow-gold: 0 4px 24px rgba(200,150,12,0.25);
  --shadow-green: 0 4px 24px rgba(126,197,30,0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--green-dark);
  border-bottom: 3px solid var(--gold);
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-logo img {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.header-logo .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.header-logo .brand-name span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

/* ── Main Navigation ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  justify-content: center;
}
.main-nav a, .main-nav .nav-more-btn {
  color: var(--off-white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}
.main-nav a:hover, .main-nav .nav-more-btn:hover,
.main-nav a.active {
  color: var(--gold-light);
  background: rgba(200,150,12,0.12);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
}

/* ── More Dropdown ── */
.nav-more {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--green-dark);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-md);
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  overflow: hidden;
  display: none;
  z-index: 2000;
}
.nav-more:hover .nav-dropdown,
.nav-more:focus-within .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  border-bottom: 1px solid rgba(200,150,12,0.1);
  transition: var(--transition);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: rgba(200,150,12,0.15); color: var(--gold-light); }

/* ── Header CTA ── */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-lemon), var(--green-lemon-light));
  color: var(--green-dark);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--green-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1DAA55; transform: translateY(-1px); }
.btn-whatsapp svg { width: 16px; height: 16px; fill: #fff; }

/* ── Mobile Menu Toggle ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Drawer ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--green-dark);
  border-bottom: 2px solid var(--gold);
  z-index: 999;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  padding: 1rem 5%;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200,150,12,0.15);
  color: var(--off-white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .mobile-section-label {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 0 2px;
  opacity: 0.8;
}

/* ── Page Body Offset ── */
.page-body { padding-top: var(--header-h); }

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/warehouse-roofing.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 40%, rgba(26,77,46,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5% 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-text .eyebrow {
  display: inline-block;
  background: rgba(200,150,12,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-text h1 span { color: var(--gold-light); }
.hero-text .hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.8rem;
  line-height: 1.7;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.2rem 0 2rem;
}
.hero-tag {
  background: rgba(126,197,30,0.12);
  border: 1px solid rgba(126,197,30,0.4);
  color: var(--green-lemon-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-actions .btn-primary { font-size: 0.85rem; padding: 12px 28px; }
.hero-actions .btn-whatsapp { font-size: 0.85rem; padding: 12px 22px; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,150,12,0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  text-align: center;
}
.stat-card .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
}
.stat-card .stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 3px var(--gold-dark);
  max-height: 480px;
}
.hero-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
}

/* ── Section Styles ── */
.section { padding: 80px 5%; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--green-dark); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow {
  display: inline-block;
  background: rgba(200,150,12,0.1);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header h2 span { color: var(--gold); }
.section-header p {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0.8rem auto 0;
  font-size: 0.95rem;
}
.section-dark .section-header p { color: rgba(255,255,255,0.7); }
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-lemon));
  border-radius: 4px;
  margin: 0.8rem auto 0;
}

/* ── Product Cards ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(200,150,12,0.18);
  border-color: var(--gold);
}
.product-card img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover img { transform: scale(1.04); }
.product-card-body { padding: 1.2rem; }
.product-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.product-card-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.product-card-footer {
  padding: 0 1.2rem 1.2rem;
}

/* ── Products Rotating Banner ── */
.product-banner-section {
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0D2B18 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px rgba(200,150,12,0.2);
}
.banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,150,12,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.banner-slides { position: relative; min-height: 380px; }
.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem 2rem;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.banner-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.banner-slide-img {
  flex: 0 0 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 2px var(--gold-dark);
}
.banner-slide-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.banner-slide-text { flex: 1; }
.banner-slide-text .eyebrow {
  display: inline-block;
  background: rgba(200,150,12,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.banner-slide-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.banner-slide-text h3 span { color: var(--gold-light); }
.banner-slide-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.banner-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.banner-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
}
.banner-feature::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--green-lemon);
  color: var(--green-dark);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.banner-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  justify-content: center;
  border-top: 1px solid rgba(200,150,12,0.15);
}
.banner-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.banner-dot.active {
  background: var(--gold-light);
  width: 24px;
  border-radius: 4px;
}
.banner-btn-prev, .banner-btn-next {
  background: rgba(200,150,12,0.15);
  border: 1px solid var(--gold-dark);
  color: var(--gold-light);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.banner-btn-prev:hover, .banner-btn-next:hover { background: var(--gold); color: var(--green-dark); }

/* ── Features Strip ── */
.features-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(200,150,12,0.15);
  border-top: 1px solid rgba(200,150,12,0.25);
  border-bottom: 1px solid rgba(200,150,12,0.25);
}
.feature-item {
  background: var(--white);
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: var(--transition);
}
.feature-item:hover { background: rgba(200,150,12,0.04); }
.feature-item .feature-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
.feature-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}
.feature-item p { font-size: 0.78rem; color: var(--text-light); }

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.about-img-badge {
  position: absolute;
  bottom: -12px; right: -12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
}
.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.about-text h2 span { color: var(--gold); }
.about-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 1.2rem 0 2rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.about-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green-lemon);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.4rem;
}
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(200,150,12,0.15);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.75rem; font-weight: 700; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-item p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,150,12,0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--green-dark); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 60%, var(--green-mid));
  padding: 5rem 5% 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-lemon), var(--gold));
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.page-hero h1 span { color: var(--gold-light); }
.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ── Notice Board / Cards ── */
.notice-card {
  background: var(--white);
  border: 1px solid rgba(200,150,12,0.2);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.notice-card:hover { box-shadow: var(--shadow-gold); border-left-color: var(--green-lemon); }
.notice-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.3rem; }
.notice-card .notice-date { font-size: 0.72rem; color: var(--gold-dark); font-weight: 600; margin-bottom: 0.5rem; }
.notice-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* ── Policy pages ── */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.policy-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 2rem 0 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(200,150,12,0.2);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.6rem;
}
.policy-content ul { padding-left: 1.5rem; list-style: disc; }

/* ── Team Cards ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid rgba(200,150,12,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.2rem; }
.team-card .role { font-size: 0.78rem; color: var(--gold-dark); font-weight: 600; }

/* ── Footer ── */
.site-footer {
  background: var(--green-dark);
  border-top: 3px solid var(--gold);
  padding: 4rem 5% 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.footer-brand .brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}
.footer-logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.footer-logo .name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,150,12,0.2);
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 0.5rem;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,150,12,0.12);
  border: 1px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-light);
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--gold); color: var(--green-dark); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item .icon { font-size: 0.9rem; margin-top: 1px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(200,150,12,0.15);
  padding: 1.2rem 5%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom span { color: var(--gold-light); }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(200,150,12,0.15);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold-light);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.testimonial-author h4 { font-size: 0.85rem; font-weight: 700; color: var(--green-dark); }
.testimonial-author p { font-size: 0.75rem; color: var(--text-light); margin: 0; font-style: normal; }
.stars { color: var(--gold-light); font-size: 0.8rem; margin-bottom: 0.8rem; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(14,40,22,0.8));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.82rem; font-weight: 600; }

/* ── WhatsApp Float Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 9999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}
.whatsapp-float:hover { background: #1DAA55; transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── Enquiry Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--green-dark);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(200,150,12,0.15);
  border: 1px solid var(--gold-dark);
  color: var(--gold-light);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--gold); color: var(--green-dark); }
.modal-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.modal-box p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 1.5rem; }

/* ── Utility Classes ── */
.text-gold { color: var(--gold-light); }
.text-green { color: var(--green-lemon); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 85vh; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 5%; }
  .banner-slide { flex-direction: column; min-height: auto; }
  .banner-slide-img { flex: none; width: 100%; }
  .banner-slide-img img { height: 200px; }
  .policy-content { padding: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
}
