/* ============================================
   ADITYA ENTERPRISES — Premium Corporate CSS
   Luxury Green + Gold Branding
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green-900: #0B3D2E;
  --green-800: #14532D;
  --green-700: #166534;
  --green-600: #16A34A;
  --green-500: #22C55E;
  --green-400: #4ADE80;
  --green-100: #DCFCE7;
  --green-50: #F0FDF4;
  --gold-500: #D4AF37;
  --gold-400: #E6C74C;
  --gold-300: #F0D96B;
  --gold-600: #B8962E;
  --dark: #0A0F0D;
  --dark-card: #0F1A15;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --glass-bg: rgba(11, 61, 46, 0.35);
  --glass-border: rgba(212, 175, 55, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--green-900);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--green-900);
}

.section-title span {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Glassmorphism Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(11, 61, 46, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .navbar-logo-img {
  width: 40px;
  height: 40px;
}

.navbar-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.navbar-logo .logo-text small {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: -2px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.navbar-links a:hover {
  color: var(--white);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--green-900) !important;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth) !important;
}

.navbar-cta::after {
  display: none !important;
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

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

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

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

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1598902108854-10e335adac99?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 13, 0.82) 0%,
    rgba(11, 61, 46, 0.7) 50%,
    rgba(10, 15, 13, 0.75) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-badge span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-400);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--green-900);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.hero-stat p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-scroll 2s ease-in-out infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

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

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 10px 50px rgba(212, 175, 55, 0.6); }
}

.about-experience-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1;
}

.about-experience-badge .label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-800);
}

.about-content .about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.about-feature:hover {
  background: var(--green-100);
  transform: translateY(-2px);
}

.about-feature .feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.about-feature h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---------- Mission & Vision Section ---------- */
.mission-vision {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  position: relative;
  overflow: hidden;
}

.mission-vision::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.mv-card {
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.mv-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.mv-card .mv-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.mv-card h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
}

.mv-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

/* ---------- Services Section ---------- */
.services {
  background: var(--gray-50);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green-700);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--gold-500);
  gap: 12px;
}
/* ---------- Solutions Showcase Section ---------- */
.solutions-showcase {
  position: relative;
  background: linear-gradient(175deg, var(--dark) 0%, var(--green-900) 50%, var(--dark) 100%);
  padding: 100px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 100vh;
}

.solutions-showcase-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.solutions-showcase-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.solutions-showcase-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    0 0 80px rgba(212, 175, 55, 0.06);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solutions-showcase-img:hover {
  transform: scale(1.015);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.2),
    0 0 120px rgba(212, 175, 55, 0.1);
}

.solutions-showcase-caption {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  text-align: center;
}

.solutions-showcase-caption h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.solutions-showcase-caption p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ---------- Statistics Section ---------- */
.statistics {
  background: linear-gradient(135deg, var(--green-900), var(--dark));
  position: relative;
  overflow: hidden;
}

.statistics::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1598902108854-10e335adac99?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.08;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- Projects Gallery ---------- */
.projects {
  background: var(--white);
  position: relative;
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(11, 61, 46, 0.3);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.project-card.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 61, 46, 0.9) 0%,
    rgba(11, 61, 46, 0.3) 40%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.project-card:hover .project-overlay h4 {
  transform: translateY(0);
}

.project-overlay p {
  font-size: 0.8rem;
  color: var(--gold-400);
  transform: translateY(20px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.project-card:hover .project-overlay p {
  transform: translateY(0);
}

.project-overlay .project-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  font-size: 0.9rem;
  transform: scale(0) rotate(-90deg);
  transition: var(--transition-smooth);
}

.project-card:hover .project-overlay .project-icon {
  transform: scale(1) rotate(0deg);
}

/* ---------- Before & After Section ---------- */
.before-after {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.ba-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.ba-container + .ba-container {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ba-container-reverse {
  direction: rtl;
}

.ba-container-reverse > * {
  direction: ltr;
}

.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 4/3;
}

.ba-slider .ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider .ba-img.after {
  clip-path: inset(0 50% 0 0);
}

.ba-slider .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gold-500);
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.ba-slider .ba-handle::before,
.ba-slider .ba-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ba-slider .ba-handle::before {
  top: 50%;
  transform: translate(-50%, -50%);
}

.ba-slider .ba-handle::after {
  display: none;
}

.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  z-index: 3;
}

.ba-label.before-label {
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.ba-label.after-label {
  left: 16px;
  background: rgba(212, 175, 55, 0.9);
  color: var(--green-900);
}

.ba-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.ba-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.ba-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ba-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.ba-feature-item i {
  width: 28px;
  height: 28px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
  background: linear-gradient(135deg, var(--green-900), var(--dark));
  position: relative;
  overflow: hidden;
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.testimonials-wrapper {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 40px;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-stars i {
  color: var(--gold-500);
  font-size: 1.1rem;
}

.testimonial-inner blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}

.testimonial-inner blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold-500);
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 8px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-500);
}

.testimonial-author-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--gold-400);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

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

.testimonial-dot.active {
  background: var(--gold-500);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* ---------- Clients Section ---------- */
.clients {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.clients-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 12px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition-smooth);
  cursor: default;
}

.client-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--green-200, #BBF7D0);
}

.client-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.client-item:hover .client-logo {
  opacity: 1;
}

.client-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0.02em;
}

.client-item:hover .client-name {
  color: var(--green-700);
}

/* ---------- Contact Section ---------- */
.contact {
  background: var(--gray-50);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  border-color: var(--gold-500);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.contact-info-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--green-900);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--gold-500);
  color: var(--green-900);
  transform: translateY(-3px);
}

.contact-form {
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 16px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 101, 52, 0.3);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo-text span {
  color: var(--gold-500);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 0;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-500);
  padding-left: 8px;
}

.footer-newsletter input {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  outline: none;
  margin-bottom: 12px;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter input:focus {
  border-color: var(--gold-500);
}

.footer-newsletter button {
  width: 100%;
  padding: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--green-900);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gold-400);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--green-900);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-logo {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-img {
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.3));
  animation: preloader-pulse 1.5s ease-in-out infinite alternate;
}

@keyframes preloader-pulse {
  0% { transform: scale(0.95); opacity: 0.85; }
  100% { transform: scale(1.05); opacity: 1; }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 3px;
  animation: preloader-slide 1.2s ease-in-out infinite;
}

@keyframes preloader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---------- Footer Logo ---------- */
.footer-logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.2));
  border-radius: 8px;
}

/* ---------- Address Map Link ---------- */
.address-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(22, 101, 52, 0.3);
}

.address-map-link:hover {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(22, 101, 52, 0.4);
}

.address-map-link i {
  font-size: 0.9rem;
}

/* ---------- Landscape Design Modal ---------- */
.design-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 13, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.design-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.design-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 1100px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.15);
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.design-modal-overlay.active .design-modal {
  transform: scale(1) translateY(0);
}

.design-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(11, 61, 46, 0.08);
  color: var(--green-900);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 10;
}

.design-modal-close:hover {
  background: var(--green-900);
  color: var(--white);
  transform: rotate(90deg);
}

.design-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--gray-200);
}

.design-modal-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.design-modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-900);
  margin: 0;
  line-height: 1.3;
}

.design-modal-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 4px 0 0;
}

.design-modal-body {
  padding: 24px 32px;
  background: var(--gray-50);
}

.design-modal-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  cursor: zoom-in;
  transition: var(--transition-smooth);
}

.design-modal-image:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.design-modal-footer {
  padding: 20px 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--gray-200);
}

.design-modal-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.design-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
}

.design-info-item i {
  color: var(--gold-500);
  font-size: 0.9rem;
}

.design-modal-cta {
  font-size: 0.9rem !important;
  padding: 12px 24px !important;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 998;
}

.whatsapp-float a {
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ============ RESPONSIVE ============ */

/* --- iOS / Mobile: disable fixed attachment (causes rendering bugs) --- */
@supports (-webkit-touch-callout: none) {
  .hero-bg,
  .statistics::before {
    background-attachment: scroll !important;
  }
}

/* --- Touch devices: show project overlays always --- */
@media (hover: none) and (pointer: coarse) {
  .project-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(11, 61, 46, 0.85) 0%,
      rgba(11, 61, 46, 0.15) 50%,
      transparent 100%
    );
  }

  .project-overlay h4,
  .project-overlay p {
    transform: translateY(0);
  }

  .project-overlay .project-icon {
    transform: scale(1) rotate(0deg);
  }

  /* Disable 3D tilt on touch */
  .service-card {
    transform: none !important;
  }

  .service-card:hover {
    transform: none !important;
  }
}

/* --- Body scroll lock when mobile menu open --- */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

/* --- Ultrawide / Large Desktop (1440px+) --- */
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
  }

  .hero-content {
    max-width: 900px;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .section-title {
    font-size: 3.5rem;
  }

  .about-img-main img {
    height: 560px;
  }

  .services-grid {
    gap: 40px;
  }

  .projects-grid {
    gap: 24px;
  }
}

/* --- Tablet Landscape & Small Desktop (1024px) --- */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .section-padding {
    padding: 100px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .about-grid {
    gap: 50px;
  }

  .about-img-main img {
    height: 420px;
  }

  .about-img-float {
    width: 180px;
    height: 180px;
  }

  .stats-grid {
    gap: 24px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .ba-container {
    gap: 40px;
  }

  .contact-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-stats {
    gap: 32px;
  }

  .hero-stat h3 {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 0 20px;
  }
}

/* --- Tablet Portrait (768px) --- */
@media (max-width: 768px) {
  .section-padding {
    padding: 72px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* -- Navbar Mobile Menu -- */
  .menu-toggle {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh; /* dynamic viewport height for mobile browsers */
    flex-direction: column;
    background: rgba(11, 61, 46, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 100px 32px 40px;
    gap: 0;
    transition: var(--transition-smooth);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-links.open {
    right: 0;
  }

  .navbar-links a {
    padding: 16px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
  }

  .navbar-links a::after {
    display: none;
  }

  .navbar-cta {
    margin-top: 20px;
    text-align: center;
    width: 100%;
    justify-content: center;
    display: flex;
  }

  /* -- Hero -- */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-bg {
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero-badge span {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    padding-top: 28px;
  }

  .hero-stat {
    flex: 1 0 40%;
    min-width: 0;
  }

  .hero-stat h3 {
    font-size: 1.8rem;
  }

  .hero-stat p {
    font-size: 0.75rem;
  }

  .hero-scroll {
    display: none;
  }

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

  .about-img-main img {
    height: 300px;
  }

  .about-img-float {
    position: relative;
    bottom: auto;
    right: auto;
    width: 140px;
    height: 140px;
    margin-top: -70px;
    margin-left: 20px;
    border-width: 4px;
  }

  .about-experience-badge {
    width: 85px;
    height: 85px;
    top: -10px;
    left: -10px;
  }

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

  .about-experience-badge .label {
    font-size: 0.5rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  /* -- Mission/Vision -- */
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .mv-card {
    padding: 36px 28px;
  }

  .mv-card h3 {
    font-size: 1.5rem;
  }

  /* -- Services -- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  /* -- Stats -- */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 28px 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  /* -- Solutions Showcase -- */
  .solutions-showcase {
    padding: 64px 16px;
    min-height: auto;
  }

  .solutions-showcase-caption h2 {
    font-size: 1.5rem;
  }

  .solutions-showcase-caption p {
    font-size: 0.9rem;
  }

  .solutions-showcase-caption {
    margin-top: 32px;
  }

  .solutions-showcase-img {
    border-radius: var(--radius-md);
  }

  /* -- Projects -- */
  .projects-filter {
    gap: 8px;
    margin-top: 28px;
    margin-bottom: 32px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .projects-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.78rem;
    flex-shrink: 0;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .project-card.tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }

  .project-overlay {
    padding: 16px;
  }

  .project-overlay h4 {
    font-size: 0.85rem;
  }

  .project-overlay p {
    font-size: 0.7rem;
  }

  .project-overlay .project-icon {
    width: 32px;
    height: 32px;
    top: 12px;
    right: 12px;
    font-size: 0.75rem;
  }

  /* -- Before/After -- */
  .ba-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ba-container-reverse {
    direction: ltr;
  }

  .ba-container-reverse .ba-slider {
    order: -1;
  }

  .ba-container + .ba-container {
    margin-top: 50px;
    padding-top: 50px;
  }

  .ba-slider {
    aspect-ratio: 16/10;
  }

  .ba-content h3 {
    font-size: 1.6rem;
  }

  .ba-feature-item {
    font-size: 0.85rem;
  }

  /* -- Testimonials -- */
  .testimonial-card {
    padding: 0 12px;
  }

  .testimonial-inner {
    padding: 32px 24px;
  }

  .testimonial-inner blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .testimonial-inner blockquote::before {
    font-size: 3rem;
  }

  /* -- Clients -- */
  .clients {
    padding: 48px 0;
  }

  .clients-track {
    gap: 24px;
  }

  .client-item {
    padding: 10px 16px;
    gap: 6px;
  }

  .client-logo {
    height: 55px;
  }

  .client-name {
    font-size: 0.65rem;
  }

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

  .contact-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1rem;
  }

  /* -- Footer -- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* -- Floating buttons -- */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-float a {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

/* --- Large Phone / Landscape Phone (576px–768px) --- */
@media (min-width: 576px) and (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

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

/* --- Landscape phone orientation --- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 80px 0 40px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .hero-stats {
    margin-top: 20px;
    padding-top: 16px;
    gap: 24px;
  }

  .hero-stat h3 {
    font-size: 1.5rem;
  }

  .hero-badge {
    margin-bottom: 16px;
  }

  .hero-badge span {
    font-size: 0.65rem;
  }

  .hero-scroll {
    display: none;
  }

  .section-padding {
    padding: 60px 0;
  }

  .btn-primary, .btn-secondary {
    padding: 12px 28px;
    font-size: 0.85rem;
  }
}

/* --- Small Phone (480px) --- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat h3 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

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

  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .btn-submit {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .testimonial-inner {
    padding: 24px 18px;
  }

  .testimonial-inner blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .testimonial-inner blockquote::before {
    font-size: 2.5rem;
    vertical-align: -0.4em;
    margin-right: 4px;
  }

  .testimonial-author-info h4 {
    font-size: 0.9rem;
  }

  .testimonial-author-info p {
    font-size: 0.72rem;
  }

  .ba-content h3 {
    font-size: 1.4rem;
  }

  .ba-content p {
    font-size: 0.9rem;
  }

  .ba-feature-item {
    font-size: 0.82rem;
  }

  .ba-feature-item i {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 0.65rem;
  }

  .mv-card {
    padding: 28px 22px;
  }

  .mv-card h3 {
    font-size: 1.3rem;
  }

  .mv-card p {
    font-size: 0.9rem;
  }

  .mv-card .mv-icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .about-text {
    font-size: 0.95rem !important;
  }

  .about-img-main img {
    height: 240px;
  }

  .about-img-float {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    border-width: 3px;
  }

  .about-experience-badge {
    width: 75px;
    height: 75px;
  }

  .about-experience-badge .number {
    font-size: 1.5rem;
  }

  .about-experience-badge .label {
    font-size: 0.45rem;
  }

  .about-feature {
    padding: 12px;
  }

  .about-feature .feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .about-feature h4 {
    font-size: 0.82rem;
  }

  .about-feature p {
    font-size: 0.72rem;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .service-card p {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .contact-info-card h4 {
    font-size: 0.88rem;
  }

  .contact-info-card p {
    font-size: 0.82rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .footer-brand .logo-text {
    font-size: 1.3rem;
  }

  .footer-brand p {
    font-size: 0.82rem;
  }

  .navbar-logo .logo-text {
    font-size: 1.15rem;
  }

  .navbar-logo .logo-text small {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }

  .navbar-logo-img {
    width: 38px;
    height: 38px;
  }

  .footer-logo-img {
    width: 55px;
    height: 55px;
  }

  .address-map-link {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .clients-track {
    gap: 16px;
  }

  .client-item {
    padding: 8px 12px;
    gap: 4px;
  }

  .client-logo {
    height: 45px;
  }

  .client-name {
    font-size: 0.6rem;
  }

  .preloader-logo-img {
    width: 100px;
  }

  .preloader-bar {
    width: 150px;
  }

  .solutions-showcase {
    padding: 48px 12px;
  }

  .solutions-showcase-caption h2 {
    font-size: 1.3rem;
  }

  .solutions-showcase-caption p {
    font-size: 0.82rem;
  }

  .solutions-showcase-caption {
    margin-top: 24px;
  }

  .solutions-showcase-img {
    border-radius: var(--radius-sm);
  }
}

/* --- Ultra-Narrow (360px & below — Galaxy Fold, small Android) --- */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .solutions-showcase {
    padding: 36px 10px;
  }

  .solutions-showcase-caption h2 {
    font-size: 1.15rem;
  }

  .solutions-showcase-caption p {
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-badge {
    padding: 6px 14px;
  }

  .hero-badge span {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .hero-stats {
    gap: 8px;
  }

  .hero-stat {
    flex: 1 0 45%;
  }

  .hero-stat h3 {
    font-size: 1.4rem;
  }

  .hero-stat p {
    font-size: 0.65rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .section-tag {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }

  .section-tag::before {
    width: 24px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-card {
    aspect-ratio: 4/3;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .btn-primary, .btn-secondary {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .navbar-links {
    width: 240px;
    padding: 90px 24px 32px;
  }

  .testimonial-inner blockquote {
    font-size: 0.88rem;
  }

  .testimonial-inner blockquote::before {
    font-size: 2rem;
    margin-right: 2px;
  }

  .ba-slider .ba-handle::before {
    width: 36px;
    height: 36px;
  }

  .ba-label {
    font-size: 0.65rem;
    padding: 4px 10px;
    letter-spacing: 1px;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 0.72rem;
  }

  .about-img-main img {
    height: 200px;
  }

  .about-img-float {
    width: 100px;
    height: 100px;
    margin-top: -50px;
  }

  .about-experience-badge {
    width: 65px;
    height: 65px;
  }

  .about-experience-badge .number {
    font-size: 1.3rem;
  }

  .mv-card {
    padding: 24px 18px;
  }

  .contact-form {
    padding: 20px 14px;
  }

  .contact-info-card {
    padding: 16px;
    gap: 14px;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .footer h4 {
    font-size: 0.85rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }
  .design-modal {
    max-height: 85vh;
    border-radius: var(--radius-md);
  }

  .design-modal-header {
    padding: 20px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .design-modal-logo {
    width: 40px;
    height: 40px;
  }

  .design-modal-header h2 {
    font-size: 1.1rem;
  }

  .design-modal-header p {
    font-size: 0.75rem;
  }

  .design-modal-body {
    padding: 16px;
  }

  .design-modal-footer {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .design-modal-info {
    gap: 12px;
  }

  .design-info-item {
    font-size: 0.72rem;
  }

  .design-modal-close {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
    font-size: 1rem;
  }
}

/* --- Safe area insets for notched devices (iPhone X+) --- */
@supports (padding: env(safe-area-inset-bottom)) {
  .navbar {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .footer-bottom {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .back-to-top {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .whatsapp-float {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .navbar-links {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}

/* --- Reduce motion for accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .hero-bg {
    transform: none !important;
  }

  .clients-track {
    animation: none;
  }

  .hero-particle {
    display: none;
  }
}

/* --- Print styles --- */
@media print {
  .navbar, .preloader, .back-to-top, .whatsapp-float,
  .hero-particles, .hero-scroll, .menu-toggle {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section-padding {
    padding: 30px 0;
  }
}

/* ---------- SEO & Accessibility Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* stat-value replaces h3 in hero stats for proper heading hierarchy */
.hero-stat .stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}