:root {
  --blue-deep: #0a2540;
  --blue-mid: #1a6fb5;
  --blue-light: #4fc3f7;
  --blue-pale: #e3f4fd;
  --green: #2ecc71;
  --green-dark: #1a9e52;
  --white: #ffffff;
  --off-white: #f7fbff;
  --gray: #6b7c93;
  --gray-light: #eaf3fb;
  --text-dark: #0d2035;
  --accent: #00b4d8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(79, 195, 247, 0.15);
  transition: all 0.3s;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue-light), #9affc5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.nav-title {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.nav-title span {
  color: var(--blue-light);
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--blue-light);
}
.nav-cta {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--blue-deep) 0%,
    #0d3460 50%,
    #1a5276 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
}
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(79, 195, 247, 0.3),
    rgba(79, 195, 247, 0.05)
  );
  border: 1px solid rgba(79, 195, 247, 0.2);
  animation: float linear infinite;
}
@keyframes float {
  0% {
    transform: translateY(110vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-20vh) scale(1);
    opacity: 0;
  }
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.hero-text {
  flex: 1;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(79, 195, 247, 0.15);
  border: 1px solid rgba(79, 195, 247, 0.3);
  color: var(--blue-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}
.hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}
.hero-h1 span {
  color: var(--blue-light);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(46, 204, 113, 0.35);
  transition: all 0.25s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.stat {
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-light);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.bottle-group {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: center;
}
.bottle-svg {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}
.bottle-big {
  animation: sway 4s ease-in-out infinite;
}
.bottle-small {
  animation: sway 4s ease-in-out infinite 0.5s;
}
@keyframes sway {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.wave-ring {
  position: absolute;
  bottom: -30px;
  width: 200px;
  height: 40px;
  background: radial-gradient(
    ellipse,
    rgba(79, 195, 247, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 90px 5%;
}
.section-tag {
  display: inline-block;
  color: var(--blue-mid);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 12px 0;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}
.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 12px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 30px auto 56px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
#about {
  background: var(--off-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  background: linear-gradient(135deg, var(--blue-pale), #d0eeff);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  border: 2px solid rgba(79, 195, 247, 0.2);
}
.about-icon {
  font-size: 100px;
  line-height: 1;
}
.about-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-card-icon {
  font-size: 28px;
}
.about-card-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-mid);
}
.about-card-text span {
  font-size: 0.78rem;
  color: var(--gray);
}
.about-content .section-title {
  text-align: left;
}
.about-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pill {
  background: var(--blue-pale);
  color: var(--blue-mid);
  border: 1px solid rgba(79, 195, 247, 0.3);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== SERVICES ===== */
#services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-pale), #d0eeff);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 111, 181, 0.12);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-icon {
  font-size: 48px;
  margin-bottom: 18px;
  display: block;
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
#why {
  background: linear-gradient(135deg, var(--blue-deep), #0d3460);
  padding: 90px 5%;
}
#why .section-title {
  color: var(--white);
}
#why .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
#why .section-tag {
  color: var(--blue-light);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(79, 195, 247, 0.2);
  border-radius: 18px;
  padding: 30px 24px;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--blue-light);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.why-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== PRODUCTS ===== */
#products {
  background: var(--off-white);
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
}
.product-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 111, 181, 0.15);
}
.product-visual {
  background: linear-gradient(135deg, var(--blue-deep), #1a5276);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.product-visual::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: rgba(79, 195, 247, 0.2);
  border-radius: 50%;
  filter: blur(20px);
}
.product-bottle {
  font-size: 80px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  animation: sway 4s ease-in-out infinite;
}
.product-size-badge {
  background: var(--blue-light);
  color: var(--blue-deep);
  padding: 5px 16px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.9rem;
}
.product-info {
  padding: 28px;
}
.product-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.product-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.product-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue-mid);
}
.product-price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.product-tag {
  background: var(--blue-pale);
  color: var(--blue-mid);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
#howitworks {
  background: var(--white);
}
.steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 24px 20px;
  position: relative;
}
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 34px;
  right: -14px;
  font-size: 1.5rem;
  color: var(--blue-light);
  font-weight: 300;
}
.step-num {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 16px;
  box-shadow: 0 6px 24px rgba(26, 111, 181, 0.3);
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}
.step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.step p {
  color: var(--gray);
  font-size: 0.87rem;
  line-height: 1.6;
}

/* ===== PRICING ===== */
#pricing {
  background: var(--off-white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border-radius: 22px;
  padding: 40px 32px;
  border: 2px solid var(--gray-light);
  transition: all 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  border-color: var(--blue-mid);
  box-shadow: 0 12px 50px rgba(26, 111, 181, 0.18);
}
.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 18px;
  right: -28px;
  background: var(--green);
  color: var(--white);
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}
.price-icon {
  font-size: 50px;
  margin-bottom: 16px;
  display: block;
}
.price-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.price-amount {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-mid);
}
.price-amount sup {
  font-size: 1.2rem;
}
.price-per {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.price-features li {
  padding: 7px 0;
  color: var(--gray);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}
.btn-price {
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}
.btn-price-outline {
  background: transparent;
  border: 2px solid var(--blue-mid);
  color: var(--blue-mid);
}
.btn-price-outline:hover {
  background: var(--blue-mid);
  color: var(--white);
}
.btn-price-solid {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  color: var(--white);
}
.btn-price-solid:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-price-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
}
.btn-price-green:hover {
  opacity: 0.9;
}

/* ===== GALLERY ===== */
#gallery {
  background: var(--white);
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;

  /* Background Image Setup */
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);

  /* Glass effect */
  backdrop-filter: blur(10px);
}

/* DARK OVERLAY */
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

/* HOVER EFFECT */
.gallery-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* TAG */
.gallery-item .g-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(79, 195, 247, 0.25);
  border: 1px solid rgba(79, 195, 247, 0.4);
  color: var(--blue-light);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

/* LABEL (BOTTOM GLASS BAR) */
.gallery-item .g-label {
  position: relative;
  z-index: 2;

  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.7rem;

  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

/* OPTIONAL GLOW EFFECT */
.gallery-item:hover .g-label {
  background: rgba(255, 255, 255, 0.15);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: var(--off-white);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  border: 2px solid transparent;
}
.testi-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-4px);
}
.testi-stars {
  color: #f1c40f;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-quote {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  font-family: "Playfair Display", serif;
}
.testi-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.testi-biz {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== CONTACT ===== */
#contact {
  background: linear-gradient(135deg, var(--blue-deep), #0d3460);
  padding: 90px 5%;
}
#contact .section-title {
  color: var(--white);
}
#contact .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
#contact .section-tag {
  color: var(--blue-light);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info {
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-item-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: rgba(79, 195, 247, 0.15);
  border: 1px solid rgba(79, 195, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.contact-item-text strong {
  color: var(--white);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-item-text span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}
.contact-item-text a {
  color: var(--blue-light);
  text-decoration: none;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.25s;
  margin-top: 10px;
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
}
.contact-form {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 36px;
  border: 1px solid rgba(79, 195, 247, 0.15);
  backdrop-filter: blur(8px);
}
.contact-form h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 24px;
  font-weight: 700;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(79, 195, 247, 0.25);
  color: var(--white);
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition: border 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
}
.form-group select option {
  background: var(--blue-deep);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.btn-submit {
  width: 100%;
  padding: 13px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 204, 113, 0.4);
}

/* ===== FOOTER ===== */
footer {
  background: #050f1a;
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 5% 30px;
  font-size: 0.88rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer-brand .nav-title {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  color: var(--blue-light);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.footer-desc {
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover {
  background: rgba(79, 195, 247, 0.2);
  border-color: var(--blue-light);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: "DM Sans", sans-serif;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.87rem;
}
.footer-links a:hover {
  color: var(--blue-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  animation: bounce 2s infinite;
  transition: all 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.wa-tooltip {
  position: fixed;
  bottom: 98px;
  right: 28px;
  z-index: 999;
  background: var(--white);
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.wa-float:hover + .wa-tooltip {
  opacity: 1;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray-light);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover {
  background: #ddd;
}
.modal h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.modal p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
  background: var(--off-white);
  border: 2px solid var(--gray-light);
  color: var(--text-dark);
}
.modal .form-group input::placeholder,
.modal .form-group textarea::placeholder {
  color: #bbb;
}
.modal .form-group input:focus,
.modal .form-group select:focus {
  border-color: var(--blue-mid);
}
.modal .form-group label {
  color: var(--gray);
}
.modal .form-group select option {
  color: var(--text-dark);
}

/* ===== SUCCESS MSG ===== */
.success-msg {
  display: none;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid var(--green);
  color: var(--green-dark);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-top: 12px;
  font-weight: 600;
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 900;
  background: var(--blue-deep);
  border-top: 1px solid rgba(79, 195, 247, 0.15);
  padding: 20px 5%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  font-weight: 500;
}
.mobile-menu a:last-child {
  border-bottom: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 40px;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-content .section-title {
    text-align: center;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .step:not(:last-child)::after {
    display: none;
  }
  .steps {
    gap: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  section {
    padding: 70px 5%;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
}
