﻿/* ============================================
   SWASTIK CORPORATE WEBSITE — MAIN STYLESHEET
   Aesthetic: Clean White, Black & Brand Green/Orange
   ============================================ */

:root {
  --gold: #2E7040;
  --gold-light: #E8932A;
  --gold-dark: #1F5030;
  --noir: #163A22;
  --dark: #1A4226;
  --dark-2: #1F5030;
  --dark-3: #245C36;
  --white: #FFFFFF;
  --white-dim: rgba(255, 255, 255, 0.65);
  --text: #111111;
  --text-light: #6B6B6B;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold-light); }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 6rem 0; }
.dark-bg { background: var(--dark); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all 0.3s var(--transition);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost-light {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold-dark);
  transition: all 0.3s var(--transition);
}
.btn-ghost-light:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ── LOGO IMAGE ── */
.logo-img {
  height: 46px;
  width: auto;
  flex-shrink: 0;
}
.footer-logo {
  height: 46px;
  width: auto;
  background: #fff;
  padding: 0.35rem 0.8rem;
  margin-bottom: 0.4rem;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.6rem 0;
  transition: all 0.4s var(--transition);
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}
.navbar.scrolled {
  background: #fff;
  padding: 0.4rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-symbol {
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  display: none !important;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(22,58,34,0.72);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1100; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: #1a1a1a; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(280px, 80vw);
    height: 100vh;
    background: rgba(22,58,34,0.98);
    backdrop-filter: blur(16px);
    padding: 5rem 2rem 2rem;
    gap: 0.3rem;
    z-index: 1050;
    box-shadow: -4px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid rgba(46,112,64,0.15);
    overflow-y: auto;
  }
  .nav-links.mobile-open a {
    font-size: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(46,112,64,0.08);
    color: rgba(255,255,255,0.85);
  }
  .nav-links.mobile-open a.active,
  .nav-links.mobile-open a:hover { color: var(--gold); }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--noir);
  overflow: hidden;
  padding: 3.5rem 2rem 3rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(46,112,64,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(46,112,64,0.05) 0%, transparent 50%);
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,112,64,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,112,64,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  max-width: 520px;
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.hero-stat-bar {
  position: relative;
  max-width: 1180px;
  margin: 2rem auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(46,112,64,0.2);
  padding: 2rem 0;
}
.stat { flex: 1; text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.4rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(46,112,64,0.2);
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
.marquee-track .dot { color: rgba(255,255,255,0.5); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ABOUT SNIPPET ── */
.about-snippet p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.col-visual {
  display: flex;
  justify-content: center;
}
.visual-card {
  width: 380px;
  height: 380px;
  border: 1px solid var(--gold);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(46,112,64,0.3);
}
.visual-inner { text-align: center; padding: 2rem; position: relative; z-index: 1; }
.v-line {
  position: absolute;
  background: var(--gold);
  opacity: 0.15;
}
.v1 { width: 1px; height: 100%; top: 0; left: 50%; }
.v2 { width: 100%; height: 1px; top: 50%; left: 0; }
.v-circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(46,112,64,0.3);
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(46,112,64,0.1), transparent);
}
.v-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}
.v-logo-img {
  height: 54px;
  width: auto;
  margin-bottom: 0.6rem;
}
.v-brand-icon {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold);
}
.visual-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(46,112,64,0.15);
  margin-top: 3rem;
}
.service-card {
  background: var(--dark-2);
  padding: 2.5rem;
  transition: background 0.3s;
}
.service-card:hover { background: var(--dark-3); }
.service-icon {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.service-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── HOTSTINGER FEATURE ── */
.hotstinger-feature .col-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.hs-badge {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--dark-3), var(--noir));
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  box-shadow: 0 0 60px rgba(46,112,64,0.15), inset 0 0 60px rgba(46,112,64,0.05);
  margin: 0 auto;
  animation: pulse-ring 3s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 60px rgba(46,112,64,0.15), inset 0 0 60px rgba(46,112,64,0.05); }
  50% { box-shadow: 0 0 90px rgba(46,112,64,0.3), inset 0 0 60px rgba(46,112,64,0.08); }
}
.hs-icon { font-size: 2.8rem; }
.hs-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-light);
}
.hs-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ── FOOTER ── */
.footer { background: var(--noir); padding: 5rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(46,112,64,0.15);
}
.footer-brand .logo-symbol { font-size: 2rem; color: var(--gold); }
.footer-brand .logo-text { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.18em; color: var(--white); margin-bottom: 1rem; display: block; margin-top: 0.3rem; }
.footer-brand p { color: var(--white-dim); font-size: 0.9rem; max-width: 260px; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--white-dim); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { color: var(--white-dim); font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal-up 0.9s var(--transition) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--noir);
  padding: 9rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,112,64,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,112,64,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  position: relative;
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p {
  color: var(--white-dim);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
  position: relative;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stat-bar { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .stat-divider { display: none; }
  .stat { min-width: 42%; }
  .visual-card { width: 280px; height: 280px; }
  .col-visual { justify-content: center; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero-stat-bar { margin-top: 3rem; }
  .page-hero { padding: 8rem 1.2rem 4rem; }
}

@media (max-width: 600px) {
  html { font-size: 15px; }

  /* Layout */
  .container { padding: 0 1.1rem; }
  .section-pad { padding: 3rem 0; }

  /* Navbar */
  .nav-inner { padding: 0 1.1rem; }
  .logo-text { font-size: 0.95rem; letter-spacing: 0.08em; }
  .logo-img { height: 36px; }

  /* Hero */
  .hero { padding: 5.5rem 1.1rem 0; }
  .hero-title { font-size: clamp(2rem, 9.5vw, 3rem); }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .hero-tag { font-size: 0.65rem; }
  .hero-cta { flex-direction: column; gap: 0.8rem; }
  .hero-stat-bar { margin-top: 2rem; padding: 1.5rem 0; gap: 1rem; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.62rem; }
  .stat { min-width: 45%; }

  /* Sections */
  .section-title { font-size: clamp(1.5rem, 6.5vw, 2.2rem); }
  .section-tag { font-size: 0.65rem; }

  /* Buttons */
  .btn-primary, .btn-ghost, .btn-ghost-light {
    text-align: center;
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
  }

  /* Visual card */
  .visual-card { width: 260px; height: 260px; }
  .v-logo-img { height: 42px; }

  /* Services grid */
  .service-card { padding: 1.8rem; }
  .service-card h3 { font-size: 1.2rem; }

  /* Footer */
  .footer { padding: 3rem 0 0; }
  .footer-inner { padding-bottom: 2rem; }
  .footer-brand .logo-text { font-size: 1rem; }

  /* Page hero */
  .page-hero { padding: 7rem 1.1rem 3.5rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 8vw, 3rem); }
}

@media (max-width: 400px) {
  .logo-text { display: none; }
  .hero-title { font-size: clamp(1.8rem, 10vw, 2.5rem); }
  .stat { min-width: 47%; }
}

/* Collection preview strip — 2 col on mobile */
@media (max-width: 600px) {
  .collection-strip { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(46,112,64,0.12);
  border-bottom: 1px solid rgba(46,112,64,0.12);
  padding: 1.2rem 0;
}
.trust-bar-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0.5rem; align-items: center;
}
.trust-item { display:flex; align-items:center; gap:0.7rem; justify-content:center; }
.trust-icon { font-size:1.4rem; flex-shrink:0; }
.trust-text strong {
  display:block; font-size:0.72rem; font-weight:500;
  letter-spacing:0.1em; text-transform:uppercase; color:var(--white);
}
.trust-text span { font-size:0.7rem; color:var(--white-dim); }

/* ── TESTIMONIALS ── */
.testi-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.5rem; margin-top:3rem;
}
.testi-card {
  background:var(--dark-2);
  border:1px solid rgba(46,112,64,0.12);
  padding:2rem; position:relative;
  transition:border-color 0.3s;
}
.testi-card:hover { border-color:rgba(46,112,64,0.4); }
.testi-stars { color:var(--gold-light); font-size:0.8rem; letter-spacing:0.1em; margin-bottom:0.9rem; }
.testi-text {
  font-size:0.9rem; color:rgba(255,255,255,0.68);
  line-height:1.85; margin-bottom:1.5rem;
  font-style:italic;
}
.testi-text::before { content:'\201C'; font-family:var(--font-display); font-size:2.5rem; color:var(--gold); opacity:0.35; display:block; line-height:1; margin-bottom:0.3rem; }
.testi-author { display:flex; align-items:center; gap:0.9rem; border-top:1px solid rgba(46,112,64,0.1); padding-top:1.2rem; }
.testi-avatar {
  width:44px; height:44px; border-radius:50%;
  background:var(--gold-dark); display:flex; align-items:center;
  justify-content:center; font-family:var(--font-display);
  font-size:1.1rem; font-weight:700; color:#fff; flex-shrink:0;
}
.testi-info strong { display:block; font-size:0.8rem; font-weight:500; color:var(--white); }
.testi-info span { font-size:0.72rem; color:var(--gold); letter-spacing:0.06em; }

/* ── EXPORT MARKETS ── */
.markets-row {
  display:flex; flex-wrap:wrap; gap:0.8rem;
  justify-content:center; margin-top:2.5rem;
}
.market-chip {
  display:flex; align-items:center; gap:0.5rem;
  padding:0.55rem 1.1rem;
  border:1px solid rgba(46,112,64,0.22);
  font-size:0.8rem; font-weight:500; color:var(--text);
  letter-spacing:0.04em;
  transition:border-color 0.2s, background 0.2s;
}
.market-chip:hover { border-color:var(--gold); background:rgba(46,112,64,0.05); }
.market-flag { font-size:1.1rem; }

/* ── CATEGORY IMAGE CARDS (fabrics page) ── */
.cat-preview-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.2rem; margin-top:3rem;
}
.cat-card {
  position:relative; overflow:hidden;
  aspect-ratio:4/3; background:var(--dark-2); cursor:pointer;
}
.cat-card img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform 0.6s ease;
}
.cat-card:hover img { transform:scale(1.08); }
.cat-overlay {
  position:absolute; inset:0;
  background:linear-gradient(transparent 25%, rgba(22,58,34,0.88) 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:1.4rem;
}
.cat-tag-label {
  font-size:0.62rem; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--gold-light); margin-bottom:0.25rem;
}
.cat-card-title {
  font-family:var(--font-display); font-size:1.25rem;
  color:var(--white); font-weight:600;
}
.cat-link-arrow {
  font-size:0.7rem; color:var(--gold); letter-spacing:0.12em;
  text-transform:uppercase; margin-top:0.4rem; display:inline-block;
  border-bottom:1px solid rgba(46,112,64,0.35); padding-bottom:0.1rem;
  opacity:0; transform:translateY(4px); transition:all 0.3s;
}
.cat-card:hover .cat-link-arrow { opacity:1; transform:translateY(0); }

/* ── FOOTER SOCIAL ── */
.footer-social { display:flex; gap:0.7rem; margin-top:1.1rem; }
.soc-btn {
  width:34px; height:34px;
  border:1px solid rgba(46,112,64,0.22);
  display:flex; align-items:center; justify-content:center;
  color:var(--white-dim); transition:all 0.2s;
  text-decoration:none;
}
.soc-btn:hover { border-color:var(--gold); color:var(--gold); background:rgba(46,112,64,0.06); }
.soc-btn svg { width:16px; height:16px; fill:currentColor; }

/* ── WHATSAPP CTA SECTION ── */
.wa-cta-bar {
  background:var(--dark-2);
  border:1px solid rgba(37,211,102,0.2);
  padding:1.4rem 2rem;
  display:flex; align-items:center; justify-content:space-between;
  gap:1.5rem; margin-bottom:3rem;
  flex-wrap:wrap;
}
.wa-cta-left { display:flex; align-items:center; gap:1rem; }
.wa-icon-large { width:46px; height:46px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.wa-icon-large svg { width:26px; height:26px; fill:#fff; }
.wa-cta-left h3 { font-family:var(--font-display); font-size:1.2rem; color:var(--white); margin-bottom:0.15rem; }
.wa-cta-left p { font-size:0.82rem; color:var(--white-dim); }
.wa-cta-btn {
  display:inline-flex; align-items:center; gap:0.6rem;
  background:#25D366; color:#fff; font-size:0.82rem;
  font-weight:500; letter-spacing:0.1em; text-transform:uppercase;
  padding:0.8rem 1.8rem; white-space:nowrap;
  transition:background 0.2s;
}
.wa-cta-btn:hover { background:#1aab55; }

/* ── STAT COUNTER ── */
.stat-num.counting { display:inline-block; }

/* ── ABOUT STATS ROW ── */
.about-stats-row {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:0; margin-top:3rem;
  border-top:1px solid rgba(46,112,64,0.15);
  border-bottom:1px solid rgba(46,112,64,0.15);
}
.as-item {
  padding:2rem 1.5rem; text-align:center;
  border-right:1px solid rgba(46,112,64,0.15);
}
.as-item:last-child { border-right:none; }
.as-num {
  font-family:var(--font-display); font-size:2.6rem;
  font-weight:600; color:var(--gold-light); display:block; line-height:1;
}
.as-label {
  font-size:0.72rem; letter-spacing:0.14em;
  text-transform:uppercase; color:rgba(255,255,255,0.55);
  margin-top:0.4rem; display:block;
}

/* ── PAGE-HERO BG IMAGE SUPPORT ── */
.page-hero.has-img {
  background: linear-gradient(rgba(22,58,34,0.75), rgba(22,58,34,0.88)),
              url('../assets/images/hero-fabric.jpg') center/cover no-repeat;
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width:900px) {
  .trust-bar-inner { grid-template-columns:repeat(2,1fr); gap:0.8rem; }
  .testi-grid { grid-template-columns:1fr; }
  .cat-preview-grid { grid-template-columns:repeat(2,1fr); }
  .about-stats-row { grid-template-columns:repeat(2,1fr); }
  .as-item:nth-child(2) { border-right:none; }
  .as-item { border-bottom:1px solid rgba(46,112,64,0.15); }
  .as-item:nth-child(3), .as-item:nth-child(4) { border-bottom:none; }
  .as-item:nth-child(4) { border-right:none; }
  .wa-cta-bar { flex-direction:column; align-items:flex-start; }
}
@media (max-width:600px) {
  .trust-bar-inner { grid-template-columns:1fr 1fr; gap:0.5rem; }
  .trust-icon { font-size:1.1rem; }
  .trust-text strong { font-size:0.62rem; }
  .trust-text span { display:none; }
  .testi-card { padding:1.5rem; }
  .testi-text { font-size:0.85rem; }
  .markets-row { gap:0.5rem; }
  .market-chip { padding:0.4rem 0.8rem; font-size:0.72rem; }
  .cat-preview-grid { grid-template-columns:1fr 1fr; gap:0.8rem; }
  .about-stats-row { grid-template-columns:1fr 1fr; }
  .as-item:nth-child(2) { border-right:none; }
  .as-num { font-size:2rem; }
}

/* ── SELECT DROPDOWN ARROW ── */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232E7040' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 800;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }

/* ── PRODUCT IMAGE CURSOR ── */
.ps-card img, .strip-item img, .fab-card img, .fdp-item img, .afs-item img {
  cursor: zoom-in;
}

/* ── LIGHTBOX ── */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lb-overlay.lb-active {
  opacity: 1;
  visibility: visible;
}
.lb-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 88vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transition: opacity 0.18s ease;
}
.lb-close {
  position: fixed;
  top: 1rem; right: 1.4rem;
  background: none; border: none;
  color: #fff; font-size: 2.4rem;
  cursor: pointer; z-index: 9100;
  line-height: 1; padding: 0.4rem 0.6rem;
  opacity: 0.7; transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; color: var(--gold); }
.lb-nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 2rem;
  cursor: pointer; z-index: 9100;
  padding: 1rem 0.9rem;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s;
}
.lb-nav:hover { background: rgba(46,112,64,0.25); border-color: var(--gold); color: var(--gold); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-counter {
  position: fixed;
  bottom: 1.4rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-family: var(--font-body);
  pointer-events: none;
}
@media (max-width: 600px) {
  .lb-nav { display: none; }
  .lb-img { max-width: 95vw; max-height: 80vh; }
}

/* ══════════════════════════════════════════
   IPHONE & MOBILE PRO UPGRADES
   ══════════════════════════════════════════ */

/* ── Dynamic viewport height (iOS Safari address bar fix) ── */
.hero {
  min-height: auto;
}

/* ── Safe area insets for notch / Dynamic Island / home bar ── */
.navbar {
  padding-top: max(0.6rem, env(safe-area-inset-top));
}
.navbar.scrolled {
  padding-top: max(0.4rem, env(safe-area-inset-top));
}
@media (max-width: 900px) {
  .nav-links.mobile-open {
    padding-top: max(5rem, calc(3.5rem + env(safe-area-inset-top)));
    padding-bottom: max(2rem, calc(1rem + env(safe-area-inset-bottom)));
    padding-right: max(2rem, calc(1rem + env(safe-area-inset-right)));
  }
}
.whatsapp-btn {
  bottom: calc(1.8rem + env(safe-area-inset-bottom));
  right: calc(1.8rem + env(safe-area-inset-right));
}

/* ── Touch devices: show product overlays (can't hover on iPhone) ── */
@media (hover: none) {
  .ps-overlay { opacity: 1; }
  .strip-item .strip-label { opacity: 1; }
  .cat-link-arrow { opacity: 1; transform: translateY(0); }
  .cat-card img, .ps-card img, .strip-item img { transform: none !important; }
}

/* ── Tap / active feedback for touch ── */
.btn-primary:active,
.btn-ghost:active,
.btn-ghost-light:active {
  opacity: 0.82;
  transform: scale(0.97);
  transition: transform 0.08s, opacity 0.08s;
}
.ps-card:active { opacity: 0.88; }
.market-chip:active { background: rgba(46,112,64,0.1); }
.wa-cta-btn:active { background: #1aab55; }
.testi-card:active { border-color: rgba(46,112,64,0.4); }

/* ── Why Choose Us grid ── */
.qc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.qc-card {
  padding: 2rem;
  border: 1px solid rgba(46,112,64,0.2);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}
.qc-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(46,112,64,0.08);
}
.qc-card:active { transform: scale(0.98); }
.qc-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.qc-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.7rem;
}
.qc-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ── Better touch targets on mobile ── */
@media (max-width: 768px) {
  .hamburger {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }
  .hamburger span { width: 26px; height: 2px; }
  .nav-links.mobile-open a {
    min-height: 52px;
    display: flex;
    align-items: center;
  }
  .btn-primary, .btn-ghost, .btn-ghost-light {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .whatsapp-btn {
    width: 60px;
    height: 60px;
  }
  .whatsapp-btn svg { width: 32px; height: 32px; }
  .soc-btn { width: 42px; height: 42px; }
  .market-chip { padding: 0.6rem 1rem; min-height: 42px; }
}

/* ── Lightbox mobile: bigger close button, safe area ── */
@media (max-width: 600px) {
  .lb-close {
    top: max(0.8rem, env(safe-area-inset-top));
    right: max(1rem, env(safe-area-inset-right));
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.45);
    border-radius: 50%;
    padding: 0;
    opacity: 1;
  }
  .lb-counter {
    bottom: max(1.2rem, calc(env(safe-area-inset-bottom) + 0.6rem));
  }
}

/* ── Responsive: qc-grid single column on mobile ── */
@media (max-width: 600px) {
  .qc-grid { grid-template-columns: 1fr; }
  .qc-card { padding: 1.5rem; }
  .qc-title { font-size: 1.2rem; }
}

/* ── Small phone (iPhone SE, 375px and below) ── */
@media (max-width: 390px) {
  .hero-title { font-size: clamp(1.9rem, 9.5vw, 2.6rem); }
  .hero-sub { font-size: 0.88rem; }
  .section-title { font-size: clamp(1.5rem, 7.5vw, 2rem); }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.6rem; letter-spacing: 0.1em; }
}

/* ── Prevent text from being too small on mobile ── */
@media (max-width: 600px) {
  .trust-text strong { font-size: 0.68rem; }
  .section-tag { font-size: 0.68rem; }
  .hero-tag { font-size: 0.68rem; }
}

/* ── Smooth momentum scrolling for iOS ── */
html {
  -webkit-overflow-scrolling: touch;
}

/* ── Prevent double-tap zoom on buttons (iOS) ── */
button, a, .btn-primary, .btn-ghost, .btn-ghost-light {
  touch-action: manipulation;
}

/* ── CTA section buttons: full-width on small mobile ── */
@media (max-width: 480px) {
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width: 100%;
    text-align: center;
  }
}

/* ── Collection strip: proper 2-col on mobile ── */
@media (max-width: 600px) {
  .strip-5 { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .strip-5 .strip-item:nth-child(3),
  .strip-5 .strip-item:nth-child(4),
  .strip-5 .strip-item:nth-child(5) { display: none; }
  .strip-item { aspect-ratio: 1/1; }
}

/* ── Page hero mobile padding (notch safe) ── */
@media (max-width: 600px) {
  .page-hero {
    padding-top: max(7rem, calc(5.5rem + env(safe-area-inset-top)));
  }
}
