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

:root {
  --green-dark: #0d2818;
  --green-mid: #1a3a2a;
  --green-light: #2d5a3d;
  --green-pale: #3d7a4f;
  --green-cream: #e8f0e8;
  --gold: #c9a227;
  --gold-light: #f0d060;
  --gold-dark: #a67c00;
  --gold-gradient: linear-gradient(135deg, #c9a227, #f0d060, #c9a227);
  --gold-glow: rgba(201, 162, 39, 0.3);
  --cream: #faf8f3;
  --cream-dark: #f0ece0;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-100: #f7f7f7;
  --gray-200: #e9e9e9;
  --gray-300: #d4d4d4;
  --gray-400: #a0a0a0;
  --gray-500: #6b6b6b;
  --gray-600: #4a4a4a;
  --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
  --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
  --header-height: 80px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--gray-600);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--green-dark); font-weight: 600; line-height: 1.3; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { font-family: var(--font-heading); font-size: 2rem; color: var(--gold); letter-spacing: 4px; }
.preloader-bar {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--gold-gradient);
  width: 0; transition: width 1.5s ease;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--green-dark); color: var(--gold); text-align: center;
  padding: 8px 16px; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.announcement-bar a { color: var(--gold-light); text-decoration: underline; }
.announcement-bar .close-announcement {
  position: absolute; right: 20px; background: none; border: none; color: var(--gold); cursor: pointer; font-size: 1.2rem;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(13, 40, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  transition: var(--transition);
  height: var(--header-height);
}
.header.scrolled { background: rgba(13, 40, 24, 0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-height);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px; background: var(--gold-gradient);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--green-dark);
}
.logo-text { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); line-height: 1.2; }
.logo-text span { display: block; font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); font-weight: 400; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
  position: relative; padding: 4px 0; transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--gold-gradient); transition: var(--transition);
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold-gradient); color: var(--green-dark) !important; padding: 10px 24px !important;
  border-radius: 6px; font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  background: var(--green-dark);
  overflow: hidden;
  padding-top: calc(var(--header-height) + 0px);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.3;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,40,24,0.95) 0%, rgba(13,40,24,0.7) 50%, rgba(13,40,24,0.9) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.05) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 2; max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.3);
  padding: 8px 20px; border-radius: 50px;
  color: var(--gold); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px; animation: fadeInUp 0.8s ease;
}
.hero-badge i { font-size: 1rem; }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white); line-height: 1.1; font-weight: 700;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.7);
  max-width: 600px; line-height: 1.6; font-weight: 300;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 6px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--gold-gradient);
  color: var(--green-dark);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-secondary {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--green-dark); transform: translateY(-3px); }
.btn-gold {
  background: var(--gold-gradient); color: var(--green-dark);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-stat h3 {
  font-size: 2rem; color: var(--gold);
  font-family: var(--font-heading);
}
.hero-stat p { color: rgba(255,255,255,0.6); font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase; }

/* Hero Slider */
.hero-slider { min-height: 100vh; position: relative; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-content { position: absolute; inset: 0; display: flex; align-items: center; }

/* ===== SECTION STYLES ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--green-dark); }
.section-light { background: var(--cream); }
.section-white { background: var(--white); }
.section-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark)); }

.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-tag::before, .section-tag::after {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-desc {
  max-width: 600px; margin: 0 auto;
  color: var(--gray-500); font-size: 1.05rem;
}
.section-dark .section-desc { color: rgba(255,255,255,0.6); }
.section-header-left { text-align: left; }
.section-header-left .section-desc { margin: 0; }

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0); transition: var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: var(--green-cream); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold); transition: var(--transition);
}
.service-card:hover .service-card-icon { background: var(--gold-gradient); color: var(--green-dark); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-weight: 600; font-size: 0.85rem;
  margin-top: 16px; transition: var(--transition);
}
.service-card:hover .service-card-link { gap: 12px; }

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-image {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.about-image img { width: 100%; border-radius: var(--radius-lg); }
.about-image::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,40,24,0.3), transparent);
  z-index: 1;
}
.about-exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; background: var(--gold-gradient);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; z-index: 2;
  color: var(--green-dark); font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.about-exp-badge span { font-size: 2rem; line-height: 1; }
.about-exp-badge small { font-size: 0.65rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--gray-600); }
.about-feature i { color: var(--gold); font-size: 1rem; }

/* ===== PORTFOLIO / GALLERY ===== */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.portfolio-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
}
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition);
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,40,24,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 0; transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); font-size: 1.2rem; }
.portfolio-overlay p { color: var(--gold); font-size: 0.85rem; }

.portfolio-filters {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 24px; border-radius: 50px; border: 1px solid var(--gray-300);
  background: transparent; cursor: pointer; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500; transition: var(--transition);
  color: var(--gray-500);
}
.filter-btn.active, .filter-btn:hover { background: var(--green-dark); color: var(--gold); border-color: var(--green-dark); }

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
  position: relative; overflow: hidden;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; border: 1px solid rgba(0,0,0,0.04);
  margin: 12px;
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 1.1rem; }
.testimonial-text { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-gradient); display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-weight: 700; font-family: var(--font-heading);
}
.testimonial-name { font-weight: 600; color: var(--green-dark); }
.testimonial-role { font-size: 0.8rem; color: var(--gray-400); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a1f12 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.08), transparent);
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-title { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; }
.cta-text { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark); color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
  border-top: 1px solid rgba(201,162,39,0.1);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: rgba(255,255,255,0.6);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,39,0.1); }

.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; }
.footer-contact i { color: var(--gold); margin-top: 4px; 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;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--gold); }

/* ===== PAGE HEADER / BANNER ===== */
.page-banner {
  padding: 160px 0 80px;
  background: var(--green-dark);
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,162,39,0.1), transparent),
    radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.05), transparent);
}
.page-banner-content { position: relative; z-index: 1; text-align: center; }
.page-banner h1 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 0.85rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact-info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 16px; border: 1px solid rgba(0,0,0,0.04);
}
.contact-info-card i {
  font-size: 1.5rem; color: var(--gold); min-width: 40px; padding-top: 4px;
}
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--gray-500); font-size: 0.9rem; }

.contact-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-300);
  border-radius: 6px; font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition); background: var(--cream);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== COST CALCULATOR ===== */
.calculator {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
  margin-top: 40px;
}
.calc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.calc-group label { display: block; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; font-size: 0.9rem; }
.calc-group .form-input, .calc-group .form-select { background: var(--cream); }
.calc-result {
  margin-top: 24px; padding: 24px; background: var(--green-cream);
  border-radius: var(--radius); text-align: center;
}
.calc-result h3 { color: var(--green-dark); }
.calc-result .price {
  font-size: 2.5rem; font-weight: 700; color: var(--gold);
  font-family: var(--font-heading);
}
.calc-result .price span { font-size: 1rem; color: var(--gray-500); font-weight: 400; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image {
  height: 220px; overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 8px; display: flex; gap: 12px; }
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.blog-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 16px; }
.blog-card-link { color: var(--gold); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 6px; }

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail-hero {
  padding: 160px 0 80px;
  background: var(--green-dark);
  position: relative;
}
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.process-step {
  text-align: center; position: relative;
}
.process-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -16px; top: 50%;
  transform: translateY(-50%); color: var(--gold); font-size: 1.5rem;
}
.step-number {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem;
  background: var(--green-cream); color: var(--green-dark);
  transition: var(--transition);
}
.process-step:hover .step-number { background: var(--gold-gradient); box-shadow: var(--shadow-gold); }
.step-title { font-weight: 600; color: var(--green-dark); margin-bottom: 4px; }
.step-desc { font-size: 0.85rem; color: var(--gray-500); }

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9998;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 90px; right: 24px; z-index: 9997;
  width: 44px; height: 44px; background: var(--gold-gradient);
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-size: 1.1rem;
  opacity: 0; visibility: hidden; transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes goldShimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s ease; }
.animate-on-scroll-left.visible { opacity: 1; transform: translateX(0); }
.animate-on-scroll-right { opacity: 0; transform: translateX(40px); transition: all 0.8s ease; }
.animate-on-scroll-right.visible { opacity: 1; transform: translateX(0); }

/* ===== COUNTER ===== */
.counter-number {
  font-size: 2.5rem; font-weight: 700; color: var(--gold);
  font-family: var(--font-heading);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .process-step:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: fixed; top: var(--header-height);
    left: 0; right: 0; background: var(--green-dark);
    padding: 24px; gap: 16px; align-items: stretch;
    border-bottom: 1px solid rgba(201,162,39,0.1);
    z-index: 9999;
  }
  .hamburger { display: flex; }
  .hero { min-height: 90vh; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat { flex: 1; min-width: 100px; }
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .page-banner { padding: 120px 0 60px; }
}

/* ===== UTILITY ===== */
.text-gold { color: var(--gold); }
.text-green-dark { color: var(--green-dark); }
.text-white { color: var(--white); }
.bg-gold { background: var(--gold-gradient); }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }

/* ===== SIDEBAR (Service Detail) ===== */
.sidebar {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid rgba(0,0,0,0.04);
  position: sticky; top: 100px;
}
.sidebar h4 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-200); }
.sidebar-links li { margin-bottom: 4px; }
.sidebar-links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; border-radius: 6px;
  font-size: 0.9rem; color: var(--gray-500); transition: var(--transition);
}
.sidebar-links a:hover, .sidebar-links a.active {
  background: var(--green-cream); color: var(--green-dark);
}

/* ===== VALUES SECTION ===== */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.value-card {
  text-align: center; padding: 32px 20px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04); transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--gold-gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-size: 1.3rem;
}
.value-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--gray-500); }

/* ===== TEAM ===== */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.team-card {
  text-align: center; background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04); transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-image {
  height: 280px; overflow: hidden;
}
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card h4 { font-size: 1.1rem; }
.team-card .role { color: var(--gold); font-size: 0.85rem; font-weight: 500; margin-bottom: 8px; }

/* ===== ACCORDION ===== */
.accordion { margin-top: 24px; }
.accordion-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.accordion-header {
  padding: 16px 20px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--green-dark); transition: var(--transition);
  background: var(--white);
}
.accordion-header:hover { background: var(--green-cream); }
.accordion-header i { transition: var(--transition); color: var(--gold); }
.accordion-item.active .accordion-header i { transform: rotate(180deg); }
.accordion-body {
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-item.active .accordion-body {
  max-height: 300px; padding: 0 20px 16px;
}
.accordion-body p { font-size: 0.9rem; color: var(--gray-500); }

/* ===== FEATURED PROJECTS ===== */
.project-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card-image {
  height: 260px; overflow: hidden;
}
.project-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.project-card:hover .project-card-image img { transform: scale(1.06); }
.project-card-body { padding: 20px; }
.project-card-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.project-card-body p { font-size: 0.85rem; color: var(--gray-500); }
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

/* ===== STATS COUNTER ===== */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; text-align: center;
}
.stat-item h3 { font-size: 2.5rem; color: var(--gold); font-family: var(--font-heading); }
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== MODAL ===== */
.modal {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.9);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-content { max-width: 800px; width: 100%; position: relative; }
.modal-content img { width: 100%; border-radius: var(--radius); }
.modal-close {
  position: absolute; top: -40px; right: 0; color: white;
  font-size: 1.5rem; cursor: pointer; background: none; border: none;
}

/* ===== ACHIEVEMENTS ===== */
.achievement-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-cream); padding: 4px 16px 4px 4px;
  border-radius: 50px; font-size: 0.8rem; font-weight: 500; color: var(--green-dark);
}
.achievement-badge i { color: var(--gold); }

/* ===== BLOG SINGLE ===== */
.blog-single-content { max-width: 800px; margin: 0 auto; }
.blog-single-content h2 { font-size: 1.8rem; margin-top: 40px; margin-bottom: 16px; }
.blog-single-content p { margin-bottom: 20px; line-height: 1.8; }
.blog-single-content ul, .blog-single-content ol { margin-bottom: 20px; padding-left: 20px; }
.blog-single-content li { margin-bottom: 8px; }
.blog-single-content img { border-radius: var(--radius); margin: 24px 0; }
