/* ============================================
   Aqua Fresh Drinking Water — Main Stylesheet
   ============================================ */

:root {
  --primary-blue: #0057B8;
  --deep-blue: #003B82;
  --aqua-blue: #00AEEF;
  --fresh-green: #1FA64A;
  --light-aqua: #EEF9FF;
  --white: #FFFFFF;
  --text-dark: #10233F;
  --soft-border: #D7ECF7;
  --soft-green-bg: #EAF8EF;
  --red-accent: #E62129;
  --shadow-sm: 0 2px 12px rgba(0, 59, 130, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 59, 130, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 59, 130, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --transition: 0.3s ease;
  --header-height: 80px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-header p {
  color: #4a6278;
  font-size: 1.05rem;
}

.text-green {
  color: var(--fresh-green);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
}

.btn-green {
  background: var(--fresh-green);
  color: var(--white);
  border-color: var(--fresh-green);
}

.btn-green:hover {
  background: #178a3d;
  border-color: #178a3d;
}

.btn-outline {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--light-aqua);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}

.btn-light {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--light-aqua);
  border-color: var(--light-aqua);
  color: var(--deep-blue);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.88);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  width: 250px;
  height: auto;
  max-height: 75px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fresh-green);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-blue);
  font-weight: 600;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-phone svg {
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--deep-blue);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 740px;
  padding-top: var(--header-height);
  background-color: var(--light-aqua);
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.52) 30%,
      rgba(238, 249, 255, 0.18) 48%,
      rgba(0, 87, 184, 0.04) 58%,
      transparent 72%
    ),
    url("../images/hero-bg-mountain-water.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 24px;
  min-height: calc(740px - var(--header-height));
  padding: 48px 0 56px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 520px;
  animation: fadeInLeft 0.85s ease forwards;
}

.hero-products {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 520px;
  width: 100%;
  animation: fadeInRight 0.95s ease forwards;
}

.hero-product {
  position: absolute;
  width: auto;
  max-width: none;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none;
  border: none;
  pointer-events: none;
  user-select: none;
}

.hero-product-main {
  height: 520px;
  right: 0;
  bottom: 0;
  z-index: 3;
  filter: drop-shadow(0 25px 35px rgba(0, 48, 120, 0.25));
  animation: heroFloat 5.5s ease-in-out infinite;
}

.hero-product-secondary {
  height: 360px;
  right: 320px;
  bottom: 20px;
  z-index: 2;
  filter: drop-shadow(0 18px 28px rgba(0, 48, 120, 0.22));
  animation: heroFloat 5.5s ease-in-out 0.5s infinite;
}

.hero-product-small {
  height: 230px;
  right: 260px;
  bottom: 0;
  z-index: 4;
  filter: drop-shadow(0 14px 22px rgba(0, 48, 120, 0.2));
  animation: heroFloat 5.5s ease-in-out 1s infinite;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary-blue);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--deep-blue);
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--fresh-green);
}

.hero-text {
  font-size: 1.1rem;
  color: #3d5568;
  margin-bottom: 28px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 236, 247, 0.9);
  border-radius: var(--radius-md);
  backdrop-filter: blur(4px);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.hero-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--soft-green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--fresh-green);
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroFloatMobileMain {
  0%, 100% {
    transform: translateX(42%) translateY(0);
  }
  50% {
    transform: translateX(42%) translateY(-8px);
  }
}

/* Page Hero (inner pages) */
.page-hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 50px;
  background: linear-gradient(180deg, var(--light-aqua) 0%, var(--white) 100%);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #4a6278;
  font-size: 1.05rem;
}

/* Product Carousel */
.carousel-section {
  background: var(--white);
  padding: 56px 0 64px;
}

.carousel-section.section {
  padding: 56px 0 64px;
}

.carousel-section .section-header {
  margin-bottom: 36px;
}

.carousel-wrapper {
  position: relative;
  padding: 0 56px;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 33.333%;
  padding: 0 10px;
  min-width: 0;
  display: flex;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 59, 130, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 59, 130, 0.14);
}

.product-card-image {
  min-height: 254px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(180deg, var(--light-aqua) 0%, rgba(255, 255, 255, 0.5) 100%);
  border-radius: var(--radius-md);
  padding: 12px;
}

.product-card-image img,
.product-card img {
  height: 230px;
  width: 100%;
  object-fit: contain;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.9rem;
  color: #5a7085;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.65;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--soft-border);
  color: var(--primary-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 59, 130, 0.12);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 87, 184, 0.25);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--soft-border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--fresh-green);
  transform: scale(1.15);
  width: 28px;
  border-radius: var(--radius-pill);
}

/* About Quality Section */
.quality-section {
  background: var(--light-aqua);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.quality-image {
  display: flex;
  justify-content: center;
}

.about-images {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-height: 460px;
}

.about-img-main {
  width: 82%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 59, 130, 0.16);
  object-fit: cover;
  display: block;
}

.about-img-secondary {
  position: absolute;
  width: 48%;
  aspect-ratio: 3 / 4;
  right: 0;
  bottom: 20px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 59, 130, 0.18);
  object-fit: cover;
  border: 6px solid var(--white);
}

.about-floating-product {
  position: absolute;
  width: 120px;
  left: 30px;
  bottom: 0;
  z-index: 3;
  filter: drop-shadow(0 18px 25px rgba(0, 59, 130, 0.25));
  background: transparent;
  pointer-events: none;
}

.quality-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 16px;
}

.quality-content > p {
  color: #4a6278;
  margin-bottom: 28px;
}

.quality-cards {
  display: grid;
  gap: 16px;
}

.quality-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border-left: 4px solid var(--fresh-green);
  box-shadow: var(--shadow-sm);
}

.quality-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 6px;
}

.quality-card p {
  font-size: 0.9rem;
  color: #5a7085;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-aqua), var(--soft-green-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-blue);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: #5a7085;
}

/* Premium Showcase */
.showcase-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--light-aqua) 100%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.showcase-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 16px;
}

.showcase-content p {
  color: #4a6278;
  margin-bottom: 24px;
}

.showcase-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: contain;
}

/* Delivery Section */
.delivery-section {
  position: relative;
  color: var(--white);
  background-color: var(--deep-blue);
  background-image: url("../images/delivery-section-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.delivery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 35, 82, 0.78) 0%,
    rgba(0, 59, 130, 0.68) 50%,
    rgba(0, 35, 82, 0.74) 100%
  );
  z-index: 0;
}

.delivery-section .container {
  position: relative;
  z-index: 1;
}

.delivery-section .section-header h2,
.delivery-section .section-header p {
  color: var(--white);
}

.delivery-section .section-header p {
  opacity: 0.9;
}

.delivery-inner {
  text-align: center;
}

.delivery-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 36px;
}

.delivery-feature {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 20, 50, 0.15);
}

.delivery-feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.delivery-feature h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 90px 20px;
  background: var(--white);
}

.cta-box {
  max-width: 1320px;
  min-height: 360px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 59, 130, 0.82), rgba(0, 174, 239, 0.58)),
    url("../images/cta-section-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 28px 70px rgba(0, 59, 130, 0.18);
  overflow: hidden;
}

.cta-content {
  width: 100%;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 18px;
}

.cta-box p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  max-width: 760px;
  margin: 0 auto 34px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 180px;
  padding: 16px 28px;
  border-radius: 999px;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: var(--fresh-green);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-blue);
  transition: background var(--transition);
}

.faq-item.active .faq-question {
  background: var(--soft-green-bg);
  color: var(--fresh-green);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--fresh-green);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: #5a7085;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* About Page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.about-intro-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-blocks {
  display: grid;
  gap: 32px;
}

.about-block {
  background: var(--light-aqua);
  border-radius: var(--radius-md);
  padding: 32px;
  border-left: 4px solid var(--primary-blue);
}

.about-block h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 12px;
}

.about-block p {
  color: #4a6278;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--fresh-green);
  flex-shrink: 0;
}

/* Products Page */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-grid-card {
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-grid-image {
  background: var(--light-aqua);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.product-grid-image img {
  max-height: 220px;
  object-fit: contain;
}

.product-grid-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-grid-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 10px;
}

.product-grid-body > p {
  font-size: 0.9rem;
  color: #5a7085;
  margin-bottom: 16px;
}

.product-features {
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #4a6278;
  margin-bottom: 6px;
}

.product-features li::before {
  content: '✓';
  color: var(--fresh-green);
  font-weight: 700;
}

.products-banner {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.products-banner img {
  width: 100%;
  object-fit: cover;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light-aqua);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--soft-border);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 6px;
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: #4a6278;
}

.contact-card a:hover {
  color: var(--primary-blue);
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.12);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  display: none;
  color: var(--red-accent);
  font-size: 0.85rem;
  margin-top: 12px;
  padding: 10px 14px;
  background: #fff0f0;
  border-radius: var(--radius-sm);
}

.form-error.show {
  display: block;
}

/* Footer */
.site-footer {
  background: var(--deep-blue);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand img {
  height: 85px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.85;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--aqua-blue);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--fresh-green);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition), opacity var(--transition);
}

.footer-contact a:hover {
  color: var(--aqua-blue);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-credit {
  color: var(--aqua-blue);
  font-weight: 500;
}

/* Quality Process Section */
.quality-process-section {
  background: var(--white);
}

.quality-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.quality-process-image {
  background: var(--light-aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.quality-process-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.quality-process-content {
  background: linear-gradient(145deg, var(--deep-blue) 0%, #0057B8 55%, var(--fresh-green) 100%);
  color: var(--white);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quality-process-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.quality-process-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.quality-process-content > p {
  font-size: 0.98rem;
  line-height: 1.75;
  opacity: 0.92;
  margin-bottom: 24px;
}

.process-points {
  display: grid;
  gap: 12px;
}

.process-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.process-points li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #7ee8a8;
}

/* CEO Message Section */
.ceo-section {
  background: var(--light-aqua);
}

.ceo-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.ceo-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.ceo-message-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--fresh-green);
  position: relative;
}

.ceo-message-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: rgba(0, 87, 184, 0.12);
}

.ceo-message-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.ceo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.ceo-position {
  font-size: 0.88rem;
  color: var(--fresh-green);
  font-weight: 600;
  margin-bottom: 20px;
}

.ceo-message-card p {
  color: #4a6278;
  line-height: 1.8;
  font-size: 0.98rem;
}

/* Special Offer Section */
.offer-section {
  background: var(--white);
}

.offer-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 48px 44px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(238, 249, 255, 0.95) 0%, rgba(234, 248, 239, 0.95) 100%);
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-lg);
}

.offer-badge {
  display: inline-block;
  background: var(--fresh-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.offer-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.offer-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.25;
  margin-bottom: 14px;
}

.offer-line {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--deep-blue);
  font-weight: 600;
  margin-bottom: 12px;
  max-width: 540px;
}

.offer-line s {
  color: #8a9bab;
}

.offer-line strong {
  color: var(--fresh-green);
  font-weight: 800;
}

.offer-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.offer-refill-price,
.offer-empty-bottle-price,
.offer-total-price {
  font-size: 1rem;
  color: var(--deep-blue);
  font-weight: 600;
}

.offer-refill-price strong {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--fresh-green);
}

.offer-empty-bottle-price strong {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--primary-blue);
}

.offer-total-price strong {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--fresh-green);
}

.offer-desc {
  color: #4a6278;
  line-height: 1.75;
  margin-bottom: 12px;
  max-width: 520px;
  font-size: 1rem;
}

.offer-desc:last-of-type {
  margin-bottom: 20px;
}

.offer-desc strong {
  color: var(--fresh-green);
  font-weight: 700;
}

.offer-support {
  color: #5a7085;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 520px;
}

.offer-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-image img {
  max-height: 340px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 59, 130, 0.18));
}

/* Product Offer Pricing */
.product-offer-badge {
  display: inline-block;
  background: var(--fresh-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.product-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.product-pricing-stacked {
  align-items: center;
}

.price-refill,
.price-new-bottle {
  font-size: 0.88rem;
  color: var(--deep-blue);
  font-weight: 600;
}

.price-refill strong {
  color: var(--fresh-green);
  font-size: 1rem;
}

.price-new-bottle strong {
  color: var(--primary-blue);
  font-size: 0.95rem;
}

.product-grid-body .product-pricing {
  align-items: flex-start;
}

.product-grid-body .product-pricing-stacked {
  align-items: flex-start;
}

.product-grid-body .product-offer-badge {
  margin-top: 4px;
}

/* Testimonials Page */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #f5b301;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  color: #4a6278;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--fresh-green));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--deep-blue);
  font-size: 0.95rem;
}

/* Promotional Banner */
.promo-banner-section {
  padding: 0 0 30px;
  margin-bottom: 0;
  background: var(--white);
  width: 100%;
  overflow: hidden;
}

.promo-banner-section + .site-footer {
  margin-top: 0;
}

.promo-banner-image {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
  height: auto;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

.whatsapp-float svg {
  flex-shrink: 0;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-wrapper {
    gap: 16px;
  }

  .hero-products {
    min-height: 460px;
  }

  .hero-product-main {
    height: 440px;
    right: -2%;
  }

  .hero-product-secondary {
    height: 300px;
    right: 240px;
    bottom: 16px;
  }

  .hero-product-small {
    height: 190px;
    right: 200px;
  }

  .carousel-slide {
    flex: 0 0 50%;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo img {
    width: 220px;
    height: auto;
    max-height: 68px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 92px;
  }

  .site-header {
    padding: 8px 14px !important;
  }

  .site-header .container,
  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    height: auto;
    min-height: calc(var(--header-height) - 16px);
    padding: 4px 0;
    width: 100%;
  }

  .footer-brand img {
    height: 78px;
    width: auto;
    max-width: 260px;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
    z-index: 999;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
    padding: 4px 0 12px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
    border-bottom: none !important;
    text-decoration: none !important;
    border-radius: 10px;
    position: relative;
    transition: background var(--transition), color var(--transition);
  }

  .nav-links a::before,
  .nav-links a::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
  }

  .nav-links a.active {
    color: var(--primary-blue) !important;
    font-weight: 700;
    background: rgba(0, 87, 184, 0.06);
  }

  .nav-links a:hover:not(.active) {
    background: rgba(0, 87, 184, 0.04);
    color: var(--primary-blue);
  }

  .header-phone {
    padding: 14px 0;
    border-bottom: none;
    margin-top: 4px;
  }

  .header-actions {
    width: 100%;
    margin-top: 12px;
  }

  .header-actions .btn {
    width: 100%;
    margin-top: 0;
  }

  .hamburger {
    display: flex;
  }

  .cta-section {
    padding: 55px 16px;
  }

  .cta-box {
    min-height: 300px;
    border-radius: 24px;
    padding: 50px 24px;
    background-position: center;
  }

  .cta-box h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .cta-box p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 260px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 28px) 18px 52px;
    background-image:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(255, 255, 255, 0.82) 38%,
        rgba(238, 249, 255, 0.45) 68%,
        rgba(0, 87, 184, 0.06) 100%
      ),
      url("../images/hero-bg-mountain-water.jpg");
    background-position: center;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
    gap: 0;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    animation: fadeInUp 0.85s ease forwards;
  }

  .hero-badge,
  .hero h1,
  .hero p,
  .hero-buttons,
  .hero-features {
    max-width: 100%;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
  }

  .hero-buttons .btn,
  .hero-buttons a {
    flex: 1;
    min-width: 0;
    max-width: 170px;
    padding: 13px 12px;
    font-size: 14px;
    border-radius: 999px;
    text-align: center;
    white-space: nowrap;
    width: auto;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-products {
    position: relative;
    width: 100%;
    max-width: 360px;
    min-height: 360px;
    margin: 30px auto 0;
    display: block;
    animation: fadeInUp 0.95s ease 0.15s both;
  }

  .hero-product-main {
    position: absolute;
    height: 310px;
    max-width: none;
    right: 30px;
    left: auto;
    bottom: 0;
    transform: none;
    z-index: 3;
    animation: heroFloat 5.5s ease-in-out infinite;
  }

  .hero-product-secondary {
    position: absolute;
    height: 230px;
    max-width: none;
    left: 20px;
    right: auto;
    bottom: 10px;
    z-index: 2;
    animation: heroFloat 5.5s ease-in-out 0.5s infinite;
  }

  .hero-product-small {
    position: absolute;
    height: 145px;
    max-width: none;
    left: 120px;
    right: auto;
    bottom: 0;
    z-index: 4;
    animation: heroFloat 5.5s ease-in-out 1s infinite;
  }

  .product-card-image {
    min-height: 284px;
  }

  .product-card-image img,
  .product-card img {
    height: 260px;
  }

  .carousel-wrapper {
    padding: 0 44px;
  }

  .carousel-slide {
    flex: 0 0 100%;
  }

  .quality-grid,
  .showcase-grid,
  .about-intro,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-images {
    max-width: 100%;
    min-height: auto;
    padding-bottom: 40px;
  }

  .about-img-main {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .about-img-secondary {
    position: relative;
    width: 72%;
    right: auto;
    bottom: auto;
    margin: -45px 0 0 auto;
    display: block;
    aspect-ratio: 3 / 4;
  }

  .about-floating-product {
    width: 90px;
    left: 18px;
    bottom: 10px;
  }

  .quality-process-grid,
  .ceo-grid,
  .offer-card {
    grid-template-columns: 1fr;
  }

  .quality-process-image {
    order: -1;
    padding: 20px;
  }

  .quality-process-content {
    padding: 32px 24px;
  }

  .ceo-image {
    order: -1;
  }

  .ceo-message-card {
    padding: 28px 24px;
  }

  .offer-card {
    padding: 32px 24px;
    gap: 28px;
  }

  .offer-image {
    order: -1;
  }

  .offer-image img {
    max-height: 260px;
  }

  .offer-content .btn {
    width: 100%;
    max-width: 320px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner-section {
    padding: 0 0 24px;
    margin-bottom: 0;
  }

  .showcase-grid .showcase-image {
    order: -1;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .delivery-features {
    grid-template-columns: 1fr 1fr;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 60px 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-buttons {
    gap: 8px;
  }

  .hero-buttons .btn,
  .hero-buttons a {
    padding: 12px 8px;
    font-size: 13px;
    max-width: 160px;
  }

  .hero-products {
    max-width: 320px;
    min-height: 330px;
    margin-top: 26px;
  }

  .hero-product-main {
    height: 285px;
    right: 20px;
  }

  .hero-product-secondary {
    height: 210px;
    left: 10px;
  }

  .hero-product-small {
    height: 130px;
    left: 105px;
  }
}

@media (max-width: 360px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn,
  .hero-buttons a {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .delivery-features {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}

/* Mobile header logo — single image via picture element */
@media (max-width: 768px) {
  .site-logo,
  .logo,
  .header-logo,
  .navbar-brand {
    flex: 0 1 auto !important;
    max-width: calc(100vw - 88px) !important;
    overflow: hidden !important;
    margin-left: 0 !important;
    transform: none !important;
    background: none !important;
  }

  .site-logo img,
  .logo img,
  .header-logo img,
  .navbar-brand img {
    width: 285px !important;
    max-width: calc(100vw - 88px) !important;
    max-height: none !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    background: transparent !important;
  }

  .mobile-menu-toggle,
  .hamburger,
  .menu-toggle {
    flex: 0 0 46px !important;
    width: 46px !important;
    margin-left: auto !important;
  }
}

@media (max-width: 420px) {
  .site-logo img,
  .logo img,
  .header-logo img,
  .navbar-brand img {
    width: 270px !important;
    max-width: calc(100vw - 82px) !important;
  }
}
