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

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

body {
  font-family: 'Nunito', sans-serif;
  color: #333333;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { text-decoration: none; }

button { cursor: pointer; font-family: 'Nunito', sans-serif; }

/* ===================================================
   DESIGN TOKENS
=================================================== */
:root {
  --red:          #ff1502;
  --red-dark:     #d00000;
  --orange:       #ff6400;
  --orange-light: #fff4ef;
  --teal:         #008891;
  --teal-light:   #e3f5f6;

  --text:         #333333;
  --subtext:      #555555;
  --light:        #f7f8fc;
  --white:        #ffffff;
  --border:       #e5e7eb;

  --shadow:       0 4px 24px rgba(0, 0, 0, .07);
  --shadow-lg:    0 12px 40px rgba(0, 0, 0, .11);

  --radius:    20px;
  --radius-sm: 12px;

  --transition: .24s ease;
}

/* ===================================================
   TYPOGRAPHY
=================================================== */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  color: #333333;
  line-height: 1.2;
}

p { color: #555555; line-height: 1.7; }

/* ===================================================
   LAYOUT HELPERS
=================================================== */
.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

.inline-link {
  color: var(--red);
  font-weight: 700;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--transition);
}
.inline-link:hover { border-color: var(--red); }

/* Hide desktop line-breaks on mobile */
.br-desktop { display: none; }

/* ===================================================
   SCROLL ANIMATIONS
=================================================== */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   NAVBAR
=================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 24px;
}

/* Logo */
.logo img { height: 40px; width: auto; }

.logo-fallback {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  letter-spacing: -.02em;
}

.logo-fallback strong { color: var(--red); }

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.desktop-nav a {
  color: #444;
  font-weight: 600;
  font-size: .94rem;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
  border-radius: 2px;
}

.desktop-nav a:hover { color: var(--red); }
.desktop-nav a:hover::after { width: 100%; }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 21, 2, .22);
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 21, 2, .3);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 18px;
  color: #333;
  padding: 7px 10px;
  line-height: 1;
  transition: background var(--transition);
}

.mobile-menu-btn:hover { background: var(--light); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: white;
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
}

.mobile-nav.open {
  display: block;
  max-height: 500px;
}

.mobile-nav .container {
  display: flex;
  flex-direction: column;
  padding: 16px 5%;
  gap: 4px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-weight: 600;
  font-size: .97rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-link:hover { background: var(--light); }

.mobile-nav-link i {
  width: 18px;
  text-align: center;
  color: var(--red);
  font-size: .9rem;
}

.mobile-nav-cta {
  background: var(--red);
  color: white !important;
  justify-content: center;
  margin-top: 8px;
  font-weight: 700;
  border-radius: 10px;
}

.mobile-nav-cta i { color: white; }
.mobile-nav-cta:hover { background: var(--red-dark); }


/* ===================================================
   STATS SECTION
=================================================== */
.stats-section {
  background: linear-gradient(135deg, #005f6b 0%, #004d57 60%, #003d47 100%);
  padding: 80px 0;
  overflow: hidden;
}

.stats-section .section-header {
  margin-bottom: 52px;
}

.stats-tag {
  display: inline-block;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .75);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.stats-heading {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  color: #ffffff;
  margin-bottom: 10px;
}

.stats-sub {
  max-width: 500px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .55);
  font-size: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 44px 28px 36px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 16px;
  opacity: .85;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.stat-label {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .02em;
  margin-bottom: 5px;
}

.stat-note {
  font-size: .75rem;
  color: rgba(255, 255, 255, .38);
  font-style: italic;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    padding: 32px 16px 26px;
  }
}


/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  padding: 40px 0 45px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #fff8f5 55%, #ffeedd 100%);
}

/* Hero background image — right side, absolute */
.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Gradient overlay: solid white on left (text side) → transparent on right (image side) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    #ffffff 38%,
    rgba(255, 255, 255, .88) 54%,
    rgba(255, 255, 255, .4)  70%,
    transparent              100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-inner { padding: 0; }

.hero-content { max-width: 560px; }

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  color: var(--red);
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

/* Heading */
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.red    { color: var(--red);    }
.orange { color: var(--orange); }
.teal   { color: var(--teal);   }

/* Hero description */
.hero-desc {
  font-size: 1.07rem;
  color: #555;
  margin-bottom: 32px;
  max-width: 490px;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.stat strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #333;
}

.stat span {
  font-size: .78rem;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.stat-divider {
  width: 1px;
  height: 34px;
  background: #ddd;
  flex-shrink: 0;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .97rem;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 20px rgba(255, 21, 2, .26);
}

.primary-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 21, 2, .32);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .97rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.secondary-btn:hover {
  background: transparent;
  border-color: var(--red-dark);
  color: var(--red-dark);
  transform: translateY(-2px);
}


/* ====================== PROOF STRIP ====================== */
.proof-strip {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.proof-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.proof-stat i {
  font-size: 1.1rem;
  color: var(--orange);
}
.proof-stat strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
}
.proof-stat span {
  font-size: 0.85rem;
  color: #666;
}
@media (max-width: 479px) {
  .proof-strip { gap: 18px; padding: 16px 5%; justify-content: flex-start; }
  .proof-stat strong { font-size: 1rem; }
}


/* ===================================================
   ABOUT
=================================================== */
.about { background: var(--light); }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  background: white;
  padding: 38px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.red-icon    { background: #fff0f0; color: var(--red);    }
.orange-icon { background: var(--orange-light); color: var(--orange); }
.teal-icon   { background: var(--teal-light);   color: var(--teal);   }

.about-card h3 { font-size: 1.2rem; margin-bottom: 10px; }


/* ===================================================
   PRODUCTS
=================================================== */
.products { background: white; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
}

.greetings-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.coming-card {
  border-style: dashed;
  cursor: default;
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-icon {
  width: 56px;
  height: 56px;
  background: #fff0f0;
  color: var(--red);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.faded-icon { background: var(--light); color: #aaa; }

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.live-badge { background: #e8f5e9; color: #1b7a3a; }
.soon-badge { background: var(--light); color: #888; }

.product-card h3 { font-size: 1.22rem; color: #333; margin: 0; }
.product-card p  { font-size: .93rem; color: #666; line-height: 1.7; margin: 0; }

.product-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .87rem;
  color: #555;
  font-weight: 600;
}

.product-features li i { color: #1b7a3a; font-size: .78rem; }

.product-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: .94rem;
  margin-top: auto;
  transition: gap var(--transition);
}

.greetings-card:hover .product-cta { gap: 13px; }

.product-cta-muted {
  color: #aaa;
  font-weight: 600;
  font-size: .9rem;
  margin-top: auto;
}


/* ====================== PRODUCT SHOWCASE ====================== */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,.06);
  margin-bottom: 24px;
}
.showcase-left { display: flex; flex-direction: column; gap: 20px; }
.showcase-left h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #111;
  margin: 0;
}
.showcase-left p { color: #555; line-height: 1.7; margin: 0; }
.showcase-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.showcase-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #444;
}
.showcase-features li i { color: var(--orange); font-size: 0.8rem; }
.showcase-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.occasion-chip {
  background: #fff8f2;
  border: 1.5px solid #ffe0cc;
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 0.88rem;
  color: #333;
  font-weight: 600;
  transition: background .2s, border-color .2s, transform .15s;
}
.occasion-chip:hover {
  background: #fff0e0;
  border-color: var(--orange);
  transform: translateY(-2px);
}
.products-coming-soon {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 24px;
  }
  .showcase-features { grid-template-columns: 1fr; }
}
@media (max-width: 479px) {
  .product-showcase { padding: 24px 18px; border-radius: 16px; }
}


/* ===================================================
   WHY US
=================================================== */
.why-us { background: var(--light); }

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

.why-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.why-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #f0f0f0;
  position: absolute;
  top: 14px;
  right: 18px;
  line-height: 1;
  user-select: none;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: #fff0f0;
  color: var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.orange-why { background: var(--orange-light); color: var(--orange); }
.teal-why   { background: var(--teal-light);   color: var(--teal);   }

.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }


/* ====================== HOW IT WORKS ====================== */
.how-it-works { background: #fafafa; }
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}
.step-card {
  flex: 1;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0,0,0,.09);
}
.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #f5f5f5;
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}
.step-card:nth-child(1) .step-icon-wrap { background: #fff0e8; color: var(--orange); }
.step-card:nth-child(3) .step-icon-wrap { background: #e8f5ff; color: #3b82f6; }
.step-card:nth-child(5) .step-icon-wrap { background: #e8fff0; color: #22c55e; }
.step-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
}
.step-card p { font-size: 0.88rem; color: #666; line-height: 1.7; margin: 0; }
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  margin-top: 60px;
  color: #ccc;
  font-size: 1.2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .steps-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .step-arrow { display: none; }
}


/* ===================================================
   FAQ
=================================================== */
.faq { background: white; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active { border-color: var(--red); }

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: .94rem;
  font-weight: 600;
  color: #333;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: #fafafa; }

.faq-icon {
  font-size: .82rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

/* Smooth height animation via grid trick */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.active .faq-answer { grid-template-rows: 1fr; }

.faq-answer-inner {
  overflow: hidden;
  padding: 0 24px;
}

.faq-answer-inner p { padding: 4px 0 20px; color: #555; font-size: .95rem; }


/* ===================================================
   CONTACT
=================================================== */
.contact { background: var(--light); }

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  padding: 44px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: .87rem;
  font-weight: 600;
  color: #444;
  display: flex;
  align-items: center;
  gap: 7px;
}

.form-group label i { color: var(--red); font-size: .84rem; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  color: #333;
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 21, 2, .08);
}

.form-group input.has-error,
.form-group textarea.has-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, .08);
}

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

.field-error {
  font-size: .82rem;
  color: #e53e3e;
  font-weight: 600;
  display: none;
}

.field-error.show { display: block; }

.contact-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: white;
  border: none;
  padding: 17px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 20px rgba(255, 21, 2, .2);
}

.contact-submit-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 21, 2, .28);
}

.contact-submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  background: #e8f5e9;
  color: #1b5e20;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: .94rem;
  border: 1px solid #c8e6c9;
}

.form-success i { font-size: 1.2rem; color: #2e7d32; flex-shrink: 0; }


/* ====================== SOCIAL ICONS ====================== */
.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.25rem;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
  border: 2px solid transparent;
}
.social-icon:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.instagram-link { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); color: #fff; }
.facebook-link { background: #1877f2; color: #fff; }
.twitter-link { background: #000; color: #fff; }
.email-link { background: #fff; color: #333; border-color: #e0e0e0; }
.or-divider {
  text-align: center;
  color: #999;
  font-size: 0.85rem;
  margin: 16px 0 24px;
}


/* ===================================================
   CTA SECTION  — light warm bg + dark #333333 text
=================================================== */
.cta-section {
  background: linear-gradient(135deg, #fff8f2 0%, #fff3e8 100%);
  padding: 90px 0;
  border-top: 1px solid #ffe0cc;
  border-bottom: 1px solid #ffe0cc;
}

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

.cta-icon {
  width: 72px;
  height: 72px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 26px;
}

.cta-section h2 {
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  color: #333333;
  margin-bottom: 14px;
}

.cta-section p {
  color: #333333;
  font-size: 1rem;
  margin-bottom: 34px;
  opacity: .8;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 17px 36px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 24px rgba(255, 100, 0, .3);
}

.cta-btn:hover {
  background: #e85a00;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 100, 0, .38);
}

.cta-btn--ghost {
  background: transparent;
  color: var(--orange);
  box-shadow: none;
  border: 2px solid var(--orange);
}

.cta-btn--ghost:hover {
  background: transparent;
  color: #e85a00;
  border-color: #e85a00;
  transform: translateY(-2px);
  box-shadow: none;
}


/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: linear-gradient(135deg, #005f6b 0%, #004d57 60%, #003d47 100%);
  color: white;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-link img { height: 42px; width: auto; }

.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

.footer-logo-text strong { color: var(--red); }

.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: .91rem;
  max-width: 220px;
}

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

.footer-nav h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}

.footer-nav a {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
}

.footer-nav a:hover { color: white; }
.footer-nav a i { font-size: .8rem; }

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

.footer-bottom p {
  color: rgba(255,255,255,.4);
  font-size: .84rem;
  text-align: center;
}


/* ===================================================
   RESPONSIVE — Mobile-first breakpoints
   Base styles above = mobile (≤ 479px)
=================================================== */

/* ── 320px–479px  (small phones) ── */
@media (max-width: 479px) {
  section { padding: 60px 0; }

  .desktop-nav  { display: none; }
  .nav-cta      { display: none; }
  .mobile-menu-btn { display: block; }

  .hero {
    min-height: auto;
    padding: 16px 0 36px;
  }

  /* Hide bg image & overlay on small screens */
  .hero-bg-image,
  .hero-overlay  { display: none; }

  .hero-content { padding: 0; max-width: 100%; }
  .hero h1      { font-size: 2.3rem; }

  .hero-stats   { gap: 14px; }
  .stat strong  { font-size: 1.2rem; }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .primary-btn,
  .hero-buttons .secondary-btn {
    justify-content: center;
    width: 100%;
  }

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

  .form-row     { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

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

  .product-features { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.6rem; }
  .nav-cta span { display: none; }
}

/* ── 480px–767px  (large phones / portrait tablets) ── */
@media (min-width: 480px) and (max-width: 767px) {
  section { padding: 70px 0; }

  .desktop-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-cta span { display: inline; }

  .hero {
    min-height: auto;
    padding: 24px 0 44px;
  }

  /* Show image but abbreviated */
  .hero-bg-image { width: 100%; opacity: .12; }
  .hero-overlay  {
    background: linear-gradient(to right, #fff 55%, rgba(255,255,255,.96) 80%, rgba(255,255,255,.8) 100%);
  }

  .hero-content { max-width: 100%; padding: 0; }
  .hero h1      { font-size: 2.7rem; }

  .about-grid    { grid-template-columns: 1fr; gap: 18px; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 32px 24px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ── 768px–1023px  (tablets / small laptops) ── */
@media (min-width: 768px) and (max-width: 1023px) {
  .desktop-nav { display: flex; gap: 22px; }
  .mobile-menu-btn { display: none; }

  .hero-bg-image { width: 50%; }
  .hero h1       { font-size: 3.2rem; }
  .hero-content  { max-width: 480px; }

  .about-grid    { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(3, 1fr); }
  .form-row      { grid-template-columns: 1fr 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 32px; }

  .br-desktop { display: inline; }
}

/* ── 1024px+  (desktop) ── */
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .mobile-menu-btn { display: none; }
  .br-desktop { display: inline; }

  .hero-bg-image { width: 54%; }
  .about-grid    { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(3, 1fr); }
  .footer-inner  { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ── 1440px+  (large desktop) ── */
@media (min-width: 1440px) {
  .hero-content  { max-width: 620px; }
  .hero h1       { font-size: 4.5rem; }
}
