/* ============================================================
   GLOBAL RESET & VARIABLES
============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0a4a2a;
  --primary-light: #127a44;
  --primary-dark: #052f19;
  --gold: #c8a84e;
  --gold-light: #e0c66e;
  --gold-glow: rgba(200, 168, 78, 0.35);
  --cream: #f5f0e8;
  --cream-dark: #e8e0d4;
  --dark: #1a1a2e;
  --dark-light: #2d2d44;
  --text: #2d2d2d;
  --text-light: #6b6b7a;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(10, 74, 42, 0.12);
  --shadow-hover: 0 30px 80px rgba(10, 74, 42, 0.20);
  --radius: 18px;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* ============================================================
   SELECTION
============================================================ */
::selection { background: var(--gold); color: var(--white); }

/* ============================================================
   UTILITY
============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 168, 78, 0.12);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-title span { color: var(--gold); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 8px 28px rgba(200, 168, 78, 0.35);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200, 168, 78, 0.45);
  background: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 14px 40px rgba(200, 168, 78, 0.35);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(10, 74, 42, 0.30);
}
.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 14px 40px rgba(10, 74, 42, 0.40);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--gold-glow); }
  50% { box-shadow: 0 0 60px var(--gold-glow), 0 0 120px rgba(200, 168, 78, 0.10); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.counter-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  display: inline-block;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulse-glow 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.10) translateY(-4px);
  box-shadow: 0 14px 48px rgba(37, 211, 102, 0.55);
}
.whatsapp-float i { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15)); }

/* ============================================================
   HEADER
============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}
header.scrolled {
  background: rgba(10, 74, 42, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 10px 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* -------- BRAND / LOGO -------- */
header .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
header .brand span { color: var(--gold); }

/* -------- LOGO IMAGE -------- */
header .brand .logo-img {
  height: 68px;
  width: auto;
  display: block;
  max-height: 72px;
  object-fit: contain;
  /* If your logo is dark-coloured, uncomment below to make it white */
  /* filter: brightness(0) invert(1); */
}

/* -------- NAVIGATION -------- */
header nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
header nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 40px;
  transition: var(--transition);
}
header nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
header nav a.active {
  color: var(--white);
  background: rgba(200, 168, 78, 0.20);
}

/* -------- HAMBURGER -------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200, 168, 78, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(200, 168, 78, 0.08) 0%, transparent 50%);
  z-index: 1;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-shapes span {
  position: absolute;
  border-radius: 50%;
  background: rgba(200, 168, 78, 0.06);
  animation: float 12s infinite ease-in-out;
}
.hero-shapes span:nth-child(1) {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -120px;
  animation-delay: 0s;
}
.hero-shapes span:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -60px;
  left: -60px;
  animation-delay: 2s;
  background: rgba(200, 168, 78, 0.04);
}
.hero-shapes span:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 10%;
  animation-delay: 4s;
  background: rgba(200, 168, 78, 0.03);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  animation: fade-up 1s ease forwards;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 6px 18px 6px 10px;
  border-radius: 60px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}
.hero-badge i { color: var(--gold); }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
}
.hero h1 span {
  color: var(--gold);
  position: relative;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gold);
  opacity: 0.3;
  border-radius: 4px;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}
.hero-trust-item i { color: var(--gold); font-size: 1rem; }

/* ============================================================
   SECTIONS
============================================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255, 255, 255, 0.6); }
.section-dark .section-tag { background: rgba(200, 168, 78, 0.15); }
.section-dark .card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white);
}
.section-dark .card h3 { color: var(--gold); }
.section-dark .card p { color: rgba(255, 255, 255, 0.7); }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

/* ============================================================
   GRID & CARDS
============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(200, 168, 78, 0.06);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.card:hover::after { border-color: var(--gold); }
.card .icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Project card */
.project-card {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.project-card .img-wrap {
  height: 210px;
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
}
.project-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.project-card:hover .img-wrap img { transform: scale(1.04); }
.project-card .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 40px;
  letter-spacing: 0.5px;
}
.project-card .body { padding: 22px 24px 26px; }
.project-card .body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.project-card .body .loc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.project-card .body .loc i { color: var(--gold); }
.project-card .body .prices {
  display: flex;
  gap: 20px;
  margin: 12px 0 14px;
  flex-wrap: wrap;
}
.project-card .body .prices .price-item {
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}
.project-card .body .prices .price-item span {
  font-weight: 400;
  color: var(--text-light);
}
.project-card .body .features {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.project-card .body .features li {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.project-card .body .features li i { color: var(--gold); font-size: 0.7rem; }
.project-card .body .btn { width: 100%; justify-content: center; }

/* ============================================================
   STATS
============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item .counter-number {
  font-size: 3.4rem;
  display: block;
  line-height: 1.1;
}
.stat-item .stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}
.stat-item .stat-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 6px;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.testimonial-card blockquote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.7;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}
.testimonial-card .author .name {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}
.testimonial-card .author .role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px 30px;
  text-align: center;
}
footer .brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
footer .brand span { color: var(--gold); }
footer .tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
footer .footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 36px;
  margin: 16px 0 20px;
  font-size: 0.9rem;
}
footer .footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}
footer .footer-contact a:hover { color: var(--gold); }
footer .footer-contact i {
  margin-right: 6px;
  color: var(--gold);
}
footer .divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto;
  opacity: 0.3;
}
footer .copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 992px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  header { padding: 12px 16px; }

  /* Logo size on mobile */
  header .brand .logo-img {
    height: 34px;
  }

  /* Mobile navigation */
  header nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 74, 42, 0.96);
    backdrop-filter: blur(18px);
    padding: 16px 20px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  header nav.open { display: flex; }
  header nav a {
    width: 100%;
    padding: 12px 16px;
    text-align: center;
  }
  .hamburger { display: flex; }

  .hero {
    padding: 100px 16px 60px;
    min-height: 92vh;
  }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-trust {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }

  .section { padding: 56px 0; }
  .section-title { font-size: 1.8rem; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .stat-item .counter-number { font-size: 2.4rem; }

  .project-card .img-wrap { height: 170px; }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 28px;
    bottom: 18px;
    right: 18px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 10px !important;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stat-item .counter-number { font-size: 2rem; }
}
