/* ============================================================
   TAANIRA TEXTILE — COMBINED STYLESHEET
   Sections: Reset, Variables, Navbar, Hero, About, Category,
   Vision, Partner, Process, Featured, Infrastructure,
   WhiteLabel, Footer, Contact Modal, Animations, Responsive
   ============================================================ */

/* ── RESET & VARIABLES ── */
:root {
  --cream: #FAF3E8;
  --cream-dark: #F0E4CC;
  --blush: #E8A898;
  --blush-light: #F5D0C5;
  --blush-dark: #C97B6B;
  --amber: #D4934A;
  --amber-light: #F0C882;
  --amber-dark: #A06828;
  --sky: #A8C8D8;
  --sky-light: #D4E8F0;
  --brown: #4A2E1A;
  --brown-mid: #7A5035;
  --brown-light: #A8785A;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 243, 232, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0 3rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 24px rgba(74,46,26,0.08); }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text span {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--amber);
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--amber-dark); }

.nav-cta {
  background: var(--brown);
  color: var(--cream) !important;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--amber-dark) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  /* min-height: 100vh;
  padding-top: 40px; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}

.hero-deco-1 { width: 320px; height: 320px; background: var(--amber-light); top: -80px; left: -60px; }
.hero-deco-2 { width: 200px; height: 200px; background: var(--blush-light); bottom: 40px; left: 10%; }
.hero-deco-3 { width: 160px; height: 160px; background: var(--sky-light); top: 15%; right: 48%; }

.hero-sparkle {
  position: absolute;
  color: var(--amber);
  font-size: 28px;
}

.hero-sparkle-1 { top: 35%; left: 38%; }
.hero-sparkle-2 { top: 28%; left: 46%; font-size: 20px; }

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 5rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush-light);
  color: var(--blush-dark);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.8rem;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blush-dark);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--brown-light);
  margin-bottom: 1.2rem;
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: var(--brown);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--brown-mid);
  max-width: 380px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; }

.btn-primary {
  background: var(--blush);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,168,152,0.4);
}

.btn-primary:hover {
  background: var(--blush-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,123,107,0.4);
}

.btn-ghost {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brown);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: gap 0.2s;
}

.btn-ghost:hover { gap: 14px; }
.btn-ghost-arrow { font-size: 18px; transition: transform 0.2s; }
.btn-ghost:hover .btn-ghost-arrow { transform: translateX(4px); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--brown);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--brown-light);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-amber {
  position: absolute;
  bottom: 41px; right: 0;
  width: 75%;
  height: 92%;
  background: var(--amber-light);
  opacity: 0.5;
}

.hero-image-arch {
  position: relative;
  z-index: 2;
  width: 435px;
  height: 680px;
  border-radius: 200px 200px 0 0;
  background: linear-gradient(180deg, var(--sky-light) 0%, var(--amber-light) 100%);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 20px 60px rgba(74,46,26,0.15);
  margin-bottom: 53px;
  margin-left: auto;
  margin-right: 4%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translateY(-40px);
}

.hero-image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-model-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-model-img.active-img {
  opacity: 1;
  position: relative;
}

/* Hero Slider */
.hero-slider { position: relative; }

.hero-slide { display: none; animation: heroFade 0.8s ease; }
.hero-slide.active { display: block; }

.hero-dots { display: flex; gap: 10px; margin-top: 25px; }

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: 0.3s;
}

.hero-dot.active {
  background: #0f5b46;
  transform: scale(1.2);
}

/* Hero Tags */
.hero-tag {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(74,46,26,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.hero-tag-1 { bottom: 28%; left: 5%; }
.hero-tag-2 { top: 28%; right: 5%; }
.hero-tag-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-tag-1 .hero-tag-dot { background: var(--blush); }
.hero-tag-2 .hero-tag-dot { background: var(--amber); }

/* ── SECTION COMMONS ── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber-dark);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--brown-mid);
  margin-bottom: 2rem;
}

/* ── ABOUT ── */
.about {
  background: var(--white);
  padding: 7rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 1.5rem;
  transition: transform 0.25s;
}

.about-card:hover { transform: translateY(-4px); }
.about-card:nth-child(2) { background: var(--blush-light); margin-top: 1.5rem; }
.about-card:nth-child(3) { background: var(--sky-light); }
.about-card:nth-child(4) { background: var(--amber-light); margin-top: 1.5rem; }

.about-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  margin-bottom: 22px;
  transition: 0.35s ease;
}

.about-card-icon svg { width: 50px; height: 50px; }

.about-card:hover .about-card-icon {
  transform: translateY(-4px);
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.35);
}

.about-card-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.about-card-text {
  font-size: 13px;
  color: var(--brown-mid);
  line-height: 1.6;
}

/* ── CATEGORY ── */
.category {
  background: var(--cream);
  padding: 7rem 6rem;
  text-align: center;
}

.category-header { margin-bottom: 3.5rem; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cat-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(74,46,26,0.18);
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cat-card:hover .cat-img { transform: scale(1.08); }

.cat-card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(74,46,26,0.65) 0%, transparent 100%);
  color: var(--white);
}

.cat-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.25);
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.cat-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.cat-count { font-size: 13px; opacity: 0.8; }

.cat-card-arrow {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}

.cat-card:hover .cat-card-arrow {
  background: var(--white);
  color: var(--brown);
  transform: rotate(45deg);
}

/* ── VISION ── */
.vision {
  background: var(--white);
  padding: 7rem 6rem;
  position: relative;
  overflow: hidden;
}

.vision-deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,0.04);
}

.vision-deco-1 { width: 500px; height: 500px; top: -200px; right: -150px; }
.vision-deco-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }

.vision-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.vision-header .section-tag { color: var(--amber-light); }

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.vision-card {
  border: 1px solid rgba(250,243,232,0.12);
  border-radius: 24px;
  padding: 2.5rem;
  background: rgba(250,243,232,0.05);
  transition: background 0.3s, transform 0.25s;
}

.vision-card:hover { background: rgba(250,243,232,0.1); transform: translateY(-4px); }

.vision-card:nth-child(1) {
  background: linear-gradient(145deg, #E6F1FB 0%, #B5D4F4 100%);
  border: 1.5px solid #85B7EB;
}

.vision-card:nth-child(2) {
  background: linear-gradient(145deg, #FBEAF0 0%, #F4C0D1 100%);
  border: 1.5px solid #ED93B1;
}

.vision-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 1.5rem;
}

.vision-card:nth-child(1) .vision-icon { background: #B5D4F4; color: #0C447C; }
.vision-card:nth-child(2) .vision-icon { background: #F4C0D1; color: #72243E; }

.vision-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 1rem;
}

.vision-card:nth-child(1) .vision-card-title { color: #042C53; }
.vision-card:nth-child(2) .vision-card-title { color: #4B1528; }

.vision-card-text { font-size: 14px; line-height: 1.85; }

.vision-card:nth-child(1) .vision-card-text { color: #185FA5; }
.vision-card:nth-child(2) .vision-card-text { color: #993556; }

/* ── PARTNER ── */
.partner {
  background: var(--cream);
  padding: 7rem 6rem;
  text-align: center;
}

.partner-header { margin-bottom: 4rem; }
.partner-header .section-title { margin-bottom: 1rem; }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(74,46,26,0.06);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(74,46,26,0.12);
}

.partner-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: 0.35s ease;
}

.partner-icon svg { width: 34px; height: 34px; }

.partner-blush { background: var(--blush-light); color: var(--blush-dark); }
.partner-amber { background: var(--amber-light); color: var(--amber-dark); }
.partner-sky   { background: var(--sky-light);   color: #185FA5; }
.partner-purple{ background: #f0e4ff;             color: #7c3aed; }

.partner-card:hover .partner-icon { transform: translateY(-5px) scale(1.03); }

.partner-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--brown);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.partner-card-text {
  font-size: 13px;
  color: var(--brown-mid);
  line-height: 1.75;
}

/* ── PROCESS ── */
.process {
  background: var(--white);
  padding: 7rem 6rem;
  text-align: center;
}

.process-header { margin-bottom: 4rem; }

.process-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.process-image-wrap { position: relative; }

.process-image-arch {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  border: 4px solid #d4934a;
  box-shadow: 0 20px 60px rgba(74,46,26,0.15);
  background: linear-gradient(180deg, var(--sky-light) 0%, var(--amber-light) 100%);
}

.process-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.process-image-wrap:hover .process-img { transform: scale(1.04); }

.process-image-badge {
  position: absolute;
  bottom: 24px; left: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
  box-shadow: 0 8px 32px rgba(74,46,26,0.14);
}

.process-image-badge i { color: var(--amber-dark); font-size: 16px; }

.process-steps { display: flex; flex-direction: column; gap: 0; }

.process-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
}

.process-step-last { border-bottom: none; }

.process-step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-dark);
  letter-spacing: 0.05em;
  transition: background 0.3s, border-color 0.3s;
  margin-top: 2px;
}

.process-step:hover .process-step-num {
  background: var(--amber-light);
  border-color: var(--amber);
}

.process-step-content { flex: 1; }

.process-step-icon {
  width: 34px; height: 34px;
  border-radius: 12px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-right: 12px;
  flex-shrink: 0;
}

.process-step-icon svg { width: 18px; height: 18px; }

.process-step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-step-title i { font-size: 13px; color: var(--amber-dark); }

.process-step-text {
  font-size: 13px;
  color: var(--brown-mid);
  line-height: 1.7;
}

/* ── FEATURED ── */
.featured {
  background: var(--sky-light);
  padding: 7rem 6rem;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(74,46,26,0.14);
}

.product-img {
  height: 315px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-real-img { transform: scale(1.08); }

.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--brown);
  padding: 5px 12px;
  border-radius: 12px;
  text-transform: uppercase;
}

.product-wishlist {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s;
}

.product-wishlist:hover { transform: scale(1.15); }

.product-info { padding: 1.5rem; text-align: left; }

.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.product-category {
  font-size: 12px;
  color: var(--brown-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.product-footer { display: flex; align-items: center; justify-content: space-between; }

.product-price { font-size: 20px; font-weight: 600; color: var(--brown); }
.product-price-old { font-size: 14px; color: var(--brown-light); text-decoration: line-through; margin-left: 6px; }

.product-btn {
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: 30px;
  padding: 9px 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.product-btn:hover { background: var(--amber-dark); }

/* ── INFRASTRUCTURE ── */
.infra {
  background: var(--cream);
  padding: 7rem 6rem;
  text-align: center;
}

.infra-header { margin-bottom: 4rem; }

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.infra-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(74,46,26,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: left;
}

.infra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(74,46,26,0.12);
}

.infra-card-top {
  padding: 2rem;
  border-bottom: 1px solid rgba(74,46,26,0.06);
}

.infra-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.infra-icon svg { width: 30px; height: 30px; }

.infra-blush { background: var(--blush-light); color: var(--blush-dark); }
.infra-amber { background: var(--amber-light); color: var(--amber-dark); }
.infra-sky   { background: var(--sky-light);   color: #185FA5; }

.infra-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.3rem;
}

.infra-card-sub {
  font-size: 12px;
  color: var(--brown-light);
  letter-spacing: 0.04em;
}

.infra-card-body {
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.infra-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--brown-mid);
}

.infra-item i { color: var(--amber-dark); font-size: 11px; flex-shrink: 0; }

/* ── WHITE LABEL ── */
.whitelabel {
  background: var(--white);
  padding: 7rem 6rem;
}

/* TOP SECTION CENTER */
.whitelabel-top{
    text-align:center;
    display:flex;
    justify-content:center;
 margin-bottom: 4rem; ;
}

.whitelabel-left{
    max-width:700px;
    margin:0 auto;
}

.whitelabel-left .section-body{
    margin:0 auto;
}



.whitelabel-highlight {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-radius: 20px;
  border: 1px solid var(--cream-dark);
  flex-shrink: 0;
}

.wl-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--brown);
}

.wl-stat-label {
  font-size: 11px;
  color: var(--brown-light);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.wl-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
}

/* CARDS GRID: 3 columns */
.wl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Last card spans full width */
.wl-service-card--full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.2rem;
  align-items: start;
}

.wl-service-card--full .wl-service-icon {
  grid-row: 1 / 3;
  align-self: center;
  margin-bottom: 0;
}

.wl-service-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.wl-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(74,46,26,0.1);
  background: var(--white);
}

.wl-service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.wl-service-icon svg { width: 24px; height: 24px; }

.wl-service-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.wl-service-text {
  font-size: 12px;
  color: var(--brown-mid);
  line-height: 1.65;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .whitelabel { padding: 5rem 3rem; }
  .whitelabel-top { grid-template-columns: 1fr; gap: 2rem; }
  .wl-services-grid { grid-template-columns: repeat(2, 1fr); }
  .wl-service-card--full { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .whitelabel { padding: 4rem 1.5rem; }
  .wl-services-grid { grid-template-columns: 1fr; }
  .wl-service-card--full {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .wl-service-card--full .wl-service-icon {
    grid-row: auto;
    margin-bottom: 18px;
  }
  .whitelabel-highlight { flex-direction: column; text-align: center; gap: 1rem; }
  .wl-divider { width: 40px; height: 1px; }
}

/* ── FOOTER ── */
footer {
  background: var(--cream-dark);
  padding: 5rem 6rem 3rem;
  border-top: 1px solid rgba(74,46,26,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brown);
}

.footer-logo {
  width: 58px; height: 58px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-brand-text { line-height: 1.3; }

.footer-brand-tagline {
  font-size: 13px;
  line-height: 1.75;
  color: var(--brown-mid);
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-contact-info { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--brown-mid);
}

.footer-contact-item i { color: var(--amber-dark); margin-top: 4px; min-width: 16px; }

.footer-contact-item a {
  text-decoration: none;
  color: var(--brown-mid);
  transition: 0.3s ease;
}

.footer-contact-item a:hover { color: var(--amber-dark); }

.footer-socials { display: flex; gap: 10px; margin-top: 1.8rem; }

.footer-social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(74,46,26,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #4A2E1A;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: #4A2E1A;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.footer-col-title {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--brown-mid);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}

.footer-links a:hover { color: var(--amber-dark); padding-left: 4px; }

.footer-newsletter { display: flex; gap: 0; margin-top: 1rem; }

.footer-newsletter input {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid rgba(74,46,26,0.15);
  border-right: none;
  border-radius: 30px 0 0 30px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brown);
  outline: none;
}

.footer-newsletter button {
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: 0 30px 30px 0;
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-newsletter button:hover { background: var(--amber-dark); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(74,46,26,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 13px; color: var(--brown-light); }

.footer-bottom-links { display: flex; gap: 2rem; }

.footer-bottom-links a {
  font-size: 13px;
  color: var(--brown-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--brown); }

/* ── CONTACT MODAL ── */
.contact-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(65, 36, 2, 0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.contact-modal-overlay.open { display: flex; }

.contact-modal {
  background: #fff;
  border-radius: 16px;
  border: 0.5px solid #EF9F27;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  animation: modalIn 0.2s ease;
}

.contact-modal-header {
  background: #BA7517;
  padding: 20px 24px 16px;
  position: relative;
}

.contact-modal-header h2 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 500;
  color: #FAEEDA;
}

.contact-modal-header p {
  margin: 0;
  font-size: 13px;
  color: #FAC775;
  line-height: 1.5;
}

.contact-modal-badge {
  display: inline-block;
  background: #FAEEDA;
  color: #633806;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.contact-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(250,238,218,0.18);
  border: none;
  border-radius: 8px;
  width: 32px; height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAEEDA;
  font-size: 18px;
  transition: background 0.15s;
}

.contact-modal-close:hover { background: rgba(250,238,218,0.3); }

.contact-modal-body { padding: 20px 24px 24px; }

.cm-field { margin-bottom: 14px; }

.cm-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #633806;
  margin-bottom: 5px;
}

.cm-field input,
.cm-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 0.5px solid #EF9F27;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 14px;
  color: #2C2C2A;
  background: #FFFBF4;
  outline: none;
  font-family: inherit;
  resize: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.cm-field input:focus,
.cm-field textarea:focus {
  border-color: #BA7517;
  box-shadow: 0 0 0 3px rgba(186,117,23,0.15);
}

.cm-field input::placeholder,
.cm-field textarea::placeholder { color: #B4B2A9; }

.cm-field .cm-error {
  font-size: 11px;
  color: #A32D2D;
  margin-top: 4px;
  display: none;
}

.cm-field.invalid input,
.cm-field.invalid textarea { border-color: #E24B4A; }
.cm-field.invalid .cm-error { display: block; }

.cm-submit {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s, transform 0.1s;
  margin-top: 6px;
  font-family: inherit;
}

.cm-submit:hover { background: #1ebe58; }
.cm-submit:active { transform: scale(0.98); }

.cm-note {
  text-align: center;
  font-size: 11px;
  color: #888780;
  margin-top: 10px;
}

.cm-success {
  display: none;
  text-align: center;
  padding: 36px 24px;
}

.cm-success-icon {
  width: 56px; height: 56px;
  background: #EAF3DE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: #3B6D11;
}

.cm-success h3 {
  font-size: 16px;
  font-weight: 500;
  color: #27500A;
  margin: 0 0 6px;
}

.cm-success p {
  font-size: 13px;
  color: #888780;
  margin: 0;
  line-height: 1.6;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50%       { opacity: 0.6; transform: scale(1.2) rotate(15deg); }
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-left > * { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.35s; }
.hero-left > *:nth-child(5) { animation-delay: 0.4s; }
.hero-left > *:nth-child(6) { animation-delay: 0.5s; }
.hero-left > *:nth-child(7) { animation-delay: 0.6s; }

.hero-image-arch { animation: float 6s ease-in-out infinite; }
.hero-sparkle    { animation: sparkle 2s ease-in-out infinite; }
.hero-sparkle-2  { animation-delay: 0.5s; }

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero              { grid-template-columns: 1fr; }
  .hero-left         { padding: 4rem 3rem; }
  .hero-right        { min-height: 60vw; }
  .about             { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 3rem; }
  .category          { padding: 5rem 3rem; }
  .category-grid     { grid-template-columns: repeat(2, 1fr); }
  .vision            { padding: 5rem 3rem; }
  .partner           { padding: 5rem 3rem; }
  .partner-grid      { grid-template-columns: repeat(2, 1fr); }
  .process           { padding: 5rem 3rem; }
  .process-body      { grid-template-columns: 1fr; gap: 3rem; }
  .process-image-arch{ aspect-ratio: 16/9; border-radius: 24px; }
  .process-image-badge{ left: 16px; }
  .featured          { padding: 5rem 3rem; }
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
  .infra             { padding: 5rem 3rem; }
  .infra-grid        { grid-template-columns: 1fr; }
  .whitelabel        { padding: 5rem 3rem; }
  .whitelabel-inner  { grid-template-columns: 1fr; gap: 3rem; }
  footer             { padding: 4rem 3rem 2rem; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .category-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  nav { padding: 0 1.5rem; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(250, 243, 232, 0.98);
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 18px 35px rgba(74,46,26,0.12);
    padding: 0.75rem 1.5rem 1.25rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s, transform 0.25s;
  }
  .nav-links.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.95rem 0; border-bottom: 1px solid rgba(74,46,26,0.08); }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-cta    { display: inline-block !important; width: fit-content; margin-top: 0.75rem; }
  .nav-hamburger { display: flex; }
  .hero-left  { padding: 3rem 1.5rem; }
  .about      { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card:nth-child(2),
  .about-card:nth-child(4) { margin-top: 0; }
  .category   { padding: 4rem 1.5rem; }
  .category-grid { grid-template-columns: 1fr !important; }
  .vision     { padding: 4rem 1.5rem; }
  .vision-grid{ grid-template-columns: 1fr; }
  .partner    { padding: 4rem 1.5rem; }
  .partner-grid { grid-template-columns: 1fr; }
  .process    { padding: 4rem 1.5rem; }
  .process-image-badge { left: 12px; bottom: 12px; font-size: 12px; padding: 10px 14px; }
  .featured   { padding: 4rem 1.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .infra      { padding: 4rem 1.5rem; }
  .infra-card-body { grid-template-columns: 1fr; }
  .whitelabel { padding: 4rem 1.5rem; }
  .wl-services-grid { grid-template-columns: 1fr; }
  .wl-service-card[style*="span 2"] { grid-column: span 1; }
  .whitelabel-highlight { flex-direction: column; text-align: center; gap: 1rem; }
  .wl-divider { width: 40px; height: 1px; }
  footer      { padding: 3rem 1.5rem 2rem; }
  .footer-grid{ grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}