/* ============================================
   SNOWFOLD — Frontend Design System v2
   Reference Design + 5 Enhancements
   ============================================ */

:root {
  --navy-950: #050d18;
  --navy-900: #07111f;
  --navy-800: #081523;
  --navy-700: #0a1a2e;
  --navy-600: #122036;
  --gold-300: #f4d88a;
  --gold-400: #e2c36b;
  --gold-500: #d4af37;
  --gold-600: #b8942e;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #9ca3af;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --container-max: 1380px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============ CONTAINER ============ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ GOLD GRADIENT TEXT ============ */
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display:inline;
  font-size:inherit;
  line-height:inherit;
}

/* ============ TYPOGRAPHY ============ */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.section-eyebrow.light {
  color: rgba(244, 216, 138, 0.8);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-300);
  max-width: 580px;
  line-height: 1.7;
}

.section-body {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 18px;
}

.section {
  padding: 100px 0;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 52px;
}

/* ============ BUTTONS ============ */
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary-gold:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--gold-400);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gold-500);
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.btn-text-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  font-weight: 600;
  font-size: 15px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.btn-text-gold:hover {
  border-bottom-color: var(--gold-400);
  gap: 12px;
}

.btn-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-inquiry:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
}

.btn-whatsapp-large:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

.btn-view-product {
  padding: 10px 22px;
  background: var(--gold-400);
  color: var(--navy-950);
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-view-product:hover {
  background: var(--gold-300);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(5, 13, 24, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-400);
  transition: width 0.25s ease;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

/* ============ HERO ============ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 780px;
  padding-top: 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 46%, rgba(212, 175, 55, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse at 20% 30%, rgba(18, 32, 54, 0.5) 0%, transparent 50%),
    linear-gradient(180deg, #000209 0%, #050d16 100%);
    width:700px;
    height:700px;
    right:-140px;
    top:-120px;
    opacity:.18;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(var(--gold-400) 1px, transparent 1px), linear-gradient(90deg, var(--gold-400) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-container{
    position: relative;
    z-index: 1; 
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 55px 32px 25px;
    display: grid;
    grid-template-columns:44% 56%;
    align-items: center;
    gap: 10px;
}
.hero-content{

  width:100%;
  max-width:610px;
  padding-right:20px;

}
.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:#d8b25c;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background:#d8b25c;
  border-radius:999px;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size:clamp(54px,4vw,66px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing:-1px;
  max-width:620px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 42px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top:36px;
  gap: 24px;
  flex-wrap: wrap;
}

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

.hero-image {
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  min-height: 100%;
  overflow: visible;
  padding-left:20px;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
   background: linear-gradient(
        90deg,
        rgba(5,12,22,.45) 0%,
        rgba(5,12,22,.28) 28%,
        rgba(5,12,22,.12) 55%,
        rgba(5,12,22,0) 75%
    );
  filter: blur(70px);
  opacity:.7;
  z-index: 0;
  pointer-events: none;
}

.hero-img-container {
  position: relative;
  z-index: 1;
  width: 132%;
  max-width: 1100px;
  aspect-ratio: 1571 / 898;
  margin-left: -14%;
  background: transparent;
}

.hero-img-main {  
  width: 100%;
  height: auto;
  object-fit: contain;
  transform:scale(1.02);
  transform-origin:center;
  transition:transform .4s ease;
  object-position: center center;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
  position:relative;
  left:-35px;
}

/* Feature strip */
.hero-features-strip {
  padding: 10px 0;
  background: rgba(5, 13, 24, 0.7);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(12px);
}

.features-row {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  padding: 8px 0;
  white-space: nowrap;
}

.feature-item i {
  color: var(--gold-400);
  font-size: 16px;
}

.feature-divider {
  width: 1px;
  height: 20px;
  background: rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}

/* ============ MARQUEE (Enhancement 3) ============ */
.marquee-section {
  background: linear-gradient(90deg, var(--navy-950), rgba(212, 175, 55, 0.08), var(--navy-950));
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-content span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.marquee-dot {
  color: var(--gold-500) !important;
  font-size: 10px !important;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-section:hover .marquee-content {
  animation-play-state: paused;
}

/* ============ ABOUT PREVIEW ============ */
.about-preview {
  background: var(--navy-800);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.image-badge {
  position: absolute;
  bottom: 28px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Counter Stats (Enhancement 2) */
.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 28px;
  background: rgba(5, 13, 24, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius);
}

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

.counter-number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.counter-plus {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-400);
  vertical-align: top;
  margin-top: 4px;
}

.counter-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 6px;
}

/* ============ PRODUCTS — GLASS CARDS (Enhancement 4) ============ */
.products-section {
  background: var(--navy-900);
}

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

.product-glass-card {
  background: rgba(10, 21, 36, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
  pointer-events: none;
  border-radius: var(--radius-lg);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.product-glass-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.product-glass-card:hover::before {
  opacity: 1;
}

.product-cat-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--navy-700);
}

.product-cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-glass-card:hover .product-cat-image img {
  transform: scale(1.06);
}

.product-cat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 24, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-glass-card:hover .product-cat-overlay {
  opacity: 1;
}

.product-cat-body {
  padding: 22px;
}

.product-cat-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  margin-bottom: 10px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.product-cat-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.product-cat-desc {
  font-size: 13px;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 14px;
}

.product-cat-features {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-cat-features span {
  font-size: 12px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-cat-features i {
  color: var(--gold-500);
  font-size: 10px;
}

/* ============ WHY SNOWFOLD ============ */
.why-section {
  background: var(--navy-800);
}

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

.why-card {
  padding: 32px 24px;
  background: var(--navy-900);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--gold-400);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.75;
}

/* ============ NAPKIN BANNER ============ */
.napkin-banner {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.napkin-banner-bg {
  position: absolute;
  inset: 0;
}

.napkin-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.napkin-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 13, 24, 0.88) 0%, rgba(7, 17, 31, 0.72) 50%, rgba(5, 13, 24, 0.88) 100%);
}

.napkin-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  padding: 0 24px;
}

.napkin-banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.napkin-banner-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--navy-900);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 200px;
}

.testimonial-card {
  background: rgba(10, 21, 36, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card.featured {
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(10, 21, 36, 0.8));
  transform: scale(1.03);
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
}

.testimonial-stars {
  color: var(--gold-400);
  font-size: 13px;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.author-title {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

.testimonial-skeleton {
  background: linear-gradient(90deg, var(--navy-800) 25%, var(--navy-700) 50%, var(--navy-800) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-lg);
  height: 200px;
  border: 1px solid rgba(212, 175, 55, 0.05);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.testimonials-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
  font-size: 15px;
}

/* ============ MANUFACTURING ============ */
.manufacturing-section {
  background: var(--navy-800);
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.manufacturing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
  padding: 24px 28px;
  background: rgba(5, 13, 24, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

.manufacturing-certs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-300);
}

.cert-item i {
  color: var(--gold-400);
  font-size: 12px;
}

.manufacturing-img-stack {
  position: relative;
  height: 520px;
}

.mfg-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  bottom: 80px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.mfg-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mfg-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.mfg-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ============ CTA ============ */
.cta-section {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%), var(--navy-950);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 17px;
  color: var(--gray-300);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 72px 0 0;
}

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

.footer-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--off-white);
}

.footer-contact {
  gap: 12px !important;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

.footer-contact li i {
  color: var(--gold-400);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--gray-500);
}

.footer-contact a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: floatPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 36px rgba(37, 211, 102, 0.65);
  }
}

/* ============ MOBILE ============ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 24px 20px;
  }

  .hero-image {
    display: none;
  }

  .hero-text {
    padding-right: 0;
  }

  .about-preview-grid,
  .manufacturing-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .image-badge {
    right: 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .hero-img-container {
    width: 130%;
    margin-left: -8%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 13, 24, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-link {
    font-size: 20px;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .btn-inquiry {
    display: none;
  }

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

  .testimonial-card.featured {
    transform: scale(1);
  }

  .napkin-banner {
    height: 380px;
  }

  .features-row {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 20px;
    gap: 0;
  }

  .feature-divider {
    flex-shrink: 0;
  }
}

@media (min-width:1400px){

.hero-container{
grid-template-columns:39% 61%;
gap:40px;
}

.hero-img-container{
width:145%;
margin-left:-12%;
}

.hero-img-main{
transform:scale(1.08);
left:50px;
}

}

@media (max-width: 480px) {

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .about-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .manufacturing-img-stack {
    height: 280px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}