/* ============================================
   KOWSALYA DRY FISH — PREMIUM DESIGN SYSTEM
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Core Palette */
  --navy: #0B1D33;
  --navy-light: #122846;
  --navy-dark: #06111F;
  --teal: #1A6B5A;
  --teal-light: #1E8A72;
  --gold: #C9A84C;
  --gold-light: #D4B85E;
  --gold-dark: #A8882E;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F7F6F2;
  --gray-100: #F0EFEB;
  --gray-200: #E2E0DA;
  --gray-300: #C8C5BC;
  --gray-400: #9E9B92;
  --gray-500: #6B6860;
  --gray-600: #4A4840;
  --dark: #1A1A1A;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container-max: 1200px;
  --header-h: 160px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.6s;
  --duration-fast: 0.3s;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 29, 51, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 29, 51, 0.10);
  --shadow-lg: 0 20px 60px rgba(11, 29, 51, 0.14);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);

  /* Premium Glass */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 12px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  background: var(--off-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Helpers ---------- */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

.gold-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.gold-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-card {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-card:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-full {
  width: 100%;
}

/* ============================
   HEADER
   ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: all var(--duration) var(--ease);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(11, 29, 51, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  transition: width 0.1s linear;
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: -12px;
}

.logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  transition: transform var(--duration-fast) var(--ease);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform var(--duration-fast) var(--ease);
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #E8D5A3, #C9A84C, #F5E6B8, #C9A84C);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: goldShimmer 6s ease infinite;
}

@keyframes goldShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.logo-tagline {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Nav */
.nav-list {
  display: flex;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: 4px;
  transition: all var(--duration-fast) var(--ease);
  letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: var(--gold-light);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 10px 22px;
  border-radius: 6px;
  transition: all var(--duration-fast) var(--ease);
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.2);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease);
}

.mobile-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.7);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.12);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(26, 107, 90, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
    linear-gradient(160deg, rgba(6, 17, 31, 0.6) 0%, rgba(11, 29, 51, 0.4) 40%, rgba(18, 40, 70, 0.5) 100%);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(6, 17, 31, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: calc(var(--header-h) + 20px) 24px 0;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  background: rgba(201, 168, 76, 0.06);
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Counters */
.hero-counters {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px 60px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.counter-item {
  text-align: center;
}

.counter-value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.counter-plus {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.counter-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ============================
   ABOUT
   ============================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  aspect-ratio: 4/3;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--duration) var(--ease-smooth);
}

.about-image-inner:hover .about-img {
  transform: scale(1.05);
}

.about-image-secondary {
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.about-img-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--duration) var(--ease-smooth);
}

.about-image-secondary:hover .about-img-secondary {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}

.badge-text {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy-dark);
}

.about-content p {
  font-size: 1.02rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-radius: 8px;
  transition: all var(--duration-fast) var(--ease);
}

.about-feat:hover {
  background: var(--gray-200);
  transform: translateX(4px);
}

.feat-icon {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
}

.about-feat span {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

/* ============================
   PRODUCTS
   ============================ */
.products {
  background: var(--off-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  padding: 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-smooth);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--gold-light), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 0.05;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.2);
}

.card-image-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--duration) var(--ease-smooth);
  filter: saturate(0.85) brightness(0.95);
}

.product-card:hover .card-img {
  transform: scale(1.08);
  filter: saturate(1) brightness(1);
}

.card-body {
  padding: 32px 28px 36px;
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 107, 90, 0.08), rgba(26, 107, 90, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -26px auto 18px;
  position: relative;
  z-index: 2;
  border: 3px solid var(--white);
  transition: all var(--duration-fast) var(--ease);
}

.product-card:hover .card-icon-wrap {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
}

.card-icon {
  width: 28px;
  height: 28px;
  color: var(--teal);
  transition: color var(--duration-fast) var(--ease);
}

.product-card:hover .card-icon {
  color: var(--white);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.card-accent {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 16px;
  border-radius: 2px;
  transition: width var(--duration-fast) var(--ease);
}

.product-card:hover .card-accent {
  width: 48px;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ============================
   SPECIFICATIONS
   ============================ */
.specifications {
  background: var(--white);
}

.spec-table-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.spec-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 24px;
  text-align: left;
}

.spec-table tbody tr {
  border-left: 3px solid transparent;
  transition: all var(--duration-fast) var(--ease);
}

.spec-table tbody tr:nth-child(odd) {
  background: var(--gray-100);
}

.spec-table tbody tr:nth-child(even) {
  background: var(--white);
}

.spec-table tbody tr:hover {
  border-left-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.spec-table td {
  padding: 14px 24px;
  font-size: 0.95rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}

.spec-table td:last-child {
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-heading);
}

.spec-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(26, 107, 90, 0.04);
  border-radius: 8px;
  border-left: 3px solid var(--teal);
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.note-icon {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================
   MISSION
   ============================ */
.mission {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6, 17, 31, 0.88), rgba(11, 29, 51, 0.85), rgba(18, 40, 70, 0.88));
  z-index: 1;
}

.mission-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mission .section-label {
  color: var(--gold);
}

.mission .section-title {
  color: var(--white);
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.mission-quote::before,
.mission-quote::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0.4;
}

/* ============================
   WHY CHOOSE US
   ============================ */
.why-choose {
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease-smooth);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.2);
}

.why-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration-fast) var(--ease);
}

.why-item:hover .why-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.why-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-dark);
  transition: color var(--duration-fast) var(--ease);
}

.why-item:hover .why-icon {
  color: var(--navy-dark);
}

.why-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

/* ============================
   CONTACT
   ============================ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.info-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26, 107, 90, 0.1), rgba(26, 107, 90, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.info-block h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.info-block p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.contact-link {
  color: var(--teal);
  font-weight: 500;
  transition: color var(--duration-fast) var(--ease);
}

.contact-link:hover {
  color: var(--gold);
}

/* Map */
.map-embed {
  margin-top: 8px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.form-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  transition: all var(--duration-fast) var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--navy-dark);
  padding: 60px 0 32px;
  position: relative;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 40px;
}

.footer-content {
  text-align: center;
}

.footer-brand {
  margin-bottom: 32px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.footer-location {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

.footer-credit a {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--duration-fast) var(--ease);
}

.footer-credit a:hover {
  color: var(--gold-light);
}

/* ============================
   FLOATING BUTTONS
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--duration-fast) var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.call-float {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(11, 29, 51, 0.35);
  transition: all var(--duration-fast) var(--ease);
}

.call-float:hover {
  transform: scale(1.08) translateY(-2px);
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}

/* ============================
   REVEAL ANIMATIONS
   ============================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity var(--duration) var(--ease-smooth),
    transform var(--duration) var(--ease-smooth);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================
   RESPONSIVE
   ============================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    position: relative;
    z-index: 100000;
  }

  /* Mobile Nav Overlay */
  .main-nav.open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #0B1D33 !important;
    z-index: 99999 !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow-y: auto;
  }

  .main-nav.open .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .main-nav.open .nav-link {
    font-size: 1.4rem;
    padding: 14px 36px;
    color: #FFFFFF;
    opacity: 1;
  }

  .main-nav.open .nav-link:hover,
  .main-nav.open .nav-link.active {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-counters {
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-py: 60px;
    --header-h: 100px;
  }

  .logo-img {
    height: 80px;
  }

  .footer-logo-img {
    height: 64px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .hero-counters {
    flex-direction: column;
    gap: 20px;
  }

  .counter-value {
    font-size: 2.2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .whatsapp-float,
  .call-float {
    width: 50px;
    height: 50px;
    right: 16px;
  }

  .whatsapp-float {
    bottom: 16px;
  }

  .call-float {
    bottom: 78px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 380px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}