/* ================================================
   CHILISUNN — Global Design System
   ASR Foods | asrfoods.in
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────── */
:root {
  --red: #E8192C;
  --red-dark: #b8131f;
  --yellow: #FFD700;
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-3: #252525;
  --dark-card: #1e1e1e;
  --text: #ffffff;
  --text-muted: #d4d0c8;
  --border: rgba(255, 255, 255, 0.07);
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-red: 0 4px 24px rgba(232, 25, 44, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Typography ───────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.section-tag {
  display: inline-block;
  background: rgba(232, 25, 44, 0.15);
  border: 1px solid rgba(232, 25, 44, 0.4);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--red);
}

.highlight-yellow {
  color: var(--yellow);
}

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 25, 44, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: #111;
}

.btn-yellow:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* ── Layout ───────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 70px 0;
}

.section-sm {
  padding: 48px 0;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 580px;
  margin: 0.75rem auto 0;
}

/* ── Navbar ───────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar.scrolled .nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar.scrolled .nav-logo-circle {
  width: 90px;
  height: 90px;
  border-width: 3px;
  transform: translateY(10px);
}

.navbar.scrolled .nav-logo-real {
  height: 160px;
}

.navbar.scrolled .nav-links {
  opacity: 0;
  pointer-events: none;
}

.navbar.scrolled .nav-cta,
.navbar.scrolled .hamburger {
  opacity: 0;
  pointer-events: none;
}

.nav-logo-circle,
.nav-logo-real,
.nav-links,
.nav-cta,
.hamburger {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1001;
  /* Keep above navbar background */
}

.nav-logo-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--red);
  border: 4px solid #fff;
  position: relative;
  overflow: visible;
  /* CRITICAL: prevents clipping */
  box-shadow: 0 4px 15px rgba(232, 25, 44, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Hang down below the navbar */
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.nav-logo-circle::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  pointer-events: none;
}

.nav-logo-circle:hover {
  transform: scale(1.05);
}

.nav-logo-real {
  height: 210px;
  /* Scale up to hide the left/right pill edges */
  width: auto;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .brand {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.nav-logo-text .sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.7) 40%, rgba(15, 15, 15, 0.2) 100%);
}

/* Floating product bottles in hero background */
.hero-bottles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-bottle {
  position: absolute;
  opacity: 0.07;
  filter: drop-shadow(0 0 20px rgba(232, 25, 44, 0.3));
  transform-origin: center center;
}

.hero-bottle:nth-child(1) {
  width: 220px;
  top: 8%;
  right: -2%;
  animation: float-bottle-1 8s ease-in-out infinite;
  opacity: 0.09;
}

.hero-bottle:nth-child(2) {
  width: 160px;
  top: 55%;
  left: 2%;
  animation: float-bottle-2 10s ease-in-out infinite;
  opacity: 0.07;
}

.hero-bottle:nth-child(3) {
  width: 130px;
  bottom: 5%;
  right: 28%;
  animation: float-bottle-3 9s ease-in-out infinite;
  opacity: 0.06;
}

.hero-bottle:nth-child(4) {
  width: 100px;
  top: 20%;
  left: 38%;
  animation: float-bottle-1 12s ease-in-out infinite reverse;
  opacity: 0.05;
}

@keyframes float-bottle-1 {

  0%,
  100% {
    transform: translateY(0px) rotate(-4deg);
  }

  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}

@keyframes float-bottle-2 {

  0%,
  100% {
    transform: translateY(0px) rotate(6deg);
  }

  50% {
    transform: translateY(-14px) rotate(-6deg);
  }
}

@keyframes float-bottle-3 {

  0%,
  100% {
    transform: translateY(0px) rotate(-8deg) scale(1);
  }

  50% {
    transform: translateY(-22px) rotate(8deg) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px;
}

.hero-text h1 {
  margin-bottom: 1.25rem;
}

.hero-text h1 span {
  color: var(--red);
  display: block;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 16px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.badge svg {
  color: var(--yellow);
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-wrap {
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 25, 44, 0.22) 0%, transparent 70%);
  animation: pulse-red 3s ease-in-out infinite;
}

.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 25, 44, 0.25);
  animation: spin 20s linear infinite;
}

.hero-logo-wrap-ring2 {
  position: absolute;
  inset: -44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.1);
  animation: spin 35s linear infinite reverse;
}

@keyframes pulse-red {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-logo-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 60px rgba(232, 25, 44, 0.55)) drop-shadow(0 0 20px rgba(232, 25, 44, 0.3));
  transition: transform 0.4s ease;
}

.hero-logo-img:hover {
  transform: scale(1.02);
}

/* ── Stats Bar ────────────────────────────────── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

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

.stat-item {
  padding: 0 20px;
  border-right: 1px solid var(--border);
}

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

.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Product Cards ────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 25, 44, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 25, 44, 0.15);
}

.product-img-wrap {
  background: var(--dark-3);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-img-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.product-info {
  padding: 18px 20px 20px;
}

.product-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.product-slogan {
  font-size: 0.8rem;
  color: var(--yellow);
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.4;
}

.product-enquire {
  width: 100%;
  padding: 10px;
  background: rgba(232, 25, 44, 0.12);
  border: 1px solid rgba(232, 25, 44, 0.3);
  color: var(--red);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.product-enquire:hover {
  background: var(--red);
  color: #fff;
}

/* ── Filter Pills ─────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* hidden product card */
.product-card.hidden {
  display: none;
}

/* ── Why Us Grid ──────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(232, 25, 44, 0.3);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(232, 25, 44, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
}

.why-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.why-card p {
  font-size: 0.875rem;
}

/* ── CTA Banner ───────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #a20e1c 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.5rem;
  /* Modified */
  margin-bottom: 1rem;
  /* Modified */
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  /* Modified */
  margin-bottom: 2rem;
  /* Modified */
  opacity: 0.9;
  /* Added */
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  position: relative;
}

/* ── Real Product Showcase ────────────────────── */
.real-showcase {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.real-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(232, 25, 44, 0.05) 0%, transparent 60%);
  z-index: 0;
}

.real-showcase-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
}

.real-showcase-img-wrap {
  flex: 1;
  position: relative;
}

.real-showcase-img-wrap::after {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 20px;
  border: 1px solid rgba(232, 25, 44, 0.2);
  z-index: -1;
}

.real-showcase-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.real-showcase-img:hover {
  transform: scale(1.02);
}

.real-showcase-text {
  flex: 1;
  color: #111;
}

.real-showcase-text .section-tag {
  color: var(--red);
  background: rgba(232, 25, 44, 0.1);
}

.real-showcase-text h2 {
  color: #111;
  font-size: 3rem;
  margin-bottom: 24px;
  line-height: 1.1;
}

.real-showcase-text p {
  color: #444;
  font-size: 1.15rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ── About Section ────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  text-align: center;
}

.about-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.cert-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
}

.cert-badge svg {
  color: var(--yellow);
}

/* ── Partners ─────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.partner-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.partner-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-head);
  flex-shrink: 0;
}

.partner-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.partner-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Contact / Order Form ─────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.form-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-card h3 {
  margin-bottom: 1.5rem;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-3);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

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

.products-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--text-muted);
}

.check-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: 4px;
  background-color: var(--dark-3);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

.check-item input[type="checkbox"]:checked {
  background-color: var(--red);
  border-color: var(--red);
}

.check-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 5px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check-item input[type="checkbox"]:focus {
  outline: 2px solid rgba(232, 25, 44, 0.4);
  outline-offset: 2px;
}

.info-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.info-card h3 {
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 42px;
  height: 42px;
  background: rgba(232, 25, 44, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--red);
  /* Added strong color for SVG and text icons */
}

.info-icon svg {
  color: var(--red);
}

.info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  font-size: 0.95rem;
  font-weight: 500;
}

.info-value a:hover {
  color: var(--red);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
  filter: grayscale(0.7) brightness(0.85);
}

/* ── Social Links ─────────────────────────────── */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ── Page Hero ────────────────────────────────── */
.page-hero {
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 20%, rgba(232, 25, 44, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    var(--dark-2);
  z-index: -1;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Chillisunn logo watermark on page hero */
.page-hero-logo-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  opacity: 0.08;
  pointer-events: none;
  filter: drop-shadow(0 0 40px rgba(232, 25, 44, 0.5));
  animation: float-bottle-1 12s ease-in-out infinite;
  z-index: 0;
}

@media (max-width: 768px) {
  .page-hero-logo-watermark {
    width: 350px;
    height: 350px;
    opacity: 0.06;
  }
}

.page-hero>.container {
  position: relative;
  z-index: 1;
}

/* About logo enhancements */
.about-logo {
  filter: drop-shadow(0 0 30px rgba(232, 25, 44, 0.4)) drop-shadow(0 0 10px rgba(232, 25, 44, 0.2));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.about-logo:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 45px rgba(232, 25, 44, 0.6)) drop-shadow(0 0 15px rgba(232, 25, 44, 0.3));
}

/* CTA banner logo watermark */
.cta-logo-watermark {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 220px;
  height: 220px;
  opacity: 0.07;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

/* ── Footer ───────────────────────────────────── */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-brand .logo-wrap img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
}

.footer-brand .brand-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.875rem;
  max-width: 300px;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-cert {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-cert-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-cert-item span {
  color: var(--yellow);
  font-size: 0.7rem;
}

.footer-cert-item svg {
  color: var(--yellow);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
}

/* ── Success Message ──────────────────────────── */
.success-msg {
  display: none;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.4);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #5cdb8a;
  font-size: 0.9rem;
  margin-top: 16px;
  text-align: center;
}

/* ── Scroll Animations ────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* ── Mobile Responsive ────────────────────────── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-wrap {
    width: 280px;
    height: 280px;
  }

  .hero-logo-img {
    width: 220px;
    height: 220px;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .stat-item:nth-child(4) {
    border-right: none;
    border-top: 1px solid var(--border);
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 90px;
    /* Match standard navbar height */
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    z-index: 999;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .navbar.scrolled~.mobile-menu {
    top: 70px;
    /* Match scrolled navbar height */
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 14px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }

  .mobile-menu .btn {
    margin: 12px 24px 4px;
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-wrap {
    width: 200px;
    height: 200px;
  }

  .hero-logo-img {
    width: 170px;
    height: 170px;
  }

  .cta-banner {
    padding: 36px 24px;
  }

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

  .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Cookie Consent Banner ────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  transition: transform 0.4s ease;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-inner p {
  flex: 1;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  min-width: 200px;
}