/* ===================================
   CRUNCHCRAFT — Premium Biscuits
   CSS Stylesheet
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&family=Caveat:wght@700&display=swap');

/* === CSS VARIABLES === */
:root {
  --gold: #D4A853;
  --gold-light: #F0C97A;
  --gold-dark: #A87830;
  --brown: #3E1F05;
  --brown-mid: #7B4214;
  --cream: #FDF6E3;
  --cream-dark: #F5E6C0;
  --white: #FFFFFF;
  --dark: #1A0A00;
  --text: #3D2000;
  --text-light: #7A5430;
  --accent-red: #C0392B;
  --accent-green: #27AE60;
  --shadow: rgba(62, 31, 5, 0.15);
  --shadow-strong: rgba(62, 31, 5, 0.3);
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-hand: 'Caveat', cursive;
  --radius: 20px;
  --radius-lg: 32px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* === CUSTOM CURSOR === */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.3s;
  mix-blend-mode: multiply;
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
  opacity: 0.7;
}

body:hover .cursor { opacity: 1; }

/* === LOADER === */
.loader {
  position: fixed;
  inset: 0;
  background: var(--brown);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.loader-biscuit {
  font-size: 4rem;
  animation: loaderSpin 1.5s linear infinite;
  display: inline-block;
  margin-bottom: 1rem;
}

@keyframes loaderSpin {
  0% { transform: rotate(0) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

.loader-text {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  animation: loaderProgress 2s ease forwards;
}

@keyframes loaderProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* === RTL SUPPORT === */
body[dir='rtl'] {
  direction: rtl;
}

body[dir='rtl'] .nav-links {
  margin-left: 0;
  margin-right: auto;
}

body[dir='rtl'] .hamburger {
  margin-left: 0;
  margin-right: auto;
}

body[dir='rtl'] #languageSelect {
  background-position: left 0.7rem center;
  padding-left: 2.2rem;
  padding-right: 1rem;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(253, 246, 227, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px var(--shadow);
  padding: 0.8rem 5%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brown);
}
.loader-logo{
    height: 50px;
    width: 100px;
}
.logo{
    height: 50px;
    width: 100px;
}
@media (max-width: 768px){
    .logo{
        height: 35px;
        width: 70px;
    }
}
.logo-icon { font-size: 2px; animation: logoBounce 2s ease-in-out infinite; }

/* @keyframes logoBounce {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
} */

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--gold-dark); }

.nav-cta {
  background: var(--brown);
  color: var(--cream);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-strong);
}

/* === LANGUAGE SELECTOR === */
.language-selector {
  display: flex;
  align-items: center;
}

#languageSelect {
  padding: 0.5rem 1rem;
  border: 2px solid var(--gold);
  border-radius: 50px;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233E1F05' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 2.2rem;
}

#languageSelect:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
}

#languageSelect:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

#languageSelect option {
  background: var(--cream);
  color: var(--brown);
  font-weight: 500;
  padding: 0.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 75%;
  height: 100vh;
  background: var(--brown);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open { right: 0; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 1.5rem; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  display: block;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

/* === SECTION COMMON === */
section { padding: 6rem 5%; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.gold { color: var(--gold-dark); }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(168, 120, 48, 0.35);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(168, 120, 48, 0.5);
  background: linear-gradient(135deg, var(--brown-mid), var(--gold-dark));
}

.btn-primary span { transition: transform 0.3s; }
.btn-primary:hover span { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--brown);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--brown);
  transition: var(--transition);
}

.btn-ghost:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-3px);
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 5% 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top left, #FFF8E7 0%, var(--cream) 60%);
}

.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-light), transparent);
  top: -200px; right: -100px;
  animation: shapePulse 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--brown-mid), transparent);
  bottom: -150px; left: -100px;
  animation: shapePulse 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gold), transparent);
  top: 50%; left: 40%;
  animation: shapePulse 6s ease-in-out infinite;
}

@keyframes shapePulse {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.2); opacity: 0.25; }
}

/* Floating crumbs */
.floating-crumbs { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.crumb {
  position: absolute;
  font-size: 1.5rem;
  animation: floatCrumb linear infinite;
  opacity: 0.7;
}

.c1 { left: 5%; top: 20%; animation-duration: 7s; animation-delay: 0s; font-size: 2rem; }
.c2 { left: 12%; top: 60%; animation-duration: 9s; animation-delay: 1s; }
.c3 { left: 85%; top: 15%; animation-duration: 6s; animation-delay: 2s; font-size: 1.8rem; }
.c4 { left: 90%; top: 55%; animation-duration: 11s; animation-delay: 0.5s; }
.c5 { left: 30%; top: 85%; animation-duration: 8s; animation-delay: 3s; }
.c6 { left: 70%; top: 80%; animation-duration: 7.5s; animation-delay: 1.5s; }
.c7 { left: 50%; top: 8%; animation-duration: 10s; animation-delay: 2.5s; }
.c8 { left: 20%; top: 40%; animation-duration: 6.5s; animation-delay: 4s; }

@keyframes floatCrumb {
  0% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(120deg); }
  66% { transform: translateY(20px) rotate(240deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(212,168,83,0.3));
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,83,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(212,168,83,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.title-line { display: block; }
.title-line.gold { color: var(--gold-dark); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-dark);
  line-height: 1;
}

.stat-suffix { color: var(--gold-dark); font-weight: 900; font-size: 1.5rem; }
.stat-label { display: block; font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--cream-dark); }

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.plate-wrapper { position: relative; width: 450px; height: 450px; }

.plate-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(212,168,83,0.25), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.plate {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 40% 35%, #FFF3CC, var(--cream-dark));
  border-radius: 50%;
  box-shadow: 0 30px 80px var(--shadow-strong), 0 0 0 8px rgba(212,168,83,0.15), 0 0 0 16px rgba(212,168,83,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  animation: plateSway 6s ease-in-out infinite;
}

@keyframes plateSway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

.big-biscuit {
  font-size: 8rem;
  animation: bigBiscuitSpin 15s linear infinite;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  z-index: 2;
}

@keyframes bigBiscuitSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.plate-items { position: absolute; inset: 0; }

.plate-item {
  position: absolute;
  font-size: 1.8rem;
  animation: orbitItem linear infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.p1 { top: 5%; left: 50%; animation-duration: 8s; animation-delay: 0s; }
.p2 { top: 25%; right: 2%; animation-duration: 10s; animation-delay: -2s; }
.p3 { bottom: 10%; right: 15%; animation-duration: 12s; animation-delay: -4s; }
.p4 { bottom: 5%; left: 30%; animation-duration: 9s; animation-delay: -1s; }
.p5 { top: 35%; left: -2%; animation-duration: 11s; animation-delay: -3s; }
.p6 { top: 8%; left: 20%; animation-duration: 7s; animation-delay: -5s; }

@keyframes orbitItem {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.8rem;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === MARQUEE STRIP === */
.marquee-strip {
  background: var(--brown);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
}

.marquee-track span:nth-child(even) { color: var(--gold); }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === PRODUCTS SECTION === */
.products {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1.5px solid transparent;
  cursor: none;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212,168,83,0.1), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 24px 60px var(--shadow-strong);
  border-color: rgba(212,168,83,0.4);
}

.product-card:hover::before { opacity: 1; }

.featured-card {
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  color: var(--cream);
  grid-row: span 1;
}

.featured-card h3 { color: var(--gold-light); }
.featured-card p { color: rgba(253,246,227,0.8); }
.featured-card .card-tag { background: var(--gold); color: var(--brown); }
.featured-card .card-flavors span { background: rgba(255,255,255,0.15); color: var(--cream); }

.card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212,168,83,0.08), transparent 60%);
  pointer-events: none;
}

.card-emoji {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  animation: cardEmojiFloat 3s ease-in-out infinite;
}

@keyframes cardEmojiFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.card-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 0.8rem;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.card-flavors span {
  background: rgba(212,168,83,0.15);
  color: var(--gold-dark);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  transition: gap 0.3s;
}

.product-card:hover .card-btn { gap: 0.8rem; }

.featured-card .card-btn { color: var(--gold-light); }

/* === ABOUT SECTION === */
.about {
  display: flex;
  align-items: center;
  gap: 6rem;
  background: var(--cream);
}

.about-visual {
  flex-shrink: 0;
  position: relative;
  width: 420px;
  height: 420px;
}

.about-big-emoji {
  font-size: 8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: aboutFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

@keyframes aboutFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, calc(-50% - 15px)) scale(1.05); }
}

.about-orbs { position: absolute; inset: 0; }

.orb {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(168,120,48,0.4);
  animation: orbFloat ease-in-out infinite;
}

.orb1 { top: 0; left: 50%; animation-duration: 4s; animation-delay: 0s; }
.orb2 { right: 0; top: 50%; animation-duration: 5s; animation-delay: 0.5s; }
.orb3 { bottom: 0; left: 50%; animation-duration: 4.5s; animation-delay: 1s; }
.orb4 { left: 0; top: 50%; animation-duration: 6s; animation-delay: 1.5s; }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.1); }
}

.about-img-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: 0 20px 40px var(--shadow-strong);
}

.big-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.big-label {
  font-size: 0.85rem;
  color: rgba(253,246,227,0.8);
  font-weight: 500;
}

.about-content { flex: 1; }

.about-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.pillar:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px var(--shadow);
}

.pillar-icon { font-size: 2rem; flex-shrink: 0; }
.pillar strong { display: block; font-weight: 700; color: var(--brown); margin-bottom: 0.2rem; }
.pillar p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* === CERTIFICATIONS === */
.certifications {
  background: linear-gradient(135deg, var(--brown), #2A1000);
  color: var(--cream);
}

.certifications .section-tag { background: rgba(212,168,83,0.2); color: var(--gold-light); }
.certifications .section-title { color: var(--cream); }
.certifications .section-sub { color: rgba(253,246,227,0.7); }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.cert-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.cert-card:hover {
  background: rgba(212,168,83,0.15);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212,168,83,0.2);
}

.cert-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  animation: certSpin 10s linear infinite;
}

@keyframes certSpin {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.cert-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.cert-card p {
  font-size: 0.85rem;
  color: rgba(253,246,227,0.65);
  line-height: 1.5;
}

/* === CERTIFICATES SHOWCASE SECTION === */
.certificates-showcase {
  background: linear-gradient(135deg, var(--cream), #F9F0E0));
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.certificates-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,168,83,0.15), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.certificates-showcase::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,168,83,0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.certificates-showcase .section-header {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.certificates-showcase .section-tag { 
  color: var(--gold);
  background: rgba(212,168,83,0.1);
}

.certificates-showcase .section-title {
  color: var(--brown);
}

.certificates-showcase .section-sub {
  color: var(--text-light);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
  z-index: 1;
}

.showcase-card {
  background: var(--white);
  border: 2px solid rgba(212,168,83,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--brown-mid));
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-card:hover::before {
  transform: scaleX(1);
}

.card-glow-cert {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212,168,83,0.1), transparent);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.showcase-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(212,168,83,0.25);
}

.cert-doc-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: docFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes docFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.showcase-card:hover .cert-doc-icon {
  animation: docBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes docBounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.cert-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.iso-badge {
  background: rgba(212,168,83,0.2);
  color: var(--gold-dark);
}

.iso-badge-2 {
  background: rgba(39,174,96,0.15);
  color: var(--accent-green);
}

.pledge-badge {
  background: rgba(192,57,43,0.15);
  color: var(--accent-red);
}

.bronze-badge {
  background: rgba(168, 120, 48, 0.15);
  color: #A87830;
}

.showcase-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.showcase-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.cert-details {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cert-year, .cert-status {
  font-size: 0.8rem;
  background: rgba(212,168,83,0.1);
  color: var(--gold-dark);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-weight: 600;
}

.cert-download-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown);
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  z-index: 1;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(212,168,83,0.25);
}

.cert-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212,168,83,0.35);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--brown);
}

.cert-download-btn span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.certificate-footer {
  text-align: center;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
  border-top: 2px solid rgba(212,168,83,0.2);
  margin-top: 2rem;
}

.certificate-footer p {
  color: var(--text);
  font-size: 0.95rem;
}

.footer-cta {
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.footer-cta::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.footer-cta:hover::after {
  width: 100%;
}

/* Responsive Certificate Showcase */
@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .showcase-card {
    padding: 2rem 1.5rem;
  }

  .cert-doc-icon {
    font-size: 2.8rem;
  }

  .showcase-card h3 {
    font-size: 1.1rem;
  }

  .showcase-card p {
    font-size: 0.85rem;
  }
}

/* === REACH SECTION === */
.reach {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 6rem 5%;
  background: var(--cream);
}

.reach-content { flex: 1; }

.reach-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
}

.reach-stats {
  display: flex;
  gap: 2rem;
}

.r-stat {
  text-align: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  min-width: 100px;
}

.r-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brown);
}

.r-stat span:last-child { font-size: 0.8rem; color: var(--brown-mid); font-weight: 600; }

/* Globe */
.globe-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 380px;
  height: 380px;
}

.globe {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-inner {
  position: relative;
  width: 200px;
  height: 200px;
}

.globe-emoji {
  font-size: 6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: globeSpin 20s linear infinite;
  filter: drop-shadow(0 10px 30px rgba(39,174,96,0.3));
}

@keyframes globeSpin {
  0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  50% { transform: translate(-50%, -50%) scale(1.05) rotate(10deg); }
  100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1.5px dashed rgba(212,168,83,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin linear infinite;
}

.orbit-1 { width: 160px; height: 160px; animation-duration: 6s; }
.orbit-2 { width: 220px; height: 220px; animation-duration: 9s; animation-direction: reverse; }
.orbit-3 { width: 290px; height: 290px; animation-duration: 12s; }

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-dot {
  position: absolute;
  top: -15px;
  left: 50%;
  font-size: 1.4rem;
  transform: translateX(-50%);
  animation: orbitSpin linear infinite reverse;
}

.orbit-1 .orbit-dot { animation-duration: 6s; }
.orbit-2 .orbit-dot { animation-duration: 9s; animation-direction: normal; }
.orbit-3 .orbit-dot { animation-duration: 12s; animation-direction: reverse; }

.globe-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.g-label {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brown-mid);
  background: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px var(--shadow);
  white-space: nowrap;
  animation: labelFloat ease-in-out infinite;
}

.gl1 { top: 5%; left: 50%; transform: translateX(-50%); animation-duration: 4s; }
.gl2 { top: 20%; right: 0; animation-duration: 5s; animation-delay: 0.5s; }
.gl3 { bottom: 20%; right: 0; animation-duration: 4.5s; animation-delay: 1s; }
.gl4 { bottom: 5%; left: 50%; transform: translateX(-50%); animation-duration: 6s; animation-delay: 1.5s; }
.gl5 { top: 45%; left: 0; animation-duration: 5.5s; animation-delay: 2s; }

@keyframes labelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.gl1, .gl4 { transform: translateX(-50%) translateY(0); }

/* === TESTIMONIALS === */
.testimonials {
  background: var(--white);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 1rem 0 2rem;
}

.testi-card {
  min-width: 380px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1.5px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.testi-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow);
}

.testi-stars { font-size: 1.1rem; margin-bottom: 1rem; }

.testi-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testi-avatar { font-size: 2rem; }

.testi-author strong { display: block; font-weight: 700; color: var(--brown); }
.testi-author small { color: var(--text-light); font-size: 0.85rem; }

.testi-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.testi-btn {
  width: 48px; height: 48px;
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

/* === CONTACT === */
.contact {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.c-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.cs1 {
  width: 500px; height: 500px;
  background: var(--gold);
  top: -200px; right: -100px;
  animation: shapePulse 8s ease-in-out infinite;
}

.cs2 {
  width: 350px; height: 350px;
  background: var(--brown);
  bottom: -100px; left: -100px;
  animation: shapePulse 10s ease-in-out infinite reverse;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-info .section-title { margin-bottom: 1rem; }

.contact-info > p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px var(--shadow);
}

.contact-item > span { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; font-weight: 700; color: var(--brown); margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.9rem; color: var(--text-light); }

.social-links { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.social-btn {
  padding: 0.5rem 1rem;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,168,83,0.15);
  background: var(--white);
}

.form-group textarea { resize: none; }

.submit-btn {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
}

.btn-loading { display: none; }
.submit-btn.loading .btn-text { display: none; }
.submit-btn.loading .btn-loading { display: block; }

.form-success {
  grid-column: 1 / -1;
  display: none;
  text-align: center;
  color: var(--accent-green);
  font-weight: 600;
  padding: 0.8rem;
  background: rgba(39,174,96,0.1);
  border-radius: 12px;
}

.form-success.show { display: block; animation: fadeInUp 0.5s ease; }

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: var(--cream);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 5%;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(253,246,227,0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials { display: flex; gap: 1rem; }

.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.8rem; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(253,246,227,0.6);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-newsletter h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: rgba(253,246,227,0.6);
  margin-bottom: 1rem;
}

.newsletter-input { display: flex; gap: 0; }

.newsletter-input input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px 0 0 8px;
  color: var(--cream);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-input input::placeholder { color: rgba(253,246,227,0.4); }

.newsletter-input button {
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: var(--brown);
  border: none;
  border-radius: 0 8px 8px 0;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.newsletter-input button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.85rem; color: rgba(253,246,227,0.5); }

.footer-cert-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.footer-cert-badges span {
  background: rgba(212,168,83,0.15);
  color: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(212,168,83,0.3);
}

/* === BACK TO TOP === */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--brown);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(168,120,48,0.4);
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(168,120,48,0.5);
}

/* === REVEAL ANIMATIONS === */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays */
.reveal-card:nth-child(1) { transition-delay: 0s; }
.reveal-card:nth-child(2) { transition-delay: 0.1s; }
.reveal-card:nth-child(3) { transition-delay: 0.2s; }
.reveal-card:nth-child(4) { transition-delay: 0.3s; }
.reveal-card:nth-child(5) { transition-delay: 0.4s; }
.reveal-card:nth-child(6) { transition-delay: 0.5s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 7rem; gap: 3rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; display: flex; justify-content: center; }
  .plate-wrapper { width: 320px; height: 320px; }
  .about { flex-direction: column; gap: 3rem; }
  .about-visual { width: 100%; max-width: 360px; margin: 0 auto; }
  .reach { flex-direction: column; gap: 3rem; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 5%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .language-selector { order: -1; }
  #languageSelect { font-size: 0.85rem; padding: 0.4rem 0.8rem; padding-right: 2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reach-stats { flex-wrap: wrap; }
  .hero-title { font-size: 2.8rem; }
  .testi-card { min-width: 300px; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .certs-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .plate-wrapper { width: 260px; height: 260px; }
}

.video {
  width: 80vh;   /* your existing large screen logic */
}

.viddiv {
  width: 100vh;  /* your existing large screen logic */
}

/* 📱 Tablet */
@media (max-width: 768px) {
  .video {
    width: 100%;
    height: auto;
  }

  .viddiv {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }
}

/* 📱 Mobile */
@media (max-width: 480px) {
  .video {
    width: 100%;
  }

  .viddiv {
    width: 100%;
    padding: 6px;
  }
}

/* ===================================
   RTL SUPPORT FOR ARABIC
=================================== */
[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .nav-links,
[dir="rtl"] .mobile-menu ul,
[dir="rtl"] .products-grid,
[dir="rtl"] .certs-grid {
  direction: rtl;
}

[dir="rtl"] .nav-logo {
  order: 2;
}

[dir="rtl"] .language-selector {
  order: 1;
  margin-right: auto;
  margin-left: 1rem;
}

[dir="rtl"] .nav-cta {
  order: 3;
}

[dir="rtl"] .hamburger {
  order: 4;
}

[dir="rtl"] .contact-item {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .contact-item span {
  margin-left: 1rem;
  margin-right: 0;
}

[dir="rtl"] .form-group {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .footer-links {
  text-align: right;
}

[dir="rtl"] .newsletter-input {
  flex-direction: row-reverse;
}

[dir="rtl"] .about-content {
  text-align: right;
}

[dir="rtl"] .reach-content {
  text-align: right;
}

[dir="rtl"] .social-links {
  justify-content: flex-end;
}