@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ==========================================================================
   CSS VARIABLES — PREMIUM DESIGN SYSTEM
   ========================================================================== */
:root {
  /* Primary Palette — Rich Forest & Gold */
  --primary-color: #0a6b2e;
  --primary-color-hover: #085222;
  --primary-color-light: #e8f5ec;
  --primary-dark: #063d1a;
  --primary-gradient: linear-gradient(135deg, #0a6b2e 0%, #0d8a3b 50%, #0a6b2e 100%);
  --primary-gradient-vivid: linear-gradient(135deg, #085222 0%, #0a6b2e 40%, #11a045 100%);

  /* Gold / Accent */
  --secondary-color: #f0b90b;
  --secondary-color-hover: #d4a00a;
  --secondary-color-light: #fdf6e3;
  --gold-gradient: linear-gradient(135deg, #f0b90b 0%, #f7d36e 50%, #f0b90b 100%);
  --gold-shimmer: linear-gradient(90deg, #f0b90b 0%, #ffe082 30%, #f0b90b 60%, #ffe082 100%);

  /* Neutrals */
  --text-dark: #101820;
  --text-gray: #3d4f5f;
  --text-light: #6b7c8d;
  --text-muted: #94a3b8;
  --bg-color: #ffffff;
  --bg-light: #f5f7fa;
  --bg-warm: #fafaf7;
  --border-color: #e2e8f0;
  --border-light: #f0f2f5;
  --white: #ffffff;
  --black: #0a0a0a;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Premium Shadows */
  --shadow-xs: 0 1px 2px rgba(10, 107, 46, 0.04);
  --shadow-sm: 0 2px 8px rgba(10, 107, 46, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 107, 46, 0.08);
  --shadow-lg: 0 8px 32px rgba(10, 107, 46, 0.10);
  --shadow-xl: 0 16px 48px rgba(10, 107, 46, 0.12);
  --shadow-hover: 0 20px 60px rgba(10, 107, 46, 0.16);
  --shadow-gold: 0 4px 20px rgba(240, 185, 11, 0.25);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(10,107,46,0.06);
  --shadow-card-hover: 0 8px 30px rgba(10,107,46,0.12), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-glass: 0 8px 32px rgba(0,0,0,0.08);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-gray);
  background-color: var(--bg-color);
  line-height: 1.7;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

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

::selection {
  background-color: rgba(10, 107, 46, 0.15);
  color: var(--primary-dark);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  position: relative;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ==========================================================================
   PREMIUM BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(10, 107, 46, 0.3);
}

.btn-primary:hover {
  background: var(--primary-gradient-vivid);
  box-shadow: 0 8px 25px rgba(10, 107, 46, 0.4);
  transform: translateY(-3px);
  color: var(--white);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}

.btn-secondary:hover {
  box-shadow: 0 8px 30px rgba(240, 185, 11, 0.4);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10, 107, 46, 0.3);
}

/* ==========================================================================
   TOP INFO BAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #063d1a 0%, #0a6b2e 50%, #063d1a 100%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  letter-spacing: 0.02em;
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left i {
  color: var(--secondary-color);
  font-size: 0.78rem;
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 6px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  transition: all var(--transition-normal);
}

.top-bar-right a:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-1px);
}

/* ==========================================================================
   HEADER & NAVIGATION — PREMIUM GLASSMORPHISM
   ========================================================================== */
.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(10, 107, 46, 0.06);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 30px rgba(10, 107, 46, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  border-bottom-color: transparent;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
  transition: height var(--transition-normal);
}

.site-header.scrolled .nav-container {
  height: 66px;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform var(--transition-normal);
}

.logo:hover {
  transform: scale(1.03);
}

.logo img {
  height: 46px;
  width: auto;
  transition: all var(--transition-normal);
}

.site-header.scrolled .logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 18px;
  right: 18px;
  height: 2.5px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(10, 107, 46, 0.04);
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
  background: rgba(10, 107, 46, 0.04);
}

.cta-btn {
  background: var(--primary-gradient) !important;
  color: var(--white) !important;
  padding: 11px 26px !important;
  border-radius: var(--radius-full) !important;
  font-size: 0.88rem !important;
  box-shadow: 0 4px 15px rgba(10, 107, 46, 0.25);
  margin-left: 12px;
  border: none !important;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.cta-btn:hover::after {
  left: 100%;
}

.cta-btn:hover {
  box-shadow: 0 6px 25px rgba(10, 107, 46, 0.35);
  transform: translateY(-2px);
}

.cta-btn i {
  animation: ctaRing 3s ease-in-out infinite;
}

@keyframes ctaRing {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(8deg); }
  40% { transform: rotate(0deg); }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--primary-color);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION — PREMIUM SPLIT LAYOUT
   ========================================================================== */
.hero {
  padding: 160px 0 120px;
  background: linear-gradient(165deg, #f5f7fa 0%, #ffffff 35%, #fafaf7 70%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(10, 107, 46, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 185, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.75rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-title span,
.hero-title strong {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-list {
  margin-bottom: 40px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1.02rem;
}

.hero-list i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 4px rgba(240, 185, 11, 0.3));
}

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

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  border: 2px solid rgba(10, 107, 46, 0.12);
  border-radius: 30px;
  z-index: -1;
  transition: all var(--transition-normal);
}

.hero-image:hover::before {
  top: -22px;
  right: -22px;
  bottom: -22px;
  left: -22px;
  border-color: rgba(10, 107, 46, 0.22);
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-image:hover img {
  transform: scale(1.02);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 10;
  transition: all var(--transition-normal) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.badge-1 {
  top: 15%;
  left: -35px;
  animation: floatBadge1 4s infinite alternate ease-in-out;
}

.badge-2 {
  bottom: 12%;
  right: -25px;
  animation: floatBadge2 4.5s infinite alternate ease-in-out;
}

.floating-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(10, 107, 46, 0.15);
  background: #ffffff;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.icon-green {
  background: rgba(10, 107, 46, 0.1);
  color: var(--primary-color);
}

.icon-gold {
  background: rgba(240, 185, 11, 0.1);
  color: var(--secondary-color-hover);
}

.badge-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 1px 0;
  color: var(--text-dark);
}

.badge-text p {
  font-size: 0.72rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 500;
  white-space: nowrap;
}

/* Badge Animations */
@keyframes floatBadge1 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes floatBadge2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  animation: floatPremium 12s infinite ease-in-out alternate;
  pointer-events: none;
}

.shape-1 {
  width: 350px;
  height: 350px;
  background: rgba(10, 107, 46, 0.06);
  top: 8%;
  right: -8%;
}

.shape-2 {
  width: 280px;
  height: 280px;
  background: rgba(240, 185, 11, 0.07);
  bottom: 8%;
  left: -8%;
  animation-delay: -6s;
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-divider .shape-fill {
  fill: var(--white);
}

/* ==========================================================================
   SERVICE CARDS — PREMIUM GLASS STYLE
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 107, 46, 0.02) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(10, 107, 46, 0.1);
}

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

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-color-light) 0%, rgba(10, 107, 46, 0.08) 100%);
  color: var(--primary-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: var(--primary-gradient);
  color: var(--white);
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 20px rgba(10, 107, 46, 0.25);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.btn-readmore {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.btn-readmore::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.btn-readmore:hover::after {
  width: 100%;
}

.btn-readmore i {
  transition: transform var(--transition-fast);
}

.btn-readmore:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
   WHY CHOOSE US — FEATURES
   ========================================================================== */
.features {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-warm) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(240, 185, 11, 0.2);
}

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--secondary-color-light) 0%, rgba(240, 185, 11, 0.12) 100%);
  color: var(--secondary-color-hover);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all var(--transition-normal);
}

.feature-item:hover .feature-icon {
  background: var(--gold-gradient);
  color: var(--text-dark);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.feature-content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================================
   LOAN PROCESS — PREMIUM TIMELINE
   ========================================================================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 27px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.2;
  z-index: 1;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.timeline-step {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2.5px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 8px rgba(10, 107, 46, 0.08);
  transition: all var(--transition-normal);
  font-family: var(--font-heading);
}

.timeline-item:hover .timeline-step {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 6px var(--white), 0 4px 15px rgba(10, 107, 46, 0.25);
}

.timeline-content {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  flex-grow: 1;
  transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-content {
  transform: translateX(6px);
  border-color: rgba(10, 107, 46, 0.12);
  box-shadow: var(--shadow-card-hover);
}

.timeline-content h3 {
  margin-bottom: 8px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================================================
   CALL TO ACTION — PREMIUM BANNER
   ========================================================================== */
.cta-section {
  background: radial-gradient(circle at 10% 20%, rgba(10, 107, 46, 0.96) 0%, rgba(6, 61, 26, 0.98) 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 60px;
  border-radius: var(--radius-xl);
  margin: 50px auto;
  max-width: 1160px;
  box-shadow: 0 30px 70px rgba(10, 107, 46, 0.22);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.cta-section:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(10, 107, 46, 0.35);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  z-index: 2;
}

.cta-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 80%, rgba(240, 185, 11, 0.08) 0%, transparent 60%),
                    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.cta-section::after {
  content: '\f095';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-size: 220px;
  color: rgba(255, 255, 255, 0.03);
  transform: rotate(-15deg);
  z-index: 1;
  transition: transform var(--transition-slow) ease-in-out, color var(--transition-normal);
}

.cta-section:hover::after {
  transform: rotate(-5deg) scale(1.08);
  color: rgba(252, 191, 7, 0.04);
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.8rem;
  margin-bottom: 36px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.cta-phone-link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 4px 15px rgba(240, 185, 11, 0.2);
}

.cta-phone-link i {
  font-size: 1.6rem;
  transition: transform var(--transition-normal);
}

.cta-phone-link:hover {
  color: var(--white);
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
  transform: scale(1.02);
}

.cta-phone-link:hover i {
  transform: scale(1.1) rotate(-10deg);
}

.cta-section .btn-secondary {
  font-size: 1.1rem;
  padding: 16px 48px;
  position: relative;
  z-index: 2;
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(240, 185, 11, 0.35);
  transition: all var(--transition-normal);
}

.cta-section .btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(240, 185, 11, 0.5);
}

/* ==========================================================================
   ABOUT PAGE — HERO & CONTENT
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, rgba(12, 128, 56, 0.9) 0%, rgba(6, 61, 26, 0.95) 100%), url('../images/page-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 190px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: ellipse(140% 100% at 50% 0%);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 15% 70%, rgba(240, 185, 11, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
}

.page-hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 2;
  max-width: 550px;
  margin: 0 auto;
}

/* Breadcrumbs Styling */
.breadcrumbs {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--secondary-color);
}

.breadcrumbs i {
  font-size: 0.65rem;
  opacity: 0.5;
}

.breadcrumbs span {
  color: var(--white);
}

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

.about-image-wrapper {
  position: relative;
  z-index: 2;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: -15px;
  left: -15px;
  border: 2px solid rgba(10, 107, 46, 0.12);
  border-radius: 28px;
  z-index: -1;
  transition: all var(--transition-normal);
}

.about-image-wrapper:hover::before {
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  border-color: rgba(10, 107, 46, 0.22);
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.02);
}

/* Premium Business Stats Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-stat-item {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: all var(--transition-normal);
}

.about-stat-item:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 107, 46, 0.16);
}

.about-stat-item h3 {
  font-size: 1.9rem;
  font-family: var(--font-heading);
  background: var(--primary-gradient-vivid);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  font-weight: 800;
}

.about-stat-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

/* Direction-based Reveal Animations */
.reveal.slide-left {
  transform: translateX(-40px);
}

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

.reveal.slide-right {
  transform: translateX(40px);
}

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

.core-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal), border-color var(--transition-fast);
}

.core-values .value-card:nth-child(1) { transition-delay: 0.1s; }
.core-values .value-card:nth-child(2) { transition-delay: 0.2s; }
.core-values .value-card:nth-child(3) { transition-delay: 0.3s; }
.core-values .value-card:nth-child(4) { transition-delay: 0.4s; }

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(10, 107, 46, 0.2);
}

.value-card i {
  font-size: 36px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: inline-block;
  transition: all var(--transition-normal);
}

/* Micro-animations on hover */
.value-card:hover i.fa-handshake {
  animation: pulseBeat 1.2s infinite ease-in-out;
  background: var(--primary-gradient-vivid);
  -webkit-background-clip: text;
  background-clip: text;
}

.value-card:hover i.fa-bolt {
  animation: boltFlash 0.8s infinite alternate ease-in-out;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.value-card:hover i.fa-shield-halved {
  animation: shieldTilt 1s infinite alternate ease-in-out;
}

.value-card:hover i.fa-face-smile {
  animation: smileBounce 1s infinite ease-in-out;
}

.value-card h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Micro-animation Keyframes */
@keyframes pulseBeat {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

@keyframes boltFlash {
  0% { transform: scale(1) translateY(0); filter: drop-shadow(0 0 2px rgba(240, 185, 11, 0.3)); }
  100% { transform: scale(1.15) translateY(-3px); filter: drop-shadow(0 0 10px rgba(240, 185, 11, 0.7)); }
}

@keyframes shieldTilt {
  0% { transform: rotate(-8deg) scale(1); }
  100% { transform: rotate(8deg) scale(1.15); }
}

@keyframes smileBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px) scale(1.15); }
}

/* ==========================================================================
   CONTACT PAGE — PREMIUM FORM
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}

.contact-info {
  background: var(--primary-gradient-vivid);
  color: var(--white);
  padding: 44px;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(10, 107, 46, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 32px;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.contact-detail {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.contact-detail i {
  font-size: 22px;
  color: var(--secondary-color);
  margin-top: 4px;
  filter: drop-shadow(0 2px 4px rgba(240, 185, 11, 0.3));
}

.contact-detail h4 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-detail p {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-form-container {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.contact-form-container h3 {
  margin-bottom: 32px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.92rem;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(10, 107, 46, 0.08);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7c8d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.map-container {
  margin-top: 60px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 450px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

/* ==========================================================================
   SIMPLE PAGES (Privacy, Terms)
   ========================================================================== */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.content-wrapper h2 {
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-wrapper p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.content-wrapper ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc;
}

.content-wrapper li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ==========================================================================
   SERVICES PAGE — DETAIL SECTIONS
   ========================================================================== */
.service-detail-section {
  margin-bottom: 32px;
  padding: 44px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-detail-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-detail-section:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(10, 107, 46, 0.1);
}

.service-detail-section:hover::before {
  opacity: 1;
}

.service-detail-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
}

.service-detail-section h2 i {
  color: var(--secondary-color);
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(240, 185, 11, 0.3));
}

.service-detail-section p {
  margin-bottom: 15px;
  color: var(--text-gray);
  line-height: 1.8;
}

.service-detail-section ul {
  margin-left: 20px;
  list-style: none;
  margin-bottom: 24px;
}

.service-detail-section li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  color: var(--text-gray);
}

.service-detail-section li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.85rem;
}

/* ==========================================================================
   FOOTER — PREMIUM DARK
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #0f1923 0%, #101820 100%);
  color: var(--white);
  padding: 80px 0 24px;
  margin-top: auto;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), var(--primary-color), transparent);
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 56px;
  background-color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: transform var(--transition-normal);
}

.footer-logo:hover img {
  transform: scale(1.03);
}

.footer-desc {
  color: #8895a4;
  margin-bottom: 25px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-title {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 32px;
  height: 2.5px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #8895a4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  transition: all var(--transition-normal);
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #8895a4;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-contact-info i {
  color: var(--secondary-color);
  margin-top: 4px;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: #8895a4;
  transition: all var(--transition-normal);
  font-size: 0.9rem;
}

.social-icons a:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #5a6775;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   ANIMATIONS — PREMIUM SMOOTH
   ========================================================================== */
@keyframes floatPremium {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-25px) scale(1.03); }
}

@keyframes ripple {
  0% { box-shadow: 0 0 0 0 rgba(240, 185, 11, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(240, 185, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 185, 11, 0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ripple-effect {
  animation: ripple 2.5s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in;
}

.fade-in.active {
  opacity: 1;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==========================================================================
   SCROLLBAR — CUSTOM PREMIUM
   ========================================================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* ==========================================================================
   MEDIA QUERIES — RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .hero-container, .about-content-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-list {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto 40px;
    width: auto;
  }

  .hero-list li {
    justify-content: flex-start;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-image::before,
  .hero-image::after {
    display: none;
  }

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

  .timeline::before {
    left: 22px;
  }

  .timeline-step {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .contact-info {
    padding: 36px;
  }

  .contact-form-container {
    padding: 36px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    align-items: center;
    gap: 8px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
  }

  .nav-menu.active {
    left: 0;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu .nav-link {
    font-size: 1.15rem;
    padding: 14px 24px;
  }

  .hamburger {
    display: block;
  }

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

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

  .content-wrapper {
    padding: 30px 20px;
  }

  .service-detail-section {
    padding: 32px 24px;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-section h2 {
    font-size: 1.85rem;
  }

  .cta-section p {
    font-size: 1.3rem;
  }

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

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

  .about-content-grid {
    gap: 32px;
  }

  .contact-info {
    padding: 28px;
  }

  .contact-form-container {
    padding: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .badge-1 {
    left: -15px;
    top: 5%;
  }
  
  .badge-2 {
    right: -10px;
    bottom: 5%;
  }
  
  .floating-badge {
    padding: 8px 12px;
  }
  
  .badge-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  
  .badge-text h4 {
    font-size: 0.8rem;
  }
  
  .badge-text p {
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   ENHANCED RESPONSIVE — ADDITIONAL RULES
   ========================================================================== */

/* ---- 992px additions ---- */
@media (max-width: 992px) {
  .page-hero {
    padding: 160px 0 90px;
  }

  .cta-section {
    padding: 70px 44px;
  }

  .about-stats-grid {
    gap: 14px;
  }
}

/* ---- 768px additions ---- */
@media (max-width: 768px) {
  /* Top bar — hide location span on small screens */
  .top-bar-left span:last-of-type,
  .top-bar-divider {
    display: none;
  }

  .top-bar {
    font-size: 0.78rem;
  }

  /* Header position update */
  .site-header {
    top: 32px;
  }

  .site-header.scrolled {
    top: 0;
  }

  /* Mobile nav CTA button */
  .nav-menu .cta-btn {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    font-size: 1rem !important;
    padding: 14px 28px !important;
  }

  /* Hamburger z-index above overlay */
  .hamburger {
    z-index: 1002;
    position: relative;
  }

  .hamburger.active .line1 {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .hamburger.active .line2 {
    opacity: 0;
  }

  .hamburger.active .line3 {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* Hero */
  .hero {
    padding: 140px 0 100px;
  }

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

  .hero-image {
    max-width: 480px;
    margin: 0 auto;
  }

  /* Floating badges — keep inside viewport */
  .badge-1 {
    left: 8px;
    top: 8%;
  }

  .badge-2 {
    right: 8px;
    bottom: 8%;
  }

  /* About grid */
  .about-content-grid {
    gap: 40px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

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

  /* Page hero for inner pages */
  .page-hero {
    padding: 140px 0 80px;
  }

  .page-hero h1 {
    font-size: 2.4rem;
  }

  /* Typography */
  .section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
  }

  /* CTA */
  .cta-section {
    padding: 60px 32px;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }

  .cta-section p {
    font-size: 1.4rem;
  }

  /* Prevent horizontal scroll from timeline hover */
  .timeline-item:hover .timeline-content {
    transform: none;
  }

  /* Contact */
  .contact-info {
    padding: 32px 24px;
  }

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

  /* Map */
  .map-container {
    height: 300px;
  }

  /* Nav links full width in mobile menu */
  .nav-menu .nav-link {
    width: 100%;
    text-align: center;
  }
}

/* ---- 480px additions ---- */
@media (max-width: 480px) {
  /* Top bar */
  .top-bar {
    font-size: 0.72rem;
    padding: 6px 0;
  }

  .top-bar-right a {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  /* Header */
  .site-header {
    top: 28px;
  }

  /* Nav container */
  .nav-container {
    height: 64px;
  }

  .logo img {
    height: 38px;
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero-buttons {
    align-items: center;
    gap: 12px;
  }

  /* Badges */
  .badge-1 {
    left: 0;
    top: 5%;
  }

  .badge-2 {
    right: 0;
    bottom: 5%;
  }

  /* Services */
  .service-card {
    padding: 32px 22px;
  }

  /* About stats */
  .about-stat-item {
    padding: 14px 10px;
  }

  .about-stat-item h3 {
    font-size: 1.3rem;
  }

  .about-stat-item p {
    font-size: 0.72rem;
    white-space: normal;
  }

  /* Page hero */
  .page-hero {
    padding: 130px 0 70px;
  }

  .page-hero p {
    font-size: 1rem;
  }

  /* CTA phone link stacks vertically */
  .cta-phone-link {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .cta-phone-link i {
    font-size: 1.3rem;
  }

  .cta-section {
    margin: 32px auto;
    border-radius: var(--radius-lg);
  }

  .cta-section p {
    margin-bottom: 24px;
  }

  /* Features — single column on xs */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Timeline */
  .timeline-item {
    gap: 18px;
  }

  .timeline-step {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline::before {
    left: 19px;
  }

  /* Contact */
  .contact-detail {
    gap: 14px;
    margin-bottom: 20px;
  }

  .map-container {
    height: 240px;
    margin-top: 40px;
  }

  /* Services detail page */
  .service-detail-section {
    padding: 28px 18px;
    margin-bottom: 20px;
  }

  .service-detail-section h2 {
    font-size: 1.25rem;
    gap: 10px;
  }

  /* Content pages */
  .content-wrapper {
    padding: 24px 16px;
  }

  /* Footer */
  .site-footer {
    padding: 60px 0 20px;
  }

  .footer-grid {
    gap: 28px;
    margin-bottom: 40px;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  /* Core values — 2 columns */
  .core-values {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* Section subtitle */
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* ==========================================================================
   EXTRA SMALL — 360px
   ========================================================================== */
@media (max-width: 360px) {
  .top-bar-left {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;
  }

  .site-header {
    top: 24px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

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

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

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

  .core-values {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 1.55rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .floating-badge {
    display: none;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .container {
    padding: 0 12px;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .nav-container {
    height: 58px;
  }

  .logo img {
    height: 34px;
  }
}
