/* ==========================================================================
   Eskimo (أسكيمو) - Official Modern Landing Page Stylesheet
   Domain: eskimo.ly | Official Mascot: 3.jpeg (Penguin with Beanie)
   ========================================================================== */

/* ---------------- CSS Variables & Theme Setup ---------------- */
:root {
  --primary-navy: #030d1e;
  --secondary-navy: #081a33;
  --card-bg: rgba(10, 29, 58, 0.65);
  --card-border: rgba(125, 211, 252, 0.18);
  --card-hover-border: rgba(56, 189, 248, 0.5);
  
  --ice-blue: #00d2ff;
  --ice-glow: rgba(0, 210, 255, 0.35);
  --ice-cyan: #38bdf8;
  --ice-light: #e0f2fe;
  
  --brand-orange: #ff7a00;
  --brand-orange-light: #ff9e2c;
  --brand-orange-glow: rgba(255, 122, 0, 0.35);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --wa-color: #25d366;
  --wa-hover: #1ebc57;
  
  --font-ar: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-en: 'Outfit', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.45), 0 0 15px 0 rgba(0, 210, 255, 0.05);
  --shadow-glow: 0 0 25px rgba(0, 210, 255, 0.3);
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--primary-navy);
  color: var(--text-main);
}

body {
  font-family: var(--font-ar);
  background: radial-gradient(circle at 50% 10%, #0b2545 0%, #051329 45%, #020712 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
}

body[dir="ltr"] {
  font-family: var(--font-en);
  direction: ltr;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ---------------- Background Canvas & Ambient Glows ---------------- */
.ice-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.glow-1 {
  top: 15%;
  right: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #00d2ff, transparent 70%);
}

.glow-2 {
  bottom: 25%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #0284c7, transparent 70%);
}

.glow-3 {
  top: 60%;
  right: 25%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ff7a00, transparent 70%);
  opacity: 0.15;
}

/* ---------------- Glassmorphism Cards ---------------- */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--card-hover-border);
  box-shadow: var(--shadow-card), 0 0 20px rgba(0, 210, 255, 0.15);
}

/* ---------------- Typography & Buttons ---------------- */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #38bdf8 60%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  text-align: center;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #00d2ff 100%);
  color: #030d1e;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 210, 255, 0.55);
  background: linear-gradient(135deg, #38bdf8 0%, #67e8f9 100%);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #20ba59 0%, #25d366 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1eb253 0%, #28e06e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--ice-cyan);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ice-cyan);
  color: var(--ice-cyan);
}

.btn-outline:hover {
  background: rgba(56, 189, 248, 0.12);
  transform: translateY(-2px);
  color: #ffffff;
}

.w-full {
  width: 100%;
}

/* ---------------- Top Announcement Bar ---------------- */
.top-announcement {
  background: linear-gradient(90deg, #071933 0%, #0c2b53 50%, #071933 100%);
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  font-size: 0.85rem;
  padding: 0.45rem 0;
  position: relative;
  z-index: 100;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.announcement-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ice-light);
  font-weight: 500;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.top-contact-pills {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.top-pill {
  color: var(--ice-cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.top-pill:hover {
  color: #ffffff;
}

.domain-badge {
  background: rgba(0, 210, 255, 0.12);
  color: var(--ice-blue);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 210, 255, 0.3);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---------------- Site Header & Navbar ---------------- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 90;
  background: rgba(4, 15, 33, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(3, 11, 25, 0.95);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(56, 189, 248, 0.2);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo with 3.jpeg */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-frame {
  width: 54px;
  height: 54px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 210, 255, 0.35), 0 0 0 2px rgba(255, 122, 0, 0.4);
  overflow: hidden;
  transition: var(--transition);
}

.brand-logo:hover .logo-frame {
  transform: rotate(-4deg) scale(1.06);
  box-shadow: 0 6px 20px rgba(0, 210, 255, 0.55), 0 0 0 2px var(--brand-orange);
}

.mascot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #ffffff;
}

.brand-en {
  font-family: var(--font-en);
  font-weight: 800;
  color: var(--brand-orange-light);
  font-size: 1.15rem;
  margin-right: 0.3rem;
}

body[dir="ltr"] .brand-en {
  margin-right: 0;
  margin-left: 0.3rem;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--ice-cyan);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--ice-blue), var(--brand-orange));
  transition: var(--transition);
  border-radius: var(--radius-full);
}

body[dir="ltr"] .nav-link::after {
  right: auto;
  left: 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ice-light);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--ice-cyan);
  color: #ffffff;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------------- Mobile Drawer ---------------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #061730;
  border-left: 1px solid rgba(56, 189, 248, 0.2);
  z-index: 1000;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.6);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body[dir="ltr"] .mobile-drawer {
  right: auto;
  left: -320px;
  border-left: none;
  border-right: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.6);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  right: 0;
}

body[dir="ltr"] .mobile-drawer.open {
  left: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mascot-img-sm {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 8px;
  padding: 2px;
  object-fit: contain;
}

.close-drawer-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.drawer-link:hover {
  color: var(--ice-blue);
  padding-right: 0.5rem;
}

body[dir="ltr"] .drawer-link:hover {
  padding-right: 0;
  padding-left: 0.5rem;
}

.drawer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.drawer-phone-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.drawer-phone-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ice-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ---------------- HERO SECTION ---------------- */
.hero-section {
  position: relative;
  min-height: clamp(620px, 85vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 0 3rem;
  overflow: hidden;
  z-index: 10;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(1.2) contrast(1.1);
  z-index: -2;
}

.hero-gradient-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(3, 13, 30, 0.4) 0%, rgba(3, 13, 30, 0.85) 60%, var(--primary-navy) 100%);
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ice-cyan);
  width: fit-content;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.5px;
}

.hero-title span {
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 640px;
}

.hero-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.4rem 0;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ice-light);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition);
}

.feature-tag i {
  color: var(--ice-blue);
}

.feature-tag:hover {
  background: rgba(0, 210, 255, 0.15);
  border-color: var(--ice-cyan);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-hotlines {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.95rem;
}

.hotline-title {
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hotline-numbers {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hotline-link {
  color: #ffffff;
  font-weight: 800;
  background: rgba(255, 122, 0, 0.12);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 122, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.hotline-link i {
  color: var(--brand-orange);
}

.hotline-link:hover {
  background: var(--brand-orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.hotline-link:hover i {
  color: #ffffff;
}

.sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ---------------- Hero Visual & Mascot Stage ---------------- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mascot-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.glow-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ring-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.25) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

.ring-2 {
  width: 460px;
  height: 460px;
  border: 2px dashed rgba(56, 189, 248, 0.25);
  animation: rotateSlow 40s linear infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.3; }
  100% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes rotateSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.mascot-stage {
  position: relative;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mascot-img {
  width: 340px;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 25px rgba(0, 210, 255, 0.35));
  animation: floatPenguin 5s ease-in-out infinite alternate;
  z-index: 2;
  transition: transform 0.4s ease;
}

.hero-mascot-img:hover {
  transform: scale(1.05) rotate(2deg);
}

@keyframes floatPenguin {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1.5deg); }
  100% { transform: translateY(0px) rotate(1.5deg); }
}

.mascot-shadow {
  width: 240px;
  height: 25px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.7) 0%, transparent 70%);
  margin-top: -15px;
  animation: shadowPulse 5s ease-in-out infinite alternate;
}

@keyframes shadowPulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(0.75); opacity: 0.4; }
  100% { transform: scale(1); opacity: 0.7; }
}

/* Floating Badges Around Penguin */
.floating-badge {
  position: absolute;
  z-index: 3;
  padding: 0.6rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.badge-top-left {
  top: 10%;
  right: -15px;
  animation-delay: 0.5s;
}

.badge-bottom-right {
  bottom: 20%;
  left: -20px;
  animation-delay: 1.2s;
}

.badge-bottom-left {
  bottom: 0%;
  right: -10px;
  animation-delay: 1.8s;
}

body[dir="ltr"] .badge-top-left {
  right: auto;
  left: -15px;
}
body[dir="ltr"] .badge-bottom-right {
  left: auto;
  right: -20px;
}
body[dir="ltr"] .badge-bottom-left {
  right: auto;
  left: -10px;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.badge-icon-sm {
  font-size: 1.4rem;
}

.badge-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.badge-sub {
  font-size: 0.7rem;
  color: var(--ice-cyan);
  font-weight: 600;
}

/* ---------------- Hero Stats Grid ---------------- */
.hero-stats-container {
  margin-top: 3.5rem;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.6rem 2rem;
  background: rgba(8, 26, 52, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.25);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.stat-icon {
  font-size: 1.6rem;
  color: var(--ice-blue);
  margin-bottom: 0.4rem;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-en);
  background: linear-gradient(135deg, #ffffff, var(--ice-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.stat-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

/* ---------------- AUTHENTICITY & PACKAGING BANNER ---------------- */
.banner-section {
  padding: 2.5rem 0;
  position: relative;
  z-index: 10;
}

.authentic-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(8, 28, 56, 0.9) 0%, rgba(4, 18, 38, 0.95) 100%);
  border: 1.5px solid rgba(0, 210, 255, 0.25);
}

.section-tag {
  color: var(--brand-orange);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.banner-heading {
  font-size: 1.85rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.banner-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.packaging-types-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pack-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--ice-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pack-badge i {
  color: #22c55e;
}

.showcase-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.packaging-preview-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.5s ease;
}

.showcase-img-box:hover .packaging-preview-img {
  transform: scale(1.04);
}

.showcase-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(3, 13, 30, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-orange-light);
  border: 1px solid rgba(255, 122, 0, 0.4);
}

body[dir="ltr"] .showcase-badge {
  right: auto;
  left: 12px;
}

/* ---------------- SECTION HEADERS ---------------- */
.section {
  padding: 5.5rem 0;
  position: relative;
  z-index: 10;
}

.section-header {
  margin-bottom: 3.5rem;
}

.text-center {
  text-align: center;
}

.section-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ice-cyan);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------------- ABOUT SECTION ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.main-about-img-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.main-about-img-box:hover .about-img-main {
  transform: scale(1.03);
}

.img-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 13, 30, 0.92) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.img-overlay-caption i {
  color: var(--ice-blue);
}

.secondary-about-img-box {
  position: absolute;
  bottom: -25px;
  right: -25px;
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 210, 255, 0.35);
  background: rgba(5, 20, 42, 0.9);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

body[dir="ltr"] .secondary-about-img-box {
  right: auto;
  left: -25px;
}

.about-logo-badge {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: white;
  border-radius: 12px;
  padding: 3px;
}

.seal-text {
  display: flex;
  flex-direction: column;
}

.seal-text strong {
  font-size: 1rem;
  color: #ffffff;
  font-family: var(--font-en);
}

.seal-text span {
  font-size: 0.75rem;
  color: var(--ice-cyan);
  font-weight: 600;
}

.about-subheading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.about-text {
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.8rem 0;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
}

.pillar-icon {
  font-size: 1.4rem;
  color: var(--ice-cyan);
  background: rgba(0, 210, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.pillar-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.arrow-dir {
  transition: transform 0.3s ease;
}

body[dir="ltr"] .arrow-dir {
  transform: rotate(180deg);
}

.btn-primary:hover .arrow-dir {
  transform: translateX(-4px);
}

body[dir="ltr"] .btn-primary:hover .arrow-dir {
  transform: rotate(180deg) translateX(-4px);
}

/* ---------------- PRODUCTS SECTION ---------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(180deg, rgba(12, 33, 64, 0.75) 0%, rgba(5, 18, 37, 0.85) 100%);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--brand-orange), #ff4500);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  z-index: 5;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
}

body[dir="ltr"] .product-badge {
  right: auto;
  left: 15px;
}

.badge-cyan {
  background: linear-gradient(135deg, #0284c7, #00d2ff);
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.4);
  color: #030d1e;
}

.badge-gold {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  color: #030d1e;
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-overlay-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(3, 13, 30, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ice-cyan);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-orange-light);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.product-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.product-features li {
  font-size: 0.86rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.product-features li i {
  color: var(--ice-blue);
  font-size: 0.85rem;
}

.product-footer {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-spec {
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
}

.spec-label {
  color: var(--text-muted);
  font-weight: 600;
}

.spec-val {
  color: var(--ice-light);
  font-weight: 700;
}

/* B2B Strip */
.b2b-supply-box {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(8, 28, 56, 0.95), rgba(4, 18, 38, 0.95));
  border: 1px solid rgba(255, 122, 0, 0.3);
}

.b2b-icon {
  font-size: 2.5rem;
  color: var(--brand-orange);
  background: rgba(255, 122, 0, 0.12);
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.b2b-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------------- INTERACTIVE ICE CALCULATOR ---------------- */
.calculator-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(10, 29, 58, 0.85) 0%, rgba(6, 19, 39, 0.9) 100%);
  border: 1.5px solid rgba(0, 210, 255, 0.3);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.calc-label {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.event-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
}

.event-opt {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 0.6rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.event-opt i {
  font-size: 1.3rem;
  color: var(--ice-cyan);
}

.event-opt span {
  font-size: 0.82rem;
  font-weight: 700;
}

.event-opt:hover {
  background: rgba(0, 210, 255, 0.1);
  border-color: var(--ice-cyan);
  color: #ffffff;
}

.event-opt.active {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.35), rgba(0, 210, 255, 0.25));
  border-color: var(--ice-blue);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.event-opt.active i {
  color: #ffffff;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-value {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--brand-orange-light);
  background: rgba(255, 122, 0, 0.12);
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 122, 0, 0.3);
}

.custom-range {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ice-blue);
  border: 3px solid #ffffff;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.8);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.ice-type-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.radio-label input {
  display: none;
}

.radio-custom {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: inline-block;
  position: relative;
  transition: var(--transition);
}

.radio-label input:checked + .radio-custom {
  border-color: var(--ice-blue);
  background: var(--ice-blue);
  box-shadow: 0 0 8px var(--ice-blue);
}

.radio-label:has(input:checked) {
  border-color: var(--ice-cyan);
  background: rgba(0, 210, 255, 0.1);
  color: #ffffff;
}

/* Calc Result Panel */
.calc-result-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-box {
  background: rgba(3, 14, 32, 0.85);
  border: 1.5px solid rgba(0, 210, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  box-shadow: inset 0 0 30px rgba(0, 210, 255, 0.08);
}

.result-icon-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.4), rgba(0, 210, 255, 0.2));
  border: 1px solid var(--ice-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--ice-blue);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.result-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
}

.result-weight {
  font-size: 3.2rem;
  font-weight: 900;
  font-family: var(--font-en);
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.result-weight .unit {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ice-cyan);
}

.result-bags {
  font-size: 1.1rem;
  color: var(--ice-light);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
}

.result-tip {
  font-size: 0.84rem;
  color: #cbd5e1;
  background: rgba(255, 122, 0, 0.08);
  border: 1px solid rgba(255, 122, 0, 0.25);
  padding: 0.8rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: right;
  line-height: 1.5;
}

body[dir="ltr"] .result-tip {
  text-align: left;
}

.result-tip i {
  color: var(--brand-orange);
  font-size: 1.1rem;
  margin-top: 2px;
}

.direct-call-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.direct-call-hint .phone-link {
  color: var(--ice-cyan);
  font-weight: 700;
  text-decoration: underline;
}

/* ---------------- QUALITY & TECHNOLOGY SECTION ---------------- */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.quality-step-card {
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  background: linear-gradient(180deg, rgba(12, 33, 64, 0.7) 0%, rgba(4, 16, 33, 0.85) 100%);
}

.step-num {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-en);
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 15px;
  left: 20px;
  line-height: 1;
}

body[dir="ltr"] .step-num {
  left: auto;
  right: 20px;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.3), rgba(0, 210, 255, 0.15));
  border: 1px solid var(--ice-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ice-blue);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.quality-cert-banner {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1.8rem 2.2rem;
  background: rgba(8, 26, 52, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cert-item i {
  font-size: 2rem;
  color: var(--ice-blue);
  flex-shrink: 0;
}

.cert-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.cert-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------------- FLEET & DISTRIBUTION SECTION ---------------- */
.fleet-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(8, 28, 56, 0.9) 0%, rgba(4, 18, 38, 0.95) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.25);
}

.fleet-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  margin: 0.8rem 0 1.2rem;
}

.fleet-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.fleet-perks {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.perk-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice-cyan);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.perk-item strong {
  font-size: 1rem;
  color: #ffffff;
  display: block;
  margin-bottom: 0.2rem;
}

.perk-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.fleet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.fleet-image-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fleet-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-image-box:hover .fleet-img {
  transform: scale(1.03);
}

.fleet-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 0.8rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--ice-cyan);
  background: rgba(3, 14, 32, 0.85);
}

body[dir="ltr"] .fleet-badge-float {
  left: auto;
  right: 20px;
}

.fleet-badge-float i {
  font-size: 2rem;
  color: var(--ice-blue);
}

.badge-num {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: var(--font-en);
  color: #ffffff;
  line-height: 1;
  display: block;
}

.badge-desc {
  font-size: 0.78rem;
  color: var(--ice-cyan);
  font-weight: 600;
}

/* ---------------- FAQ SECTION ---------------- */
.faq-accordion-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
  cursor: pointer;
  transition: var(--transition);
}

body[dir="ltr"] .faq-question {
  text-align: left;
}

.faq-icon {
  font-size: 0.95rem;
  color: var(--ice-cyan);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.8rem;
  background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
  color: #cbd5e1;
  font-size: 0.96rem;
  line-height: 1.75;
  padding-bottom: 1.4rem;
}

.faq-item.active {
  border-color: rgba(0, 210, 255, 0.4);
  background: rgba(10, 29, 58, 0.85);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--brand-orange);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ---------------- CONTACT CARDS SECTION ---------------- */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: stretch;
}

.contact-card {
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(12, 33, 64, 0.8) 0%, rgba(4, 16, 33, 0.95) 100%);
  border: 1px solid rgba(0, 210, 255, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--ice-cyan);
  box-shadow: 0 14px 35px rgba(0, 210, 255, 0.16);
}

.contact-card-top {
  display: flex;
  flex-direction: column;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.contact-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.contact-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.3rem;
}

.contact-card-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.contact-item-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-item-row:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--ice-cyan);
  transform: translateX(-3px);
}

.contact-item-row .item-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(0, 210, 255, 0.12);
  color: var(--ice-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.contact-item-row .item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-row .item-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-item-row strong {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 800;
}

.card-map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 210, 255, 0.25);
  margin-bottom: 1.4rem;
  height: 155px;
  background: #000;
}

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

.icon-phone {
  background: rgba(0, 210, 255, 0.12);
  color: var(--ice-blue);
}

.icon-email {
  background: rgba(0, 210, 255, 0.15);
  color: var(--ice-cyan);
}

.icon-location {
  background: rgba(234, 67, 53, 0.18);
  color: #ea4335;
}

.icon-wa {
  background: rgba(37, 211, 102, 0.2);
  color: var(--wa-color);
}

.icon-web {
  background: rgba(255, 122, 0, 0.12);
  color: var(--brand-orange);
}

/* Contact Form Panel */
.contact-form-panel {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(8, 26, 52, 0.9) 0%, rgba(5, 18, 38, 0.95) 100%);
  border: 1.5px solid rgba(0, 210, 255, 0.25);
}

.form-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.form-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ice-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #ffffff;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ice-cyan);
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
  background: #061933;
  color: #ffffff;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: #020914;
  border-top: 1px solid rgba(56, 189, 248, 0.15);
  padding: 4.5rem 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-mascot-img {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 3px;
  object-fit: contain;
}

.footer-brand-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  display: block;
}

.footer-brand-domain {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-orange);
  font-family: var(--font-en);
}

.footer-about-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice-cyan);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--ice-blue);
  color: #030d1e;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--ice-blue);
  border-radius: var(--radius-full);
}

body[dir="ltr"] .footer-heading::after {
  right: auto;
  left: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--ice-blue);
  padding-right: 0.4rem;
}

body[dir="ltr"] .footer-links a:hover {
  padding-right: 0;
  padding-left: 0.4rem;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.footer-contact-line i {
  color: var(--ice-cyan);
  font-size: 1.1rem;
  width: 20px;
}

.footer-contact-line a:hover {
  color: var(--ice-blue);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.mascot-signature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ice-cyan);
  font-weight: 700;
  font-size: 0.82rem;
}

.mini-penguin-icon {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 6px;
  padding: 1px;
}

/* ---------------- FLOATING ACTIONS DOCK ---------------- */
.floating-actions-dock {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 999;
}

body[dir="ltr"] .floating-actions-dock {
  left: auto;
  right: 30px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  position: relative;
  transition: var(--transition);
}

.float-wa {
  background: linear-gradient(135deg, #20ba59 0%, #25d366 100%);
  color: #ffffff;
  animation: pulseWa 3s infinite;
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-phone {
  background: linear-gradient(135deg, #0284c7 0%, #00d2ff 100%);
  color: #030d1e;
}

.float-top {
  background: rgba(10, 30, 60, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.float-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(3, 14, 32, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

body[dir="ltr"] .float-tooltip {
  right: auto;
  left: 70px;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ---------------- TOAST NOTIFICATION ---------------- */
.toast-notification {
  position: fixed;
  bottom: 25px;
  right: 50%;
  transform: translateX(50%) translateY(100px);
  background: #061e3d;
  border: 1px solid var(--ice-cyan);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateX(50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

/* ---------------- RESPONSIVE MEDIA QUERIES ---------------- */
@media (max-width: 1080px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-content {
    align-items: center;
  }

  .hero-desc {
    margin: 0 auto;
  }

  .hero-feature-tags, .hero-buttons, .hero-hotlines {
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid, .fleet-wrapper, .authentic-banner, .calculator-card, .contact-grid, .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .b2b-supply-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .b2b-icon {
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .nav-menu, .nav-cta {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .top-announcement {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .quality-cert-banner {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    position: static;
    margin: 0.5rem auto;
  }

  .mascot-stage {
    flex-direction: column;
  }

  .hero-mascot-img {
    width: 250px;
  }
}

/* ---------------- GLOBAL PHONE NUMBER LTR ENFORCEMENT ---------------- */
a[href^="tel:"],
.phone-number,
[dir="ltr"],
.drawer-phone-btn,
.hotline-link,
.top-pill,
.footer-contact-line a[href^="tel:"],
.footer-contact-line a[href^="mailto:"] {
  direction: ltr !important;
  unicode-bidi: isolate !important;
}

.top-pill span[dir="ltr"],
.hotline-link span[dir="ltr"],
.drawer-phone-btn span,
.footer-contact-line a[dir="ltr"],
.phone-number {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-block;
  white-space: nowrap;
}

/* Ensure flex alignment remains harmonious */
.top-pill,
.hotline-link,
.drawer-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

