/* =========================================
   MAFC - Malik Aslam & Sons Fruit Company
   Premium 3D Website Stylesheet
   ========================================= */

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

/* ---- CSS Custom Properties ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #8b6914;
  --black: #080808;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1a1a1a;
  --emerald: #1a4d2e;
  --emerald-light: #246b3f;
  --white: #f5f0e8;
  --white-dim: rgba(245, 240, 232, 0.7);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(201, 168, 76, 0.2);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.3);
  --shadow-gold-deep: 0 20px 60px rgba(201, 168, 76, 0.2);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-en: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-ur: 'Noto Nastaliq Urdu', serif;
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-en);
  overflow-x: hidden;
  line-height: 1.6;
}

body.urdu { font-family: var(--font-ur); direction: rtl; }
body.urdu .en { display: none !important; }
body:not(.urdu) .ur { display: none !important; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- Utility ---- */
.container { max-width: 1280px; width: min(100%, 1280px); margin: 0 auto; padding: 0 24px; }
img, svg, iframe, video, canvas { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { min-width: 0; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: #000;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  animation: shimmer 3s infinite;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
}

.btn-green {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.btn-green:hover {
  background: #20ba59;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ---- Animations ---- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(3deg); }
  66% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.3); }
  50% { box-shadow: 0 0 40px rgba(201, 168, 76, 0.7); }
}

@keyframes rotate3d {
  0% { transform: perspective(800px) rotateY(0deg); }
  100% { transform: perspective(800px) rotateY(360deg); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 20px rgba(201,168,76,0.5); }
  50% { text-shadow: 0 0 50px rgba(201,168,76,0.9), 0 0 80px rgba(201,168,76,0.5); }
}

@keyframes particle-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   NAVBAR
   ============================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
  box-shadow: var(--shadow-gold);
  animation: pulse-gold 3s infinite;
  font-family: var(--font-heading);
}

.logo-text h1 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.1;
  font-weight: 700;
}
.logo-text span {
  font-size: 0.7rem;
  color: var(--white-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--white-dim);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

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

.lang-toggle {
  display: flex;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  overflow: hidden;
}

.lang-btn {
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--white-dim);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--gold);
  color: #000;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================
   TICKER
   ============================= */
.ticker-bar {
  background: linear-gradient(90deg, var(--emerald) 0%, #0d3320 50%, var(--emerald) 100%);
  border-bottom: 1px solid var(--gold-dark);
  border-top: 1px solid var(--gold-dark);
  overflow: hidden;
  padding: 10px 0;
  margin-top: 84px;
  position: relative;
  z-index: 10;
}

.ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  z-index: 2;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker 25s linear infinite;
  padding-left: 160px;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.ticker-item .price { color: var(--gold); font-weight: 700; }
.ticker-dot { color: var(--gold); font-size: 1.2rem; }

/* =============================
   HERO SECTION
   ============================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26, 77, 46, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}

.hero-img-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 85%;
  object-fit: cover;
  border-radius: 24px 0 0 24px;
  opacity: 0.45;
  filter: saturate(1.3) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--black) 0%,
    rgba(8,8,8,0.9) 35%,
    rgba(8,8,8,0.4) 65%,
    transparent 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0;
  animation: particle-float linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  animation: slide-up 0.8s ease forwards;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-gold 1.5s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
  animation: slide-up 0.8s 0.2s ease both;
}

.hero-title .line1 { color: var(--white); display: block; }
.hero-title .line2 {
  color: var(--gold);
  display: block;
  animation: glow-pulse 3s ease infinite;
}
.hero-title .line3 { color: var(--white-dim); display: block; font-size: 70%; font-weight: 400; letter-spacing: 4px; text-transform: uppercase; }

.hero-subtitle-ur {
  font-family: var(--font-ur);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  direction: rtl;
  animation: slide-up 0.8s 0.3s ease both;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
  animation: slide-up 0.8s 0.4s ease both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  animation: slide-up 0.8s 0.5s ease both;
}

.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  animation: glow-pulse 3s ease infinite;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--white-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slide-up 0.8s 0.6s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-dim);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2s ease infinite;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* =============================
   SECTION HEADERS
   ============================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-tag::before { right: 100%; }
.section-tag::after { left: 100%; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span { color: var(--gold); }

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto;
}

.section-desc {
  font-size: 1rem;
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =============================
   ABOUT SECTION
   ============================= */
.about {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: 'MAFC';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 20rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

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

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

.about-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
  box-shadow: 30px 30px 80px rgba(0,0,0,0.6), var(--shadow-gold);
}

.about-img-wrapper:hover .about-img {
  transform: perspective(1000px) rotateY(0deg);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  padding: 20px 24px;
  border-radius: 16px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-gold-deep);
}

.about-badge-float .big { font-size: 2rem; display: block; font-family: var(--font-heading); }
.about-badge-float .small { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; }

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content h2 span { color: var(--gold); }

.about-content .ur-text {
  font-family: var(--font-ur);
  font-size: 1.2rem;
  color: var(--gold-light);
  direction: rtl;
  margin-bottom: 20px;
  line-height: 2;
}

.about-content p {
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-dim);
}

.about-feature .icon {
  width: 32px;
  height: 32px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* =============================
   DAILY RATES SECTION
   ============================= */
.rates-section {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

.rates-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 40% 50% at 10% 50%, rgba(26, 77, 46, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.rates-date {
  text-align: center;
  margin-bottom: 40px;
}

.rates-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.rate-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  backdrop-filter: blur(10px);
}

.rate-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.rate-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-deep);
}

.rate-card:hover::before { opacity: 1; }

.rate-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.4));
  animation: float 3s ease infinite;
}

.rate-card:nth-child(2) .rate-emoji { animation-delay: 0.5s; }
.rate-card:nth-child(3) .rate-emoji { animation-delay: 1s; }
.rate-card:nth-child(4) .rate-emoji { animation-delay: 1.5s; }
.rate-card:nth-child(5) .rate-emoji { animation-delay: 2s; }
.rate-card:nth-child(6) .rate-emoji { animation-delay: 2.5s; }

.rate-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.rate-name-ur {
  font-family: var(--font-ur);
  font-size: 0.95rem;
  color: var(--white-dim);
  display: block;
  margin-bottom: 12px;
  direction: rtl;
}

.rate-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.rate-unit {
  font-size: 0.75rem;
  color: var(--white-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rate-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--emerald);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.rates-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* =============================
   SERVICES SECTION
   ============================= */
.services {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  group: true;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 0;
  background: linear-gradient(to top, rgba(201, 168, 76, 0.08), transparent);
  transition: height 0.4s ease;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--shadow-gold);
}

.service-card:hover::after { height: 100%; }

.service-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 2px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold);
  transform: rotateY(360deg);
  box-shadow: var(--shadow-gold);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.service-title-ur {
  font-family: var(--font-ur);
  font-size: 0.9rem;
  color: var(--gold-light);
  direction: rtl;
  margin-bottom: 10px;
  display: block;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* =============================
   FRUITS CATALOG 3D
   ============================= */
.fruits-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.fruits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(26, 77, 46, 0.1) 0%, transparent 70%);
}

.fruits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: minmax(360px, auto);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.fruit-card-3d {
  position: relative;
  perspective: 1200px;
  min-height: 380px;
  height: auto;
  cursor: pointer;
}

.fruit-card-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.fruit-card-3d:hover .fruit-card-inner {
  transform: rotateY(180deg);
}

.fruit-front, .fruit-back {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  backface-visibility: hidden;
  overflow: hidden;
}

.fruit-front {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 24px 32px;
  text-align: center;
  position: relative;
}

.fruit-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.fruit-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 15px rgba(0,0,0,0.2);
}


.fruit-name-en {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.fruit-name-ur {
  font-family: var(--font-ur);
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
  direction: rtl;
  margin-bottom: 16px;
}

.fruit-price-tag {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.fruit-unit-tag {
  font-size: 0.75rem;
  color: var(--white-dim);
  letter-spacing: 1px;
}

.fruit-hover-hint {
  position: absolute;
  bottom: 16px;
  font-size: 0.7rem;
  color: rgba(201,168,76,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.fruit-back {
  background: linear-gradient(135deg, var(--emerald) 0%, #0d3320 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.fruit-back-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.fruit-back-ur {
  font-family: var(--font-ur);
  font-size: 1rem;
  color: var(--white-dim);
  direction: rtl;
  margin-bottom: 20px;
}

.fruit-back-info {
  list-style: none;
  margin-bottom: 20px;
}

.fruit-back-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--white-dim);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fruit-back-info li .check { color: var(--gold); }

.fruit-back-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin: 12px 0 4px;
  animation: glow-pulse 2s infinite;
}

.fruit-inquiry-btn {
  margin-top: 12px;
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.fruit-inquiry-btn:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

/* =============================
   PROCESS SECTION
   ============================= */
.process {
  background: var(--dark2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-num {
  width: 80px;
  height: 80px;
  background: var(--dark3);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: var(--gold);
  color: #000;
  box-shadow: var(--shadow-gold);
  transform: scale(1.1);
}

.step-icon { font-size: 1.2rem; }

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* =============================
   INQUIRY FORM
   ============================= */
.inquiry-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.inquiry-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: -200px; right: -200px;
  border-radius: 50%;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.inquiry-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}
.inquiry-info h2 span { color: var(--gold); }

.inquiry-info .ur-text {
  font-family: var(--font-ur);
  font-size: 1.1rem;
  color: var(--gold-light);
  direction: rtl;
  margin-bottom: 20px;
  line-height: 2;
}

.inquiry-info p {
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
}

.contact-quick-item:hover {
  border-color: var(--gold);
  transform: translateX(-5px);
  box-shadow: var(--shadow-gold);
}

.contact-quick-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.icon-phone { background: rgba(201,168,76,0.15); color: var(--gold); }
.icon-whatsapp { background: rgba(37,211,102,0.15); color: #25D366; }
.icon-email { background: rgba(100,149,237,0.15); color: #6495ED; }
.icon-location { background: rgba(255,99,71,0.15); color: #FF6347; }

.contact-quick-item .info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.contact-quick-item .info span {
  font-size: 0.8rem;
  color: var(--white-dim);
}

/* --- FORM --- */
.inquiry-form {
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.inquiry-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}

.form-title-ur {
  font-family: var(--font-ur);
  font-size: 1rem;
  color: var(--gold);
  direction: rtl;
  margin-bottom: 24px;
  display: block;
}

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

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white-dim);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-en);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-control::placeholder { color: rgba(245,240,232,0.3); }

select.form-control option { background: var(--dark3); }

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

.form-submit {
  width: 100%;
  font-size: 1rem;
  padding: 16px;
  border-radius: 14px;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--gold);
}

.form-success .check-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* =============================
   TEAM / CONTACTS
   ============================= */
.team-section {
  background: var(--black);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26,77,46,0.3), transparent);
  transition: bottom 0.4s ease;
}

.team-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold-deep);
}
.team-card:hover::before { bottom: 0; }

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  position: relative; z-index: 1;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

.team-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.team-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.team-contact-btn.call {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
}
.team-contact-btn.call:hover { background: var(--gold); color: #000; }

.team-contact-btn.wa {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25D366;
}
.team-contact-btn.wa:hover { background: #25D366; color: #fff; }

/* =============================
   MAP / LOCATION
   ============================= */
.location-section {
  background: var(--dark2);
}

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

.location-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}
.location-info h2 span { color: var(--gold); }

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin: 20px 0;
  text-decoration: none;
  transition: var(--transition);
  color: var(--white);
}

.location-address:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.location-address .pin { font-size: 2rem; }
.location-address strong { display: block; font-size: 1.1rem; color: var(--gold); margin-bottom: 4px; }
.location-address span { font-size: 0.9rem; color: var(--white-dim); line-height: 1.6; }

.map-embed {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  height: 350px;
  box-shadow: var(--shadow-gold-deep);
}

.map-embed iframe {
  width: 100%; height: 100%; border: none;
}

/* =============================
   TRUST BADGES
   ============================= */
.trust-section {
  background: var(--dark);
  padding: 60px 0;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

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

.trust-item {
  text-align: center;
  padding: 24px;
}

.trust-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.4));
}

.trust-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.trust-desc {
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* =============================
   WHATSAPP FLOAT
   ============================= */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.wa-float-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse-gold 2s infinite;
  transition: var(--transition);
}

.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37,211,102,0.7);
}

.wa-float-label {
  background: #25D366;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.wa-float-pulse {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: #ff4757;
  border-radius: 50%;
  border: 2px solid var(--black);
}

/* =============================
   FOOTER
   ============================= */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 0 0;
}

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

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #000;
  font-family: var(--font-heading);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  color: var(--white-dim);
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  text-decoration: none;
  color: var(--white-dim);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item .ic { color: var(--gold); font-size: 1rem; margin-top: 2px; }
.footer-contact-item .text { font-size: 0.85rem; color: var(--white-dim); line-height: 1.5; }
.footer-contact-item .text a { color: var(--white-dim); text-decoration: none; }
.footer-contact-item .text a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--white-dim);
}

.footer-bottom a { color: var(--gold); text-decoration: none; }

.footer-tagline {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-style: italic;
}

/* =============================
   MOBILE NAV
   ============================= */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  backdrop-filter: blur(20px);
  overflow-y: auto;
  padding: 80px 24px 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- 1200px: Large tablet / small laptop ---- */
@media (max-width: 1200px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: clamp(2rem, 4.5vw, 3.6rem); }
  .hero-content { max-width: 580px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; }
  .fruits-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- 1024px: Tablet landscape ---- */
@media (max-width: 1024px) {
  /* Layout resets */
  .about-grid       { grid-template-columns: 1fr; gap: 40px; }
  .inquiry-grid     { grid-template-columns: 1fr; gap: 40px; }
  .location-grid    { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .trust-grid       { grid-template-columns: 1fr 1fr; gap: 20px; }
  .fruits-grid      { grid-template-columns: repeat(2, 1fr); }
  .services-grid    { grid-template-columns: repeat(3, 1fr); }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
  .rates-grid       { grid-template-columns: repeat(3, 1fr); }

  /* Hero */
  .hero-img-bg { width: 52%; opacity: 0.25; }
  .hero-content { max-width: 520px; }

  /* About image */
  .about-img {
    transform: none;
    max-height: 380px;
    object-fit: cover;
    width: 100%;
  }
  .about-badge-float { bottom: -10px; right: 10px; }

  /* Navbar */
  .navbar-inner { padding: 14px 20px; }
  .nav-actions .btn { display: none; } /* hide portal btn on tablet, keep in hamburger */
}

/* ---- 768px: Tablet portrait ---- */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links       { display: none; }
  .hamburger       { display: flex; }
  .navbar-inner    { padding: 12px 16px; }
  .logo-text h1    { font-size: 0.95rem; }
  .logo-text span  { display: none; }
  .logo-badge      { width: 42px; height: 42px; font-size: 0.9rem; }
  .nav-actions .btn { display: none; }

  /* Ticker */
  .ticker-label { font-size: 0.65rem; padding: 0 12px; }
  .ticker-bar   { margin-top: 66px; }

  /* Hero */
  .hero-title       { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .hero-subtitle-ur { font-size: 1.1rem; }
  .hero-desc        { font-size: 0.92rem; }
  .hero-img-bg      { display: none; }
  .hero-overlay     { background: linear-gradient(to right, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.92) 100%); }
  .hero-content     { padding: 100px 0 60px; max-width: 100%; }
  .hero-stats       { gap: 20px; flex-wrap: wrap; }
  .stat-num         { font-size: 1.6rem; }
  .hero-btns        { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-btns .btn   { width: 100%; justify-content: center; padding: 13px 20px; }
  .hero-scroll      { display: none; }

  /* Trust */
  .trust-grid     { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-section  { padding: 40px 0; }
  .trust-item     { padding: 16px 12px; }
  .trust-icon     { font-size: 2rem; }

  /* Section headers */
  .section        { padding: 64px 0; }
  .section-sm     { padding: 40px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title  { font-size: clamp(1.5rem, 5vw, 2.2rem); }

  /* About */
  .about-img-wrapper { order: -1; }
  .about-img         { transform: none; border-radius: 16px; max-height: 300px; object-fit: cover; }
  .about-badge-float { position: static; margin-top: 12px; display: inline-block; border-radius: 12px; }
  .about-features    { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-content h2  { font-size: 1.7rem; }

  /* Rates */
  .rates-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .rate-card  { padding: 20px 14px; border-radius: 16px; }
  .rate-emoji { font-size: 2.4rem; }
  .rate-price { font-size: 1.4rem; }

  /* Fruits */
  .fruits-grid    { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .fruit-card-3d  { height: 320px; }
  .fruit-emoji-big { font-size: 4rem; }
  .fruit-name-en  { font-size: 1.2rem; }

  /* Services */
  .services-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-card   { padding: 24px 16px; }
  .service-icon-wrap { width: 60px; height: 60px; font-size: 1.5rem; }

  /* Process */
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .step-num      { width: 64px; height: 64px; font-size: 1.3rem; }

  /* Inquiry */
  .inquiry-form   { padding: 24px 18px; }
  .form-row       { grid-template-columns: 1fr; gap: 0; }
  .form-group     { margin-bottom: 12px; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-card { padding: 24px 16px; }
  .team-avatar { width: 64px; height: 64px; font-size: 1.6rem; }

  /* Location */
  .map-embed { height: 260px; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  footer         { padding: 48px 0 0; }
}

/* ---- 576px: Large phones ---- */
@media (max-width: 576px) {
  .container { padding: 0 16px; }

  /* Hero */
  .hero-title   { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero-stats   { gap: 12px; }
  .hero-badge   { font-size: 0.68rem; padding: 5px 12px; }
  .stat-num     { font-size: 1.4rem; }
  .stat-label   { font-size: 0.68rem; }

  /* Rates – 2 columns still fine */
  .rates-grid   { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rate-card    { padding: 16px 10px; border-radius: 14px; }
  .rate-emoji   { font-size: 2rem; margin-bottom: 8px; }
  .rate-name    { font-size: 0.85rem; }
  .rate-name-ur { font-size: 0.78rem; }
  .rate-price   { font-size: 1.2rem; }
  .rate-unit    { font-size: 0.65rem; }

  /* Fruits – single column on small phones */
  .fruits-grid   { grid-template-columns: 1fr; gap: 20px; }
  .fruit-card-3d { height: 300px; }

  /* Services – single column */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card  { padding: 22px 18px; }

  /* Process */
  .process-steps  { grid-template-columns: 1fr; gap: 20px; }
  .process-step   { padding: 0; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* About features */
  .about-features { grid-template-columns: 1fr; gap: 8px; }

  /* Inquiry quick contacts */
  .contact-quick-item { padding: 12px 14px; }
  .contact-quick-item .icon { width: 38px; height: 38px; font-size: 1rem; }

  /* Map */
  .map-embed { height: 220px; }

  /* Section */
  .section    { padding: 52px 0; }
  .section-sm { padding: 36px 0; }

  /* Footer */
  .footer-socials { flex-wrap: wrap; }
  .footer-col h4  { font-size: 0.9rem; }

  /* Ticker */
  .ticker-item    { padding: 0 16px; font-size: 0.78rem; }

  /* Scroll reveal — disable heavy transforms on small screens */
  .reveal { transform: none !important; }
}

/* ---- 400px: Small / budget phones ---- */
@media (max-width: 400px) {
  html { font-size: 14px; }

  .logo-badge      { width: 36px; height: 36px; font-size: 0.78rem; }
  .logo-text h1    { font-size: 0.82rem; }

  .hero-title      { font-size: 1.55rem; }
  .hero-desc       { font-size: 0.86rem; }
  .hero-subtitle-ur { font-size: 1rem; }
  .hero-badge      { display: none; }

  .btn             { padding: 11px 18px; font-size: 0.82rem; }
  .section-title   { font-size: 1.45rem; }

  /* Rates single column on very small */
  .rates-grid      { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rate-card       { padding: 14px 8px; }
  .rate-emoji      { font-size: 1.8rem; }

  /* Fruit cards */
  .fruit-card-3d   { height: 280px; }
  .fruit-emoji-big { font-size: 3.5rem; }

  /* Team contacts stack */
  .team-contacts   { gap: 8px; }
  .team-contact-btn { padding: 8px 12px; font-size: 0.78rem; }

  /* Trust items */
  .trust-item    { padding: 12px 8px; }
  .trust-icon    { font-size: 1.7rem; }
  .trust-label   { font-size: 0.82rem; }
  .trust-desc    { font-size: 0.72rem; }

  /* Floating WA button – smaller */
  .wa-float-btn  { width: 50px; height: 50px; font-size: 1.5rem; }
  .wa-float      { bottom: 20px; right: 16px; }
  .wa-float-label { display: none; }

  /* Section spacing */
  .section       { padding: 44px 0; }
  .section-sm    { padding: 28px 0; }
  .section-header { margin-bottom: 28px; }

  /* Footer compact */
  .footer-grid   { gap: 20px; }
  footer         { padding: 36px 0 0; }
}

/* ---- Touch devices: disable 3D card flip, use tap instead ---- */
@media (hover: none) and (pointer: coarse) {
  .fruit-card-3d:active .fruit-card-inner { transform: rotateY(180deg); }
  /* Show a tap hint instead of hover hint */
  .fruit-hover-hint::before { content: ''; }
  .fruit-hover-hint { content: 'TAP TO SEE DETAILS'; opacity: 0.6; }
}

/* ---- Print styles ---- */
@media print {
  .navbar, .wa-float, .mobile-menu, .ticker-bar, .hero-particles { display: none; }
  body { background: #fff; color: #000; }
  .section { padding: 20px 0; }
}
