/* ============================================
   KANOVA DAIRY FARMS — Main Stylesheet
   Colors: Blue (#0057A8, #003F7F) & White
   ============================================ */

:root {
  --blue-primary:  #0057A8;
  --blue-dark:     #003F7F;
  --blue-deeper:   #002A5C;
  --blue-light:    #4A90D9;
  --blue-pale:     #E8F2FF;
  --white:         #FFFFFF;
  --off-white:     #F7FAFF;
  --gray-light:    #F0F4F8;
  --gray:          #8A9BB5;
  --gray-dark:     #4A5568;
  --text-dark:     #1A2744;
  --text-mid:      #374151;
  --gold:          #F5A623;
  --gold-light:    #FFF3D0;
  --success:       #28A745;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-sm:   0 2px 8px rgba(0,87,168,0.08);
  --shadow-md:   0 8px 32px rgba(0,87,168,0.14);
  --shadow-lg:   0 20px 60px rgba(0,87,168,0.18);
  --shadow-xl:   0 30px 80px rgba(0,40,100,0.22);

  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font:        'Poppins', sans-serif;
  --font-serif:  'Playfair Display', serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed; inset: 0;
  background: var(--blue-deeper);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  width: 130px; height: auto; margin: 0 auto 28px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.7; transform:scale(.95); } }
.preloader-bar {
  width: 200px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 99px; margin: 0 auto; overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-light), var(--white));
  border-radius: 99px;
  animation: barFill 0.5s ease forwards;
}
@keyframes barFill { from { width: 0; } to { width: 100%; } }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,87,168,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-primary));
  box-shadow: 0 8px 32px rgba(0,87,168,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue-primary);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  padding: 12px 24px;
  font-size: 0.875rem;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-nav {
  background: var(--blue-primary);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.875rem;
  box-shadow: 0 4px 16px rgba(0,87,168,0.3);
}
.btn-nav:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,87,168,0.4);
}
.btn-large { padding: 18px 48px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,40,100,0.12);
  padding: 10px 0;
}
.nav-container {
  display: flex; align-items: center; gap: 24px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 52px; width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo img { filter: none; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.navbar.scrolled .nav-link { color: var(--text-dark); }
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--blue-primary);
  border-radius: 99px;
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link:hover { color: var(--blue-primary); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,24,70,0.88) 0%,
    rgba(0,63,127,0.75) 50%,
    rgba(0,87,168,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 100px; padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-title .highlight {
  background: linear-gradient(135deg, #7EC8FF, #B8DFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-motto {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  width: fit-content;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  text-align: center;
  padding: 0 28px;
  display: flex; flex-direction: column;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-unit {
  font-size: 1.2rem;
  font-weight: 700;
  color: #7EC8FF;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}
.scroll-down {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================
   TICKER
   ============================================ */
.ticker-wrap {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: tickerMove 30s linear infinite;
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--blue-primary); }
.section-title.light { color: var(--white); }
.section-title.light span { color: #7EC8FF; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 580px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-overlay {
  position: absolute; bottom: 16px; left: 16px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.year { display: block; font-size: 0.75rem; opacity: 0.8; }
.year-num { font-size: 1.8rem; font-weight: 800; line-height: 1; }

.about-content .section-label { margin-bottom: 12px; }
.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.6;
}
.about-text { color: var(--gray-dark); margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--blue-primary);
  transition: var(--transition);
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-primary);
  font-size: 1.1rem;
}
.feature h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; color: var(--text-dark); }
.feature p { font-size: 0.875rem; color: var(--gray-dark); }

/* ============================================
   VALUES
   ============================================ */
.values-section {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-darker, #002A5C) 100%);
  padding: 72px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #7EC8FF;
}
.value-card h3 {
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 12px;
}
.value-card p { font-size: 0.95rem; opacity: 0.85; line-height: 1.7; }
.motto-text { font-size: 1.05rem !important; font-weight: 600 !important; opacity: 1 !important; }
.motto-text em { opacity: 0.75; font-size: 0.9rem; display: block; margin-top: 6px; }

/* ============================================
   PRODUCTS
   ============================================ */
.products { background: var(--off-white); }
.products-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.products-main-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.products-main-img img {
  width: 100%; height: 500px;
  object-fit: cover;
}
.products-main-badge {
  position: absolute; top: 20px; left: 20px;
  background: linear-gradient(135deg, var(--gold), #E8960A);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  border: 1px solid rgba(0,87,168,0.08);
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}
.product-icon {
  width: 48px; height: 48px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-primary);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.product-card h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 8px; color: var(--text-dark);
}
.product-card p {
  font-size: 0.83rem; color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 14px;
}
.product-badge {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
}
.products-second-row { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.products-row-img { width: 100%; height: 400px; object-fit: cover; }

/* ============================================
   FARM
   ============================================ */
.farm { background: var(--white); }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 0;
}
.location-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.farm-card {
  background: linear-gradient(135deg, var(--blue-pale), #D0E8FF);
  border: 2px solid rgba(0,87,168,0.12);
}
.hq-card {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
}
.location-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.farm-card .location-icon {
  background: var(--blue-primary);
  color: var(--white);
}
.hq-card .location-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.location-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.location-sub {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
}
.hq-card p { opacity: 0.9; }
.location-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.location-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem;
}
.farm-card .location-list li i { color: var(--blue-primary); }
.hq-card .location-list li i { color: #7EC8FF; }

/* VIDEOS */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--text-dark);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-card.featured { grid-column: span 2; }
.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.video-label {
  padding: 12px 16px;
  background: var(--text-dark);
  color: rgba(255,255,255,0.9);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
}
.video-label i { color: var(--blue-light); font-size: 1rem; flex-shrink: 0; }

/* ============================================
   INVEST
   ============================================ */
.invest {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.invest-bg {
  position: absolute; inset: 0;
}
.invest-bg img { width: 100%; height: 100%; object-fit: cover; }
.invest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,20,60,0.94) 0%, rgba(0,63,127,0.88) 100%);
}
.invest-content { position: relative; z-index: 2; }
.invest-inner { max-width: 960px; margin: 0 auto; }
.invest-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 720px;
  margin-bottom: 48px;
}
.invest-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.reason {
  display: flex; gap: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.reason:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.3);
}
.reason-num {
  font-size: 2rem; font-weight: 900;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  flex-shrink: 0;
}
.reason-body h4 {
  font-size: 1rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.reason-body p { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-section { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,40,100,0.7) 100%);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.3rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 1.8rem;
  z-index: 9001;
}

/* ============================================
   TEAM
   ============================================ */
.team-section { background: var(--white); }
.team-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.team-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.team-img-wrap img {
  width: 100%; height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-img-wrap:hover img { transform: scale(1.04); }
.team-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,24,70,0.85), transparent);
  color: var(--white);
  padding: 32px 24px 20px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 64px;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep, #002A5C));
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  display: flex; flex-direction: column; gap: 28px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-detail:last-of-type { border-bottom: none; padding-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #7EC8FF;
  font-size: 1.1rem;
}
.contact-detail h4 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  font-size: 0.95rem; color: var(--white); font-weight: 500;
}
.contact-detail a:hover { color: #7EC8FF; }
.contact-social h4 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.social-btn:hover { background: rgba(255,255,255,0.2); transform: translateX(4px); }
.social-btn.instagram { }
.social-btn.tiktok { }
.social-btn.whatsapp { background: rgba(37,211,102,0.2); border-color: rgba(37,211,102,0.4); }
.social-btn.whatsapp:hover { background: rgba(37,211,102,0.3); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-dark); letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,87,168,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-error-msg {
  background: #FEF2F2; color: #DC2626;
  border: 1px solid #FECACA;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}
.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success i {
  font-size: 3.5rem; color: var(--success);
  margin-bottom: 20px;
  display: block;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; }
.form-success p { color: var(--gray-dark); }

/* Map */
.map-section h3 {
  font-size: 1.5rem; font-weight: 700;
  text-align: center; margin-bottom: 24px;
  color: var(--text-dark);
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--blue-deeper); color: rgba(255,255,255,0.8); }
.footer-top { padding: 72px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
}
.footer-logo { height: 60px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; }
.footer-social {
  display: flex; gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue-primary); color: var(--white); transform: translateY(-2px); }
.footer-links h4, .footer-contact h4, .footer-cta h4 {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '→'; opacity: 0; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-links a:hover::before { opacity: 1; }
.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
}
.footer-contact li i { color: var(--blue-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--white); }
.footer-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 5000;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}
.whatsapp-tooltip {
  position: absolute; right: 70px;
  white-space: nowrap;
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  z-index: 4999;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card.featured { grid-column: span 2; }
  .invest-reasons { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links, .btn-nav {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--blue-deeper);
    z-index: 999;
    padding-top: 100px;
    align-items: center;
    gap: 8px;
  }
  .nav-links.open .nav-link { color: var(--white); font-size: 1.2rem; padding: 12px 24px; }
  .hamburger { display: flex; }

  .hero-stats { gap: 0; padding: 16px; flex-wrap: wrap; justify-content: center; }
  .stat { padding: 12px 16px; }
  .stat-divider { display: none; }

  .about-images { height: 320px; }
  .about-img-secondary { width: 50%; height: 45%; }

  .products-showcase { grid-template-columns: 1fr; }
  .products-main-img img { height: 300px; }
  .locations-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .video-card.featured { grid-column: span 1; }

  .invest-reasons { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide.tall { grid-column: span 2; }

  .team-images { grid-template-columns: 1fr; }
  .team-img-wrap img { height: 300px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall, .gallery-item.wide.tall {
    grid-column: span 1; grid-row: span 1;
  }
  .reason { flex-direction: column; gap: 12px; }
  .about-images { height: 260px; }
}
