/* =============================================
   IMRAN TRADERS — Main Stylesheet
   Theme: Professional Pakistani Business
   ============================================= */

/* --- CSS Variables --- */
:root {
  --primary: #0b2545;
  --accent: #d4790a;
  --accent-lt: #f0a43a;
  --accent-lt-2: #16467f;
  --bg: #f7f8fa;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --card-bg: #ffffff;
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 6px 24px rgba(11, 37, 69, 0.13);
  --shadow-lg: 0 16px 48px rgba(11, 37, 69, 0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --font-head: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --slide-count: 3;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Utility --- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section {
  padding: 80px 0;
}
.section-sm {
  padding: 50px 0;
}
.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 44px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(212, 121, 10, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 8px;
  justify-content: center;
  width: fit-content;
}
.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 121, 10, 0.4);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 8px;
  justify-content: center;
  width: fit-content;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    margin-top: 8px;
    justify-content: center;
    width: fit-content;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary{
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 8px;
  justify-content: center;
  width: fit-content;
}

.btn-secondary:hover {
  background: var(--accent-lt-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 70, 127, 0.25);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  padding: 8px 16px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}
.nav-cta {
  background: var(--accent);
  color: var(--white);
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--accent-lt);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  height: 620px;
}

.slider-track {
  display: flex;
  height: 100%;
  width: calc(100% * var(--slide-count));
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Individual slide */
.slide {
  position: relative;
  width: calc(100% / var(--slide-count));
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

/* Background image layer */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.slide.is-active .slide-bg {
  transform: scale(1);
}

/* Dark overlay */
.slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 37, 69, 0.82) 0%,
    rgba(11, 37, 69, 0.55) 55%,
    rgba(11, 37, 69, 0.2) 100%
  );
}

/* Slide-specific background images */
.bg-1 {
  background-image: url("https://images.unsplash.com/photo-1586201375761-83865001e31c?w=1600&q=80&auto=format&fit=crop");
}
.bg-2 {
  background-image: url("https://images.unsplash.com/photo-1474979266404-7eaacbcd87c5?w=1600&q=80&auto=format&fit=crop");
}
.bg-3 {
  background-image: url("https://images.unsplash.com/photo-1601050690597-df0568f70950?w=1600&q=80&auto=format&fit=crop");
}

/* Slide content layout */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 20px;
  padding-bottom: 40px;
}

/* Text side */
.slide-text {
  max-width: 520px;
  color: var(--white);
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 121, 10, 0.25);
  border: 1px solid rgba(212, 121, 10, 0.5);
  color: var(--accent-lt);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease 0.2s,
    transform 0.5s ease 0.2s;
}

.slide-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease 0.35s,
    transform 0.55s ease 0.35s;
}
.slide-title span {
  color: var(--accent-lt);
}

.slide-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease 0.5s,
    transform 0.55s ease 0.5s;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease 0.62s,
    transform 0.55s ease 0.62s;
}

/* Animate text in when slide is active */
.slide.is-active .slide-badge,
.slide.is-active .slide-title,
.slide.is-active .slide-desc,
.slide.is-active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Visual cards side */
.slide-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.6s ease 0.45s,
    transform 0.6s ease 0.45s;
}
.slide.is-active .slide-visual {
  opacity: 1;
  transform: translateX(0);
}

.slide-product-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  color: var(--white);
  transition: background var(--transition);
}
.slide-product-card:hover {
  background: rgba(255, 255, 255, 0.16);
}
.slide-product-card.main-card {
  min-width: 220px;
}
.slide-product-card.sm-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}

/* Accent colour variants */
.slide-product-card.accent-2 {
  border-color: rgba(212, 121, 10, 0.3);
}
.slide-product-card.accent-3 {
  border-color: rgba(100, 180, 80, 0.25);
}

.spc-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(212, 121, 10, 0.3);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--accent-lt);
}
.spc-icon-wrap.sm {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 0;
  flex-shrink: 0;
}
.spc-icon-wrap.acc2 {
  background: rgba(212, 121, 10, 0.25);
}
.spc-icon-wrap.acc3 {
  background: rgba(100, 180, 80, 0.2);
  color: #8fe07a;
}

.spc-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.spc-tag {
  font-size: 0.75rem;
  color: var(--accent-lt);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.slider-btn.prev {
  left: 24px;
}
.slider-btn.next {
  right: 24px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* =============================================
   ABOUT PREVIEW
   ============================================= */
.about-preview {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-box {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/3;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.2), transparent);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-label {
  font-size: 0.72rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-content .section-label {
  display: block;
}
.about-content .section-title {
  margin-bottom: 16px;
}
.about-content p {
  color: var(--muted);
  margin-bottom: 16px;
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.point-icon {
  width: 28px;
  height: 28px;
  background: rgba(212, 121, 10, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.point-text {
  font-size: 0.92rem;
  color: var(--text);
}

/* =============================================
   FEATURED PRODUCTS
   ============================================= */
.featured-products {
  background: var(--bg);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 121, 10, 0.3);
}
.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}

/* Fallback icon (shown only when no img) */
.product-fa-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #e8eef6, #cdd8ea);
  color: var(--primary);
  opacity: 0.5;
}
.product-img img ~ .product-fa-icon {
  display: none;
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 1;
}
.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-variations {
  font-size: 0.78rem;
  color: var(--muted);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.83rem;
  border-radius: 6px;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(212, 121, 10, 0.1);
  border-radius: 50%;
}
.why-us::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.why-us .section-title {
  color: var(--white);
}
.why-us .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(212, 121, 10, 0.5);
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 121, 10, 0.2);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  color: var(--accent-lt);
}
.feature-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* =============================================
   CALL TO ACTION BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #b5620a 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.cta-banner p {
  opacity: 0.88;
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a6e 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a {
  color: var(--accent-lt);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-main {
  background: var(--white);
}
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.mv-card {
  border-radius: var(--radius);
  padding: 24px;
}
.mv-card.mission {
  background: rgba(11, 37, 69, 0.05);
  border: 1px solid rgba(11, 37, 69, 0.1);
}
.mv-card.vision {
  background: rgba(212, 121, 10, 0.07);
  border: 1px solid rgba(212, 121, 10, 0.2);
}
.mv-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.mv-title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.mv-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Stats banner grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--accent-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* mv-icon as FA icon */
.mv-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.mv-card.mission .mv-icon {
  background: rgba(11, 37, 69, 0.1);
  color: var(--primary);
}
.mv-card.vision .mv-icon {
  background: rgba(212, 121, 10, 0.15);
  color: var(--accent);
}

/* About content paragraphs */
.about-content-text {
  color: var(--muted);
  margin-bottom: 16px;
}

/* Value card icon as FA */
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(11, 37, 69, 0.06);
  border: 1px solid rgba(11, 37, 69, 0.08);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  color: var(--primary);
  transition: var(--transition);
}
.value-card:hover .value-icon {
  background: rgba(212, 121, 10, 0.1);
  border-color: rgba(212, 121, 10, 0.2);
  color: var(--accent);
}

/* Contact links */
.contact-link {
  color: var(--accent);
  transition: var(--transition);
}
.contact-link:hover {
  color: var(--accent-lt);
}

/* WhatsApp button top margin variant */
.whatsapp-btn-mt {
  margin-top: 20px;
}

/* Form required star */
.form-required {
  color: #dc2626;
}

/* Map section */
.map-section {
  background: var(--bg);
}
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 320px;
  background: linear-gradient(135deg, #e8eef6, #cdd8ea);
  display: grid;
  place-items: center;
  text-align: center;
}
.map-placeholder-icon {
  font-size: 2.8rem;
  color: var(--primary);
  opacity: 0.35;
  display: block;
  margin-bottom: 14px;
}
.map-placeholder h3 {
  font-family: var(--font-head);
  color: var(--primary);
  margin-bottom: 8px;
}
.map-placeholder p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

/* Contact info-card icon FA */
.info-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(11, 37, 69, 0.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--primary);
}

/* About image — real photo */
.about-img-box-tall {
  aspect-ratio: 3/4;
}

/* Responsive stats */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.team-section {
  background: var(--bg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(212, 121, 10, 0.3);
}
.value-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.value-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.products-page {
  background: var(--bg);
}
.products-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
  background: var(--white);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212, 121, 10, 0.06);
}

/* Empty state */
.products-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
}
.products-empty i {
  font-size: 3rem;
  color: var(--border);
  display: block;
  margin-bottom: 16px;
}
.products-empty p {
  font-size: 1rem;
}

/* =============================================
   PRODUCT DETAIL
   ============================================= */
.product-detail-section {
  background: var(--white);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.detail-img-main {
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.detail-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-img-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8eef6, #cdd8ea);
  display: grid;
  place-items: center;
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.4;
}
.detail-info .section-label {
  display: block;
  margin-bottom: 6px;
}
.detail-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.detail-desc {
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.75;
}
.detail-desc p {
  margin-bottom: 12px;
}

.variations-title {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}
.variations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.variation-chip {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.variation-chip:hover,
.variation-chip.selected {
  border-color: var(--accent);
  background: rgba(212, 121, 10, 0.08);
  color: var(--accent);
}
.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Not Found (404) */
.not-found-section {
  background: var(--white);
}
.not-found-wrap {
  text-align: center;
  padding: 100px 0;
}
.not-found-icon {
  font-size: 4rem;
  color: var(--border);
  margin-bottom: 24px;
  display: block;
}
.not-found-wrap h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.not-found-wrap p {
  color: var(--muted);
  margin-bottom: 28px;
}

.detail-meta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.detail-meta-badge {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.detail-meta-badge--category {
  background: rgba(11, 37, 69, 0.07);
  color: var(--primary);
}
.detail-meta-badge--quality {
  background: rgba(212, 121, 10, 0.1);
  color: var(--accent);
}

/* Product info box */
.detail-info-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}
.detail-info-box-title {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 14px;
}
.detail-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
}
.detail-info-grid strong {
  color: var(--text);
}
.detail-stock {
  color: #16a34a;
  font-weight: 600;
}

.related-section {
  background: var(--bg);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  display: flex;
  gap: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  align-items: flex-start;
}
.info-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(11, 37, 69, 0.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--primary);
}
.info-card-title {
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 4px;
}
.info-card-value {
  color: var(--muted);
  font-size: 0.92rem;
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 8px;
  justify-content: center;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Contact form */
.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 121, 10, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-error {
  display: none;
  color: #dc2626;
  font-size: 0.78rem;
  margin-top: 4px;
}
.form-success {
  display: none;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #16a34a;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #07182e;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo-name {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.footer-brand .logo-tagline {
  font-size: 0.7rem;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.7);
}
.social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--accent-lt);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  align-items: flex-start;
}
.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}
.footer-contact-link {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-contact-link:hover {
  color: var(--accent-lt);
}
.footer-brand-link {
  color: var(--white);
  font-weight: 700;
  transition: var(--transition);
}
.footer-brand-link:hover {
  color: var(--accent-lt);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.footer-policy-links a {
    color: inherit; 
    text-decoration: none;
    margin: 0 5px;
}

.footer-policy-links a:hover {
  opacity: 1;
  color: var(--accent-lt);
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(212, 121, 10, 0.4);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  cursor: pointer;
}
#scrollTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTop:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
}

/* =============================================
   ANIMATIONS / FADE-UP
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 {
  transition-delay: 0.1s;
}
.fade-up-delay-2 {
  transition-delay: 0.2s;
}
.fade-up-delay-3 {
  transition-delay: 0.3s;
}
.fade-up-delay-4 {
  transition-delay: 0.4s;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .products-4-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .hero-slider {
    height: 560px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  .hamburger {
    display: flex;
  }


  .hero-slider {
    height: auto;
    min-height: 520px;
  }
  .slide-content {
    flex-direction: column;
    justify-content: center;
    padding: 60px 0 80px;
  }
  .slide-visual {
    display: none;
  }
  .slide-text {
    max-width: 100%;
    text-align: center;
  }
  .slide-actions {
    justify-content: center;
  }
  .slide-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid,
  .about-full-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-badge {
    bottom: -10px;
    right: 10px;
  }
  .products-grid,
  .products-4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mission-vision {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .products-4-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .slide-actions {
    flex-direction: column;
  }
  .slide-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   MOBILE NAV 
   ============================================= */

/* Desktop nav — mobile pe hide */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
}

/* Mobile nav — desktop pe hide */
.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: block;
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .mobile-nav.open {
    max-height: 300px;
  }
  .mobile-nav ul {
    list-style: none;
    padding: 8px 0 12px;
    margin: 0;
  }
  .mobile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .mobile-nav ul li:last-child a {
    border-bottom: none;
  }
  .mobile-nav ul li a:hover {
    background: rgba(255,255,255,0.07);
    color: var(--white);
  }
  .mobile-nav ul li a.active {
    color: var(--accent-lt);
    border-left: 3px solid var(--accent);
    padding-left: 21px;
  }
  .mobile-nav ul li a i {
    width: 18px;
    text-align: center;
    color: var(--accent-lt);
    font-size: 0.85rem;
  }
}