/* 
Color Palette (REFINED - Natural Landscape Theme):
Light Sage Green  — #B8CBAA
Soft Sage Green   — #A7BE97
Muted Olive Green — #7E9762
Leaf Green        — #5D7644
Deep Forest Green — #3F5530
Warm Cream White  — #F4F1E8
Soft Gold         — #B89A3C
Muted Gold        — #C8AA5A

[BACKUP] Old Palette (2):
Primary Olive Green: #5C6B2E  | Original: #0D3B35
Leaf Green:          #6B8C3A  | Original: #124B43
Light Sage:          #B5C9A1  | Original: #A8BC9B
Gold:                #C8A24D
Cream:               #F8F5EC  | Original: #F5F3EE
*/

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

:root {
  --primary-dark-green: #3F5530;
  --secondary-green: #5D7644;
  --leaf-green: #5D7644;
  --muted-olive: #7E9762;
  --sage-green: #B8CBAA;
  --soft-sage: #A7BE97;
  --gold-accent: #C8AA5A;
  --soft-gold: #B89A3C;
  --ivory-white: #F4F1E8;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;

  --radius-lg: 20px;
  --radius-md: 12px;

  --shadow-soft: 0 10px 30px rgba(63, 85, 48, 0.1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.15);

  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-body);
  background-color: var(--ivory-white);
  color: var(--primary-dark-green);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-dark-green);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Base Utilities */
section {
  overflow: hidden;
  /* Prevent animations from causing horizontal scroll */
}

.section-padding {
  padding: 100px 5%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Premium Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Better for mobile than 100vh */
  height: 100svh;
  /* Modern mobile aware height */
  background-color: var(--primary-dark-green);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  pointer-events: all;
  transition: opacity 0.5s ease-in-out;
}

.glow-effect {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 162, 77, 0.15) 0%, rgba(200, 162, 77, 0) 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

#preloader-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.preloader-svg {
  width: 50vw;
  max-width: 600px;
  height: auto;
  z-index: 2;
  position: relative;
  overflow: visible;
}

.landscape-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.leaf {
  opacity: 0;
  transform-origin: center bottom;
  transform: scale(0);
}

.preloader-name {
  font-family: var(--font-heading);
  color: var(--gold-accent);
  font-size: 3rem;
  margin-top: 20px;
  z-index: 2;
  display: flex;
  position: relative;
  text-shadow: 0 0 15px rgba(200, 162, 77, 0.3);
}

.preloader-name .char {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  display: inline-block;
}

/* Transparent Luxury Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 15px 5%;
  background: rgba(63, 85, 48, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-premium);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ivory-white);
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 55px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 4px 8px;
  object-fit: contain;
}

.logo span {
  font-size: 1.4rem;
  letter-spacing: 1px;
  background: linear-gradient(to right, var(--gold-accent), #eecd8d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Hamburger Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ivory-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--ivory-white);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold-accent);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-primary {
  padding: 12px 30px;
  background-color: var(--gold-accent);
  color: var(--ivory-white);
  border-radius: var(--radius-lg);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid var(--gold-accent);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--gold-accent);
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 1;
  /* Establishes a stacking context for negative z-index children */
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* for parallax */
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(63, 85, 48, 0.75);
  /* Earthy olive green overlay */
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  color: var(--ivory-white);
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(50px);
  color: var(--ivory-white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  /* Added text shadow */
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  color: rgba(245, 243, 238, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  /* Added text shadow */
}

.hero-content .btn-primary {
  opacity: 0;
  transform: translateY(30px);
}

/* Particles / Leaves overlay */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* About Section */
.about {
  background-color: var(--ivory-white);
}

.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;
  box-shadow: var(--shadow-premium);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background-color: var(--secondary-green);
  color: var(--gold-accent);
  padding: 30px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-premium);
  z-index: 2;
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-text h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--gold-accent);
}

.about-text p {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Services Section */
.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.text-center {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--ivory-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
}

.service-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-content {
  padding: 30px;
  position: relative;
}

.service-icon {
  position: absolute;
  top: -25px;
  right: 30px;
  background: var(--gold-accent);
  color: var(--ivory-white);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(200, 162, 77, 0.4);
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Projects Showcase */
.projects {
  background: #EEF0E5;
}

.projects-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.project-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 400px;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px 30px;
  background: linear-gradient(to top, rgba(63, 85, 48, 0.9), transparent);
  color: var(--ivory-white);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.project-item:hover .project-img {
  transform: scale(1.1);
}

.project-item:hover .project-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(181, 201, 161, 0.2);
  color: var(--primary-dark-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  background: var(--primary-dark-green);
  color: var(--gold-accent);
}

/* Testimonials */
.testimonials {
  background: url('https://images.unsplash.com/photo-1598502425577-507982f1fe2a?auto=format&fit=crop&q=80') center/cover fixed;
  position: relative;
  color: var(--ivory-white);
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(63, 85, 48, 0.85);
  /* Olive green overlay */
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials h2 {
  color: var(--ivory-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.quote-icon {
  font-size: 3rem;
  color: var(--gold-accent);
  opacity: 0.5;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Header Tablet Fix — 800px to 1100px */
@media (max-width: 1100px) and (min-width: 801px) {
  header {
    padding: 12px 2.5%;
    gap: 10px;
  }

  .logo {
    gap: 8px;
    flex-shrink: 0;
  }

  .logo img {
    height: 42px;
  }

  .logo span {
    font-size: 1rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  nav {
    gap: 10px;
    flex-shrink: 1;
  }

  .nav-link {
    font-size: 0.82rem;
  }

  .btn-quote {
    padding: 10px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* Testimonial Slider Styles */
.testimonial-container {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 15px;
}

.testimonial-card-internal {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: var(--transition-smooth);
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card-internal:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold-accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  background: var(--gold-accent);
  color: var(--primary-dark-green);
  border-color: var(--gold-accent);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--gold-accent);
  width: 30px;
  border-radius: 5px;
}

.client-info span {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===========================
   Gallery Section
=========================== */
.gallery-section {
  background: var(--secondary-green);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(63, 85, 48, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 2rem;
  color: var(--gold-accent);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(200, 162, 77, 0.25);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--gold-accent);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.2);
}


/* Responsive Gallery */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

.contact {
  background: var(--primary-dark-green);
  color: var(--ivory-white);
}

.contact h2 {
  color: var(--gold-accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.branches-info {
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

.branch-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.branch-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-accent);
  transform: translateY(-3px);
}

.branch-item h4 {
  color: var(--gold-accent);
  margin-bottom: 8px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.branch-item p {
  font-size: 0.95rem;
  color: rgba(245, 243, 238, 0.8);
  line-height: 1.5;
}

.contact-details {
  margin: 30px 0;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.detail-item i {
  color: var(--gold-accent);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--primary-dark-green);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--ivory-white);
  font-family: inherit;
  transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-accent);
  background: rgba(255, 255, 255, 0.1);
}

footer {
  background: #3F5530;
  padding: 30px 0;
  color: rgba(244, 241, 232, 0.75);
  border-top: 2px solid rgba(200, 170, 90, 0.3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  margin-left: 20px;
}

.footer-links a:hover {
  color: var(--gold-accent);
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: rgba(244, 241, 232, 0.8);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--primary-dark-green);
  transform: translateY(-3px);
}

/* ===========================
   Sticky Floating Buttons
   =========================== */
.sticky-contact-btns {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9000;
}

.sticky-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.sticky-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.sticky-btn i {
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Label floats to the left on hover */
.sticky-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 30, 30, 0.85);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sticky-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(30, 30, 30, 0.85);
}

.sticky-btn:hover .sticky-label {
  opacity: 1;
}

.sticky-whatsapp {
  background: #25D366;
}

.sticky-whatsapp:hover {
  background: #1ebe5b;
}

.sticky-phone {
  background: var(--primary-dark-green);
  border: 2px solid var(--gold-accent);
}

.sticky-phone:hover {
  background: #2e4526;
}

@media (max-width: 480px) {
  .sticky-contact-btns {
    right: 12px;
    bottom: 20px;
    gap: 10px;
  }

  .sticky-btn {
    width: 50px;
    height: 50px;
  }

  .sticky-btn i {
    font-size: 1.4rem;
  }
}


/* ===========================
   RESPONSIVE — Tablet (≤992px)
   =========================== */
@media (max-width: 992px) {

  .projects-gallery,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.8rem;
    /* Smaller for better fit on mobile */
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .about-badge {
    right: 10px;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ===========================
   RESPONSIVE — Mobile (≤768px)
   =========================== */
@media (max-width: 768px) {

  /* Header */
  header {
    padding: 15px 5%;
    background: rgba(63, 85, 48, 0.97);
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(63, 85, 48, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 1050;
  }

  nav.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .header-cta {
    display: none;
  }

  /* Hero */
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-badge {
    right: 10px;
    width: 110px;
    height: 110px;
    padding: 15px;
  }

  .badge-number {
    font-size: 1.8rem;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Projects */
  .projects-gallery {
    grid-template-columns: 1fr;
  }

  /* Why us */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Preloader */
  .preloader-name {
    font-size: 1.6rem;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .preloader-svg {
    width: 90vw;
  }

  /* Section padding */
  .section-padding {
    padding: 70px 5%;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links a {
    margin: 0 10px;
  }
}

/* ===========================
   RESPONSIVE — Small Mobile (≤480px)
   =========================== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn-primary {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  .project-item {
    height: 260px;
  }
}