/* ==========================================================================
   AK AGRI SOLUTIONS - MASTER STYLESHEET
   Design Theme: "Apple meets Agriculture" - Simple, Elegant & Premium
   Palette:
     - Forest Green:  #2E7D32 (Primary)
     - Leaf Green:    #66BB6A (Secondary)
     - Golden Harvest:#D4A017 (Accent / CTA)
     - Soft White:    #F8F9F4 (Background)
     - Dark Charcoal: #333333 (Text)
     - Sky Blue:      #4FA3D9 (Subtle Accent)
   ========================================================================== */

:root {
  --color-primary: #2E7D32;
  --color-primary-dark: #1B5E20;
  --color-primary-deep: #133D16;
  --color-primary-light: #43A047;
  
  --color-secondary: #66BB6A;
  --color-secondary-light: #A5D6A7;
  --color-secondary-subtle: #E8F5E9;
  
  --color-accent: #D4A017;
  --color-accent-hover: #B8860B;
  --color-accent-light: #FFF8E1;
  --color-accent-glow: rgba(212, 160, 23, 0.25);
  
  --color-sky-blue: #4FA3D9;
  --color-sky-blue-subtle: #EBF5FB;
  
  --color-bg: #F8F9F4;
  --color-bg-card: #FFFFFF;
  --color-bg-subtle: #F1F4EB;
  --color-border: #E3E9DC;
  --color-border-hover: #C5D6B9;
  
  --color-text-main: #333333;
  --color-text-muted: #666666;
  --color-text-light: #888888;
  --color-white: #FFFFFF;

  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(46, 125, 50, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 45px rgba(46, 125, 50, 0.15);
  --shadow-gold: 0 8px 22px rgba(212, 160, 23, 0.28);

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

a:hover {
  color: var(--color-primary-light);
}

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

ul {
  list-style: none;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   BUTTONS & UI COMPONENTS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(46, 125, 50, 0.35);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-secondary:hover {
  background-color: #57a85b;
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--color-accent);
  color: #1A1A1A;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-color: #E2AD20;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 160, 23, 0.4);
}

.btn-header-cta {
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary-dark);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-gold {
  background-color: var(--color-accent-light);
  color: #936B00;
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.badge-green {
  background-color: var(--color-secondary-subtle);
  color: var(--color-primary-dark);
  border: 1px solid rgba(46, 125, 50, 0.2);
}

.badge-blue {
  background-color: var(--color-sky-blue-subtle);
  color: #1c6ba0;
  border: 1px solid rgba(79, 163, 217, 0.3);
}

/* ==========================================================================
   HEADER & NAVBAR (FIXED MENU LAYOUT & PNG LOGO)
   ========================================================================== */

/* Topbar */
.topbar {
  background-color: var(--color-primary-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1400px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-item i {
  color: var(--color-secondary);
}

.topbar-badge {
  background: rgba(212, 160, 23, 0.2);
  color: #F8D368;
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.topbar-badge i {
  color: #F8D368;
}

.topbar-link {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar-link:hover {
  color: var(--color-secondary-light);
}

/* Main Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.5rem;
  max-width: 1420px;
  width: 100%;
}

/* Brand Logo PNG */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
  transition: transform var(--transition-fast);
}

.brand-logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.2px;
}

/* Navigation Menu - Clean, Single Row, No Word Breaks */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-item {
  flex-shrink: 0;
}

.nav-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: #374151;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-primary);
  background-color: var(--color-secondary-subtle);
}

.nav-link.active {
  color: var(--color-primary);
  background-color: var(--color-secondary-subtle);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle .bar {
  width: 24px;
  height: 2.5px;
  background-color: var(--color-primary-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #18471b 0%, #2E7D32 55%, #3d9241 100%);
  color: var(--color-white);
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(#ffffff 2px, transparent 2px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge-wrap {
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.18;
  margin-bottom: 1.35rem;
  letter-spacing: -0.5px;
}

.hero-title span.text-gold {
  color: #FBD769;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero Visual Box */
.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.hero-card-stack img.hero-main-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  background: #1B5E20;
}

.floating-stat-card {
  position: absolute;
  background: var(--color-white);
  color: var(--color-text-main);
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.floating-stat-card.top-right {
  top: -18px;
  right: -18px;
}

.floating-stat-card.bottom-left {
  bottom: -18px;
  left: -18px;
  animation-delay: 2s;
}

.floating-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.floating-stat-icon.gold {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.floating-stat-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.1;
  white-space: nowrap;
}

.floating-stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

/* Page Header Banner for Inner Pages */
.page-header {
  background: linear-gradient(135deg, #18471b 0%, #2E7D32 70%, #368f3a 100%);
  color: var(--color-white);
  padding: 4rem 0 4rem;
  position: relative;
  text-align: center;
}

.page-header-title {
  font-size: 2.6rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.page-header-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto 1.25rem;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
}

.breadcrumb-nav a {
  color: #F8D368;
}

.breadcrumb-nav span.sep {
  opacity: 0.6;
}

.breadcrumb-nav span.current {
  color: var(--color-white);
}

/* ==========================================================================
   IMPACT STATS STRIP / METRICS SECTION (SINGLE HORIZONTAL LINE)
   ========================================================================== */

.stats-section {
  position: relative;
  margin-top: -3.2rem;
  z-index: 10;
  margin-bottom: 3.5rem;
}

.stats-card-container {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

/* Single line grid for 6 stats on desktop */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.stat-item {
  text-align: center;
  padding: 0.4rem 0.5rem;
  border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--color-secondary-subtle);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  transition: transform var(--transition-fast);
}

.stat-item:hover .stat-icon-wrap {
  transform: scale(1.1);
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  white-space: nowrap;
}

.stat-number span.stat-gold {
  color: var(--color-accent);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.3;
}

.stat-subtext {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
  line-height: 1.35;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */

.section {
  padding: 4.5rem 0;
}

.section-subtle {
  background-color: var(--color-bg-subtle);
}

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

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.section-tag.gold {
  color: var(--color-accent);
}

.section-title {
  font-size: 2.25rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.85rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Signature Quote Box */
.signature-box {
  background: linear-gradient(135deg, #f0f7ef 0%, #e5f2e3 100%);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.5rem;
  margin: 3rem auto;
  max-width: 960px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.signature-box i.quote-icon {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: block;
}

.signature-box p.signature-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary-deep);
  line-height: 1.6;
  font-style: italic;
}

.signature-author {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signature-author strong {
  color: var(--color-primary-dark);
  font-size: 1rem;
}

.signature-author span {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   SERVICES CARDS & GRID
   ========================================================================== */

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

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border-hover);
}

.service-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #1B5E20;
}

.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: #1B5E20;
}

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

.service-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-accent);
  color: #1A1A1A;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-secondary-subtle);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--color-primary);
  color: var(--color-white);
}

.service-card-title {
  font-size: 1.28rem;
  margin-bottom: 0.4rem;
  color: var(--color-primary-dark);
}

.service-card-tagline {
  font-size: 0.85rem;
  color: var(--color-accent-hover);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1.15rem;
}

.service-offerings-list {
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

.service-offerings-list li {
  font-size: 0.85rem;
  color: var(--color-text-main);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.service-offerings-list li i {
  color: var(--color-secondary);
  margin-top: 0.25rem;
  font-size: 0.8rem;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-link:hover {
  color: var(--color-primary-dark);
  gap: 0.55rem;
}

/* ==========================================================================
   SPOTLIGHT BANNER (KATHIDHAN DISTRIBUTOR)
   ========================================================================== */

.spotlight-banner {
  background: linear-gradient(135deg, #0d3814 0%, #1e5924 60%, #2a7331 100%);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin: 3.5rem 0;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.spotlight-badge {
  background: var(--color-accent);
  color: #1A1A1A;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.spotlight-title {
  font-size: 2.15rem;
  color: var(--color-white);
  margin-bottom: 0.85rem;
}

.spotlight-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.spotlight-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.spotlight-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.spotlight-feature-item i {
  color: #F8D368;
}

.spotlight-image-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
}

.spotlight-image-card img {
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #1B5E20;
}

/* ==========================================================================
   WHY CHOOSE US / VALUE PROPOSITIONS
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-card:hover .why-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.why-title {
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.why-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   ABOUT & FOUNDER PROFILE
   ========================================================================== */

.founder-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3.5rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
  height: 100%;
  min-height: 460px;
  background: linear-gradient(135deg, #2E7D32 0%, #1a531e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.founder-img-wrap img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
}

.founder-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.founder-badge-overlay h4 {
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.15rem;
}

.founder-badge-overlay p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.founder-content {
  padding: 3rem;
}

.founder-tag {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
  display: block;
}

.founder-name {
  font-size: 2.3rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}

.founder-role {
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.founder-quote-banner {
  background: var(--color-accent-light);
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-style: italic;
  color: #7A5800;
  font-weight: 600;
  margin-bottom: 1.35rem;
  font-size: 0.95rem;
}

.founder-bio {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.founder-credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.credential-box {
  background: var(--color-bg-subtle);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.credential-box h5 {
  font-size: 0.88rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.credential-box p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--color-secondary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.value-card:hover .value-icon {
  background: var(--color-accent);
  color: #1A1A1A;
}

.value-title {
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   TIMELINE SECTION
   ========================================================================== */

.timeline-container {
  position: relative;
  max-width: 960px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
  border-radius: var(--radius-full);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  width: 50%;
  padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 2.5rem;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: 2.5rem;
}

.timeline-dot {
  position: absolute;
  top: 15px;
  width: 22px;
  height: 22px;
  background: var(--color-white);
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--color-secondary-subtle);
  transition: all var(--transition-fast);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -11px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -11px;
}

.timeline-item:hover .timeline-dot {
  background: var(--color-accent);
  border-color: var(--color-primary-dark);
  transform: scale(1.2);
}

.timeline-content-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: inline-block;
  width: 100%;
}

.timeline-item:hover .timeline-content-card {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.timeline-year {
  display: inline-block;
  background: var(--color-accent);
  color: #1A1A1A;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
}

.timeline-title {
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   PROJECTS & PORTFOLIO & FILTER TABS
   ========================================================================== */

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-btn:hover {
  background: var(--color-secondary-subtle);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.project-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #1B5E20;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: #1B5E20;
}

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

.project-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(27, 94, 32, 0.88);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

.project-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-title {
  font-size: 1.2rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1.15rem;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.project-tag {
  background: var(--color-bg-subtle);
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   GALLERY & LIGHTBOX
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  background: #1B5E20;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: #1B5E20;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 20%, rgba(13, 56, 20, 0.85) 65%, rgba(9, 36, 14, 0.98) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.gallery-caption {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.gallery-cat {
  font-size: 0.72rem;
  color: #FDD835;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

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

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-top: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   CLIENTS & COLLABORATORS
   ========================================================================== */

.client-section-block {
  margin-bottom: 3rem;
}

.client-category-title {
  font-size: 1.35rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--color-secondary-subtle);
}

.client-category-title i {
  color: var(--color-primary);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.15rem;
}

.client-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.15rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.client-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-secondary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.client-card:hover .client-card-icon {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.client-card-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-primary-deep);
}

/* ==========================================================================
   FORMS, CONTACT & CONSULTATION MODAL
   ========================================================================== */

.contact-wrapper-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-info-card {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  color: var(--color-white);
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.contact-info-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #F8D368;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.9rem;
  color: #F8D368;
  margin-bottom: 0.15rem;
}

.contact-detail-text p, .contact-detail-text a {
  color: var(--color-white);
  font-size: 0.9rem;
}

.contact-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.contact-social-btn:hover {
  background: var(--color-accent);
  color: #1A1A1A;
  transform: translateY(-3px);
}

/* Contact & Consultation Forms */
.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}

.form-standard .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-bottom: 1.15rem;
}

.form-standard .form-group {
  margin-bottom: 1.15rem;
}

.form-standard label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0.4rem;
}

.form-standard label i {
  color: var(--color-secondary);
  margin-right: 0.25rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-main);
  background-color: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

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

.form-hint {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

.form-alert {
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-md);
  margin-top: 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-alert.success {
  background-color: var(--color-secondary-subtle);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-secondary);
}

.form-alert.error {
  background-color: #FDEDED;
  color: #D32F2F;
  border: 1px solid #EF9A9A;
}

/* Modal Window */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 30, 12, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-card {
  background: var(--color-white);
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: var(--color-bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-accent-light);
  color: #8C6600;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.65rem;
}

.modal-title {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1.35rem;
  line-height: 1.5;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-border-hover);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  font-size: 0.95rem;
  color: var(--color-primary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background-color: var(--color-bg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1.15rem 1.5rem;
  border-top: 1px solid var(--color-border);
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   GLOBAL CTA BANNER & FOOTER
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, #18471b 0%, #2E7D32 50%, #43A047 100%);
  color: var(--color-white);
  padding: 4rem 0;
  position: relative;
}

.cta-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #F8D368;
  margin-bottom: 0.75rem;
}

.cta-title {
  font-size: 2.1rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  max-width: 680px;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

.cta-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Footer */
.main-footer {
  background-color: var(--color-primary-deep);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  background: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-brand-title {
  font-size: 1.3rem;
  color: var(--color-white);
  font-weight: 800;
}

.footer-tagline {
  font-size: 0.82rem;
  color: #F8D368;
  font-style: italic;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.footer-bio {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-bottom: 1.35rem;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-accent);
  color: #1A1A1A;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.45rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2.5px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.footer-links a i {
  font-size: 0.68rem;
  color: var(--color-secondary);
}

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

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact .contact-item i {
  color: #F8D368;
  margin-top: 0.25rem;
  font-size: 0.95rem;
}

.footer-contact .contact-item strong {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact .contact-item p, .footer-contact .contact-item a {
  color: var(--color-white);
  font-size: 0.86rem;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
}

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

/* Floating Actions */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  color: var(--color-white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
  position: absolute;
  right: 66px;
  background: var(--color-primary-deep);
  color: var(--color-white);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
}

.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 30px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1200px) {
  .nav-link {
    padding: 0.45rem 0.55rem;
    font-size: 0.88rem;
  }
  .brand-name {
    font-size: 1.15rem;
  }
  .stats-grid {
    gap: 0.5rem;
  }
  .stat-number {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .founder-img-wrap {
    min-height: 360px;
  }

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

  .contact-wrapper-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline-container::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px !important;
    padding-right: 0 !important;
    text-align: left !important;
    left: 0 !important;
  }

  .timeline-dot {
    left: 9px !important;
    right: auto !important;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 67px;
    left: 0;
    width: 100%;
    background: var(--color-white);
    border-bottom: 2px solid var(--color-primary);
    padding: 1.25rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0.35rem;
  }

  .nav-link {
    width: 100%;
    padding: 0.7rem 1rem;
  }

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

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

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

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

  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
  }
}

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

  .floating-stat-card {
    display: none;
  }
}
