/* ============================================
   DAILY FRESH VALIYATHURA — Design System
   Mobile-first, accessible, performance-optimized
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #0A6E8A;
  --color-primary-dark: #064A5E;
  --color-primary-light: #0D8DB0;
  --color-accent: #C1272D;
  --color-accent-dark: #9E1F24;
  --color-cta: #25D366;
  --color-cta-hover: #1EBD5A;
  --color-neutral-light: #F8F6F0;
  --color-neutral-dark: #1A1A2E;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #888888;
  --color-bg-subtle: #E8F4F8;
  --color-bg-white: #FFFFFF;
  --color-border: #E2E8F0;
  --color-whatsapp: #25D366;
  --color-instagram: #E1306C;

  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --fs-sm: clamp(0.8125rem, 0.76rem + 0.26vw, 0.9375rem);
  --fs-base: clamp(0.9375rem, 0.88rem + 0.3vw, 1.0625rem);
  --fs-md: clamp(1.0625rem, 0.98rem + 0.4vw, 1.25rem);
  --fs-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
  --fs-xl: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
  --fs-2xl: clamp(1.875rem, 1.5rem + 1.875vw, 3rem);
  --fs-3xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.75rem);

  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --header-height: 72px;
  --container-max: 1200px;
  --container-padding: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

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

p + p {
  margin-top: var(--spacing-md);
}

strong {
  font-weight: 600;
  color: var(--color-neutral-dark);
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  z-index: 10000;
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--spacing-sm);
  color: white;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.4;
  min-height: 44px;
}

.btn:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-cta);
  color: white;
  border-color: var(--color-cta);
}

.btn-primary:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-bg-white);
  border-color: rgba(255,255,255,0.6);
}

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

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

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

.btn-cta {
  background: var(--color-cta);
  color: white;
  border-color: var(--color-cta);
  font-size: var(--fs-xs);
  padding: 0.5rem 1rem;
}

.btn-cta:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: white;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: var(--fs-base);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-xs);
}

/* ---------- Section Styles ---------- */
.section {
  padding: var(--spacing-3xl) 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--spacing-2xl);
}

.section-title {
  font-size: var(--fs-xl);
  margin-bottom: var(--spacing-sm);
  position: relative;
}

.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  font-weight: 400;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-md);
  color: var(--color-neutral-dark);
  z-index: 1001;
}

.header-logo:hover {
  color: var(--color-primary);
}

.header-logo img {
  border-radius: var(--radius-full);
}

.header-brand {
  display: none;
}

.nav-list {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--spacing-xs) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: none;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-neutral-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: var(--color-bg-white);
  padding: calc(var(--header-height) + var(--spacing-xl)) var(--spacing-xl) var(--spacing-xl);
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-slow);
  z-index: 999;
  overflow-y: auto;
}

.main-nav.open {
  right: 0;
}

.main-nav .nav-list {
  flex-direction: column;
  gap: 0;
}

.main-nav .nav-link {
  display: block;
  padding: var(--spacing-md) 0;
  font-size: var(--fs-md);
  border-bottom: 1px solid var(--color-border);
}

.main-nav .nav-link::after {
  display: none;
}

/* Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--spacing-2xl)) 0 var(--spacing-2xl);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 200%;
  height: 120px;
  background: var(--color-bg-white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.wave-1 {
  opacity: 0.15;
  bottom: 30px;
  animation: wave-drift 8s ease-in-out infinite alternate;
}

.wave-2 {
  opacity: 1;
  bottom: -2px;
}

@keyframes wave-drift {
  from { transform: translateX(-5%); }
  to { transform: translateX(-2%); }
}

.hero-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  color: white;
}

.hero-title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--spacing-sm);
  line-height: 1.15;
}

.hero-title .highlight {
  color: #FFD700;
  position: relative;
}

.hero-highlight-name {
  color: #FFD700;
  font-weight: 700;
}

.hero-tagline {
  font-size: var(--fs-lg);
  font-weight: 300;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: var(--spacing-md);
}

.hero-description {
  font-size: var(--fs-base);
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  font-size: var(--fs-xs);
  opacity: 0.85;
}

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

.hero-visual {
  flex-shrink: 0;
}

.hero-logo {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.3);
  animation: float 6s ease-in-out infinite;
}

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

/* ---------- USP SECTION ---------- */
.section-usps {
  background: var(--color-bg-white);
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.usp-card {
  text-align: center;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

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

.usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--color-bg-subtle);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.usp-title {
  font-size: var(--fs-md);
  margin-bottom: var(--spacing-xs);
}

.usp-text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ---------- GALLERY SECTION ---------- */
.section-gallery {
  background: var(--color-bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-sm);
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: white;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
}

/* ---------- SERVICES SECTION ---------- */
.section-services {
  background: var(--color-bg-subtle);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.service-card {
  background: var(--color-bg-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  margin-bottom: var(--spacing-md);
}

.service-title {
  font-size: var(--fs-md);
  margin-bottom: var(--spacing-xs);
}

.service-text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

/* ---------- HOW IT WORKS ---------- */
.section-how {
  background: var(--color-bg-white);
}

.steps-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

.step-card {
  text-align: center;
  padding: var(--spacing-xl);
  position: relative;
  max-width: 320px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-md);
  margin-bottom: var(--spacing-md);
}

.step-icon {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.step-title {
  font-size: var(--fs-md);
  margin-bottom: var(--spacing-xs);
}

.step-text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

.step-connector {
  color: var(--color-primary);
  opacity: 0.4;
  transform: rotate(90deg);
}

.steps-cta {
  text-align: center;
  margin-top: var(--spacing-2xl);
}

/* ---------- ABOUT SECTION ---------- */
.section-about {
  background: var(--color-bg-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--color-bg-white);
}

.about-img.about-img-fish {
  width: 260px;
  height: 380px;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 0;
  right: calc(50% - 170px);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--color-accent);
  color: white;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  line-height: 1;
}

.about-badge-text {
  font-size: var(--fs-xs);
  font-weight: 600;
  line-height: 1.3;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.about-quote {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-lg);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: var(--fs-base);
  color: var(--color-neutral-dark);
  line-height: 1.8;
}

/* ---------- DELIVERY SECTION ---------- */
.section-delivery {
  background: var(--color-bg-white);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

.delivery-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.delivery-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.delivery-highlight {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.delivery-highlight-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-bg-subtle);
  color: var(--color-primary);
}

.delivery-highlight h3 {
  font-size: var(--fs-base);
  margin-bottom: 2px;
}

.delivery-highlight p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ---------- COMMUNITY SECTION ---------- */
.section-community {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: white;
}

.community-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.community-inner .section-title {
  color: white;
}

.community-text {
  font-size: var(--fs-md);
  opacity: 0.9;
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
}

.community-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
}

/* ---------- CONTACT SECTION ---------- */
.section-contact {
  background: var(--color-bg-subtle);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  color: var(--color-text);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
}

.contact-icon-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: var(--color-whatsapp);
}

.contact-icon-phone {
  background: rgba(10, 110, 138, 0.1);
  color: var(--color-primary);
}

.contact-icon-email {
  background: rgba(193, 39, 45, 0.1);
  color: var(--color-accent);
}

.contact-icon-instagram {
  background: rgba(225, 48, 108, 0.1);
  color: var(--color-instagram);
}

.contact-icon-facebook {
  background: rgba(24, 119, 242, 0.1);
  color: #1877F2;
}

.contact-card h3 {
  font-size: var(--fs-base);
  margin-bottom: 2px;
}

.contact-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.contact-action {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.contact-card:hover .contact-action {
  color: var(--color-primary-dark);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-brand img {
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-sm);
}

.footer-title {
  font-size: var(--fs-lg);
  color: white;
  margin-bottom: 2px;
}

.footer-tagline {
  font-style: italic;
  font-size: var(--fs-sm);
  opacity: 0.7;
  margin-bottom: var(--spacing-xs);
}

.footer-location {
  font-size: var(--fs-xs);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  color: white;
  font-size: var(--fs-base);
  margin-bottom: var(--spacing-md);
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
  margin-bottom: var(--spacing-xs);
  font-size: var(--fs-sm);
}

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

.footer-links a:hover,
.footer-contact a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-base);
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-whatsapp:hover {
  background: var(--color-whatsapp);
  color: white;
}

.social-instagram:hover {
  background: var(--color-instagram);
  color: white;
}

.social-facebook:hover {
  background: #1877F2;
  color: white;
}

.footer-bottom {
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: var(--fs-xs);
  opacity: 0.6;
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--color-whatsapp);
  color: white;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: all var(--transition-base);
  animation: pulse-glow 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.65); }
}

.whatsapp-float-text {
  display: none;
}

/* ---------- SCROLL ANIMATIONS ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE: 480px+ ---------- */
@media (min-width: 480px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .whatsapp-float-text {
    display: inline;
  }

  .header-brand {
    display: inline;
  }
}

/* ---------- RESPONSIVE: 768px+ ---------- */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
    --header-height: 80px;
  }

  .section {
    padding: var(--spacing-4xl) 0;
  }

  .hero-inner {
    flex-direction: row;
    text-align: left;
  }

  .hero-content {
    text-align: left;
    flex: 1;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-trust {
    justify-content: flex-start;
  }

  .hero-description {
    margin-left: 0;
  }

  .hero-logo {
    width: 300px;
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .about-img.about-img-fish {
    width: 300px;
    height: 420px;
  }

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

  .steps-grid {
    flex-direction: row;
    justify-content: center;
  }

  .step-connector {
    transform: none;
    align-self: center;
  }

  .about-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .about-img {
    width: 320px;
    height: 320px;
  }

  .delivery-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

/* ---------- RESPONSIVE: 1024px+ ---------- */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: none;
    padding: 0;
    box-shadow: none;
    overflow: visible;
  }

  .main-nav .nav-list {
    flex-direction: row;
    gap: var(--spacing-lg);
  }

  .main-nav .nav-link {
    font-size: var(--fs-sm);
    padding: var(--spacing-xs) 0;
    border-bottom: none;
  }

  .main-nav .nav-link::after {
    display: block;
  }

  .header-cta {
    display: inline-flex;
  }

  .usp-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }

  .hero-logo {
    width: 380px;
    height: 380px;
  }

  .contact-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .about-img {
    width: 360px;
    height: 360px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header,
  .whatsapp-float,
  .nav-toggle,
  .hero-bg-shapes,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: black;
  }

  .hero {
    min-height: auto;
    background: none;
    color: black;
    padding: 1rem 0;
  }

  .hero-content {
    color: black;
  }

  .hero-title {
    color: black;
  }

  .section {
    padding: 1rem 0;
  }
}
