/* ============================================================
   NV Agency – Main Stylesheet
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --green-dark:   #1B5E20;
  --green:        #2E7D32;
  --green-mid:    #388E3C;
  --green-light:  #4CAF50;
  --green-pale:   #E8F5E9;
  --gold:         #F9A825;
  --gold-light:   #FFF8E1;
  --brown:        #6D4C41;
  --brown-light:  #8D6E63;
  --white:        #FFFFFF;
  --off-white:    #FAFAF5;
  --dark:         #1A1A1A;
  --gray-dark:    #444444;
  --gray:         #666666;
  --gray-light:   #F5F5F5;
  --whatsapp:     #25D366;

  --font-body:    'Poppins', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow:     0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
  --shadow-green: 0 8px 32px rgba(27,94,32,0.25);

  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;
}

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

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

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

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

address { font-style: normal; }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.section-alt { background: var(--off-white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.btn-sm { padding: 9px 20px; font-size: 0.83rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Animations ---- */
.fade-in {
  animation: fadeInUp 0.8s ease both;
}
.fade-in-delay {
  animation: fadeInUp 0.8s 0.25s ease both;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: filter var(--transition);
}

.navbar.scrolled .logo-img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.navbar.scrolled .nav-link {
  color: var(--gray-dark);
}

.navbar.scrolled .nav-link:hover {
  color: var(--green-dark);
  background: var(--green-pale);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--dark);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D4016 0%, #1B5E20 40%, #2E7D32 75%, #1a6b3a 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(249,168,37,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(249,168,37,0.15);
  border: 1px solid rgba(249,168,37,0.3);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-item strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}

.trust-item span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}

.trust-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
}

/* Hero coconut images */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-coconut-ring {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero-coconut {
  position: absolute;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.3));
  transition: transform 0.4s ease;
}

.hero-coconut:hover { transform: scale(1.05) translateY(-8px); }

.hero-coconut-1 {
  width: 155px;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  animation: float1 4s ease-in-out infinite;
}

.hero-coconut-2 {
  width: 140px;
  bottom: 30px; left: 10px;
  animation: float2 4.5s ease-in-out infinite;
}

.hero-coconut-3 {
  width: 160px;
  bottom: 30px; right: 5px;
  animation: float3 5s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-14px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(-3deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}

.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  padding: 48px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item p {
  font-size: 0.82rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  vertical-align: super;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text .section-title { text-align: left; }
.about-text .section-label { margin-bottom: 12px; }

.about-text p {
  color: var(--gray-dark);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.highlight-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 16px 20px;
  border-left: 3px solid var(--green-light);
}

.highlight-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }

.highlight-card strong {
  display: block;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.highlight-card p {
  font-size: 0.875rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

/* About visual */
.about-image {
  position: relative;
}

.about-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--green-pale);
}

.about-img-inner { padding: 8px; }

.about-badge-1, .about-badge-2 {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 18px;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 0.85rem;
}

.about-badge-1 {
  bottom: -16px;
  left: -16px;
  color: var(--green-dark);
  background: var(--white);
  border: 2px solid var(--green-pale);
}

.about-badge-2 {
  top: -14px;
  right: -14px;
  color: var(--brown);
  font-size: 0.8rem;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-featured {
  border: 2px solid var(--green-light);
  transform: scale(1.02);
}

.product-card-featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.product-badge-featured {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}

.product-img-wrap {
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.product-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.08) translateY(-4px);
}

.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  flex: 1;
}

.product-specs tr {
  border-bottom: 1px solid #f0f0f0;
}

.product-specs tr:last-child { border-bottom: none; }

.product-specs td {
  padding: 7px 0;
  font-size: 0.8rem;
}

.product-specs td:first-child {
  color: var(--gray);
  font-weight: 500;
  width: 45%;
}

.product-specs td:last-child {
  color: var(--dark);
  font-weight: 600;
}

/* Catalogue CTA */
.catalogue-cta {
  margin-top: 52px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.catalogue-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.catalogue-content h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.catalogue-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1 1 140px;
  max-width: 165px;
  text-align: center;
  padding: 0 8px;
}

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green-light);
  margin-bottom: 8px;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

.process-arrow {
  font-size: 1.8rem;
  color: var(--green-light);
  padding-top: 52px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 52px;
  align-items: start;
}

/* Contact Info */
.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 0.925rem;
  color: var(--dark);
  line-height: 1.6;
}

.contact-item a:hover { color: var(--green-dark); }

.contact-social {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #eee;
}

.contact-social p {
  font-size: 0.83rem;
  color: var(--gray);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: all var(--transition);
}

.social-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.social-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.social-email {
  background: var(--green-pale);
  color: var(--green-dark);
}
.social-email:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.working-hours {
  margin-top: 24px;
  padding: 18px;
  background: var(--green-pale);
  border-radius: var(--radius);
}

.working-hours h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.working-hours p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 4px;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-form h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.3px;
}

.req { color: #e53935; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.12);
}

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

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 14px;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #111; color: rgba(255,255,255,0.75); }

.footer-top { padding: 70px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.footer-logo { height: 38px; filter: brightness(0) invert(1) opacity(0.85); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

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

.footer-social-link:hover {
  background: var(--green-light);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col li, .footer-col address p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-reg {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--green-pale);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

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

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

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

.gallery-loading {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.gallery-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--green-pale);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: pulse-whatsapp 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #1da851;
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.70), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ============================================================
   RESPONSIVE — TABLET (max 960px)
   ============================================================ */
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-subtitle { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image { order: -1; max-width: 400px; margin: 0 auto; }

  .products-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .product-card-featured { transform: none; }
  .product-card-featured:hover { transform: translateY(-8px); }

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

  .process-steps { gap: 16px; }

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

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

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

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

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 44px; }

  /* Navbar mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,50,20,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 900;
  }

  .nav-links.open { display: flex; }

  .nav-link {
    font-size: 1.15rem;
    color: var(--white) !important;
    padding: 14px 28px;
  }

  .nav-link:hover { background: rgba(255,255,255,0.12) !important; }

  .navbar .btn-whatsapp { display: none; }

  .hamburger { display: flex; z-index: 1001; }

  /* Hero mobile */
  .hero-coconut-ring { width: 280px; height: 280px; }
  .hero-coconut-1 { width: 115px; }
  .hero-coconut-2 { width: 104px; }
  .hero-coconut-3 { width: 118px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 2.2rem; }

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

  /* Process */
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  .process-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    padding: 0;
    line-height: 1;
    font-size: 1.4rem;
  }
  .process-step { max-width: 100%; }

  /* Products */
  .products-grid { max-width: 100%; }

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

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .catalogue-cta { padding: 24px; }
}
