/* 
  شركة وادي الكوف الجديد للصناعات الكيماوية والمنظفات
  الهوية البصرية الجديدة: طابع صناعي نظيف، دقة هندسية، تعقيم وأمان صحي.
*/

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  line-height: 1.6;
  overflow-x: clip;
  transition: background-color 0.4s ease, color 0.4s ease;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* --- Theme Tokens --- */
:root {
  /* Colors - Light Theme (Sterile Industrial) */
  --bg-primary: hsl(210, 20%, 98%);     /* Sterile Clean White */
  --bg-secondary: hsl(210, 14%, 93%);   /* Metallic Light Gray */
  --bg-tertiary: hsl(210, 10%, 88%);    /* Steel Border / Input bg */
  
  --text-primary: hsl(217, 30%, 15%);   /* Dark Slate */
  --text-secondary: hsl(217, 15%, 35%); /* Medium Slate Gray */
  --text-tertiary: hsl(217, 12%, 50%);
  
  --color-primary: hsl(217, 71%, 15%);  /* Dark Cobalt Blue */
  --color-primary-hover: hsl(217, 71%, 10%);
  --color-primary-glow: hsla(217, 71%, 15%, 0.08);
  
  --color-accent: hsl(150, 75%, 35%);   /* Mint Green (Sanitization/Safety) */
  --color-accent-hover: hsl(150, 75%, 28%);
  --color-accent-glow: hsla(150, 75%, 35%, 0.12);
  
  --color-gold: hsl(45, 75%, 50%);      /* Premium Accent Gold */
  --color-gold-glow: hsla(45, 60%, 52%, 0.15);
  
  --success: hsl(142, 72%, 29%);
  --error: hsl(354, 70%, 45%);
  --border-color: hsla(217, 20%, 15%, 0.08);
  --border-glass: rgba(255, 255, 255, 0.4);
  --bg-glass: rgba(255, 255, 255, 0.8);
  
  --shadow-sm: 0 4px 10px rgba(10, 28, 58, 0.04);
  --shadow-md: 0 10px 30px rgba(10, 28, 58, 0.06);
  --shadow-lg: 0 20px 40px rgba(10, 28, 58, 0.1);
  
  /* Sizing - Rounded Modern UI */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  
  --font-numbers: 'Cairo', sans-serif;
}

/* Dark Mode Overrides (High-Tech Laboratory Vibe) */
body.dark-mode {
  --bg-primary: hsl(217, 35%, 8%);      /* Deep Dark Lab Blue */
  --bg-secondary: hsl(217, 25%, 12%);   /* Sleek Dark Blue-Gray */
  --bg-tertiary: hsl(217, 20%, 16%);    /* Dark Steel Gray */
  
  --text-primary: hsl(210, 20%, 95%);   /* Soft Silver */
  --text-secondary: hsl(210, 10%, 75%);  /* Muted Gray */
  --text-tertiary: hsl(210, 8%, 55%);
  
  --color-primary: hsl(217, 65%, 45%);  /* Radiant Cobalt Blue */
  --color-primary-hover: hsl(217, 65%, 52%);
  --color-primary-glow: hsla(217, 65%, 45%, 0.2);
  
  --color-accent: hsl(150, 70%, 45%);   /* Neon Mint Green */
  --color-accent-hover: hsl(150, 70%, 55%);
  --color-accent-glow: hsla(150, 70%, 45%, 0.25);
  
  --color-gold: hsl(45, 80%, 58%);
  --color-gold-glow: hsla(45, 80%, 58%, 0.2);
  
  --border-color: hsla(210, 20%, 95%, 0.08);
  --border-glass: rgba(255, 255, 255, 0.05);
  --bg-glass: rgba(15, 23, 42, 0.8);
  
  --shadow-sm: 0 4px 10px rgba(0,0,0,0.2);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.5);
}

/* --- Typography - Headers --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 24px); /* Fluid padding, min 15px */
}

.latin-num {
  font-family: var(--font-numbers);
  direction: ltr;
  display: inline-block;
}

/* --- Header Section --- */
.site-header {
  background-color: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.4s, border-color 0.4s;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(70px, 10vh, 85px);
}

/* Brand & Logo Styles */
.brand-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 5px;
  background-color: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: 50%;
  box-shadow: 
    var(--shadow-sm),
    inset 0 0 0 2px #ffffff,
    inset 0 0 0 3.5px var(--color-accent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

body.dark-mode .brand-logo-frame {
  background-color: #ffffff;
  box-shadow: 
    var(--shadow-sm),
    inset 0 0 0 2px #ffffff,
    inset 0 0 0 3.5px var(--color-accent);
}

.logo-img-real {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.brand:hover .brand-logo-frame {
  border-color: var(--color-accent);
  box-shadow: 
    0 8px 16px var(--color-accent-glow),
    inset 0 0 0 2px #ffffff,
    inset 0 0 0 3.5px var(--color-primary);
  transform: scale(1.02);
}

.brand:hover .logo-img-real {
  transform: scale(1.08) rotate(3deg);
  filter: drop-shadow(0 2px 4px rgba(34, 112, 59, 0.15));
}

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

.brand-name {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-top: 4px;
  white-space: nowrap;
}

/* Direct contact phone number next to logo */
.phone-link-header-direct {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  white-space: nowrap; /* Prevent phone number text wrapping */
}

.phone-link-header-direct:hover {
  color: var(--color-accent);
}

.phone-icon-direct {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

/* Navigation Menu */
.desktop-nav {
  display: block;
}

@media (max-width: 992px) {
  .desktop-nav { display: none; }
}

.nav-menu {
  display: flex;
  gap: clamp(15px, 2.5vw, 28px);
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
  padding: 8px 0;
  white-space: nowrap; /* Prevent menu link text wrapping */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--color-accent);
  transition: width 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

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

/* Header Utilities */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-header-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-accent);
  background-color: var(--color-accent-glow);
  color: var(--color-accent);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-header-link:hover {
  background-color: var(--color-accent);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px var(--color-accent-glow);
}

.whatsapp-header-link svg {
  width: 22px;
  height: 22px;
}

.header-cta-btn {
  padding: 10px 20px;
  font-size: 0.88rem;
  border-width: 1px;
}

/* Theme Switcher Toggle */
.theme-toggle-btn {
  background: none;
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
  background-color: var(--bg-secondary);
  border-color: var(--text-tertiary);
}

.sun-icon {
  display: none;
}

body.dark-mode .sun-icon {
  display: block;
}

body.dark-mode .moon-icon {
  display: none;
}

/* Mobile Hamburger Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.menu-toggle:hover {
  background-color: var(--bg-secondary);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px; /* Comfortable padding for tap size */
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill); /* Pill shaped rounded buttons */
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  white-space: nowrap; /* Prevent button text wrapping */
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, hsl(217, 71%, 25%) 100%);
  color: #ffffff;
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--color-primary-glow);
  background: linear-gradient(135deg, hsl(217, 71%, 20%) 0%, hsl(217, 71%, 30%) 100%);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #ffffff;
  border-color: transparent;
}

.btn-accent:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--color-accent-glow);
  background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-accent-hover) 100%);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary-glow);
  transform: translateY(-4px);
}

/* Small pill buttons inside sections */
.btn-small-pill {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* --- Section Title and Header --- */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--color-accent-glow);
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

.section-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 8vh, 60px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: clamp(40px, 8vh, 80px) 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1.5px solid var(--border-color);
  overflow: hidden;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--color-accent-glow);
  color: var(--color-accent);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-tag svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--color-accent);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Image Container and Wrapper Card */
.hero-image-container {
  position: relative;
  z-index: 1;
}

.image-wrapper-card {
  position: relative;
  border-radius: var(--radius-lg); /* Rounded card edges 16px */
  overflow: hidden; /* Important for scaling zoom */
  box-shadow: var(--shadow-lg); /* Soft shadows 10px 30px */
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper-card:hover .hero-img {
  transform: scale(1.05); /* Zoom in on card hover */
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: var(--bg-glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-primary);
}

.badge-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* --- About Section --- */
.about-section {
  padding: clamp(60px, 10vh, 100px) 0;
  border-bottom: 1.5px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-info {
  display: flex;
  flex-direction: column;
}

.about-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hl-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-glow);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hl-icon svg {
  width: 22px;
  height: 22px;
}

.highlight-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.highlight-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.about-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background-color: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius-lg); /* Rounded card 16px */
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 700;
}

.about-quote {
  border-right: 4px solid var(--color-accent);
  padding: 16px 20px 16px 0;
  background-color: var(--color-accent-glow);
  border-radius: var(--radius-sm);
}

.about-quote p {
  margin-bottom: 0;
  font-style: italic;
  font-weight: 600;
  color: var(--color-primary);
}

/* --- Products Section (Showcase) --- */
.products-section {
  padding: clamp(60px, 10vh, 100px) 0;
  border-bottom: 1.5px solid var(--border-color);
}

/* Featured Dishwash Container */
.dishwash-featured-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg); /* Rounded card 16px */
  padding: clamp(24px, 4vw, 48px);
  margin-bottom: 60px;
  box-shadow: var(--shadow-md); /* Soft shadows */
}

.dishwash-featured-img {
  width: 100%;
  height: auto;
  display: block;
}

.dishwash-featured-info h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.featured-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--color-gold);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.featured-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.featured-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.featured-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.spec-check {
  color: var(--color-accent);
  font-weight: bold;
}

/* Grid of Core Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 Columns on desktop */
  gap: 24px;
}

.product-card {
  background-color: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg); /* Rounded card 16px */
  padding: 30px;
  box-shadow: var(--shadow-sm); /* Soft shadow, no hard borders */
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.product-icon-container {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-glow);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon-container {
  background-color: var(--color-accent-glow);
  color: var(--color-accent);
}

.product-icon-container svg {
  width: 28px;
  height: 28px;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.product-card-body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  margin-bottom: 24px;
}

.p-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
}

.bg-gold {
  background-color: var(--color-gold-glow) !important;
  color: var(--color-gold) !important;
}

.card-action-btn {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.85rem;
}

/* Highlighted Bumble Card Styles */
.highlighted-card {
  border-color: var(--color-gold) !important;
  box-shadow: 0 10px 25px var(--color-gold-glow);
}

.price-badge-card {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: var(--color-gold);
  color: #ffffff;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 900;
  border-radius: var(--radius-pill);
  font-family: var(--font-numbers);
}

/* --- Premium Products Section --- */
.premium-section {
  background: radial-gradient(circle at 15% 20%, hsla(150, 75%, 35%, 0.04) 0%, transparent 40%),
              radial-gradient(circle at 85% 80%, hsla(45, 75%, 50%, 0.04) 0%, transparent 40%),
              hsl(217, 35%, 6%); /* Modern Dark Lab Vibe */
  padding: clamp(60px, 10vh, 100px) 0;
  border-bottom: 1.5px solid var(--border-color);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.premium-section .text-white {
  color: #ffffff !important;
}

.premium-section .text-gray {
  color: hsl(210, 10%, 75%) !important;
}

.bg-mint {
  background-color: var(--color-accent) !important;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 40px);
  margin-top: 48px;
}

@media (max-width: 992px) {
  .premium-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.premium-card {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg); /* Rounded card 16px */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  height: 100%;
}

.premium-clorox-card:hover {
  transform: translateY(-8px);
  border-color: hsla(150, 70%, 45%, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px hsla(150, 70%, 45%, 0.15);
}

.highlighted-potash:hover {
  transform: translateY(-8px);
  border-color: hsla(45, 80%, 58%, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px hsla(45, 80%, 58%, 0.15);
}

.premium-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background-color: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.premium-card-content {
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.premium-card-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.premium-card-content p {
  font-size: 0.94rem;
  color: hsl(210, 10%, 82%);
  line-height: 1.6;
  margin-bottom: 24px;
}

.premium-highlights-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  margin-bottom: 28px;
}

.ph-badge {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-accent);
  background-color: var(--color-accent-glow);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid hsla(150, 70%, 45%, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.premium-card:hover .ph-badge {
  transform: scale(1.02);
}

/* Highlighted Potash Card styling */
.highlighted-potash {
  border-color: rgba(255, 255, 255, 0.06);
}

.highlighted-potash .premium-card-badge {
  background-color: var(--color-gold);
}

.highlighted-potash .ph-badge {
  color: var(--color-gold);
  background-color: var(--color-gold-glow);
  border-color: hsla(45, 80%, 58%, 0.12);
}

.premium-border {
  height: 260px;
  overflow: hidden; /* For scale zoom */
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
  pointer-events: none;
}

.premium-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-card:hover .premium-product-img {
  transform: scale(1.06); /* Zoom image on hover */
}

/* Specific Premium Buttons styling */
.premium-clorox-card .btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-clorox-card .btn-secondary:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: hsl(217, 35%, 6%);
  box-shadow: 0 4px 15px var(--color-accent-glow);
  transform: translateY(-2px);
}

.highlighted-potash .btn-accent {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: hsl(217, 35%, 6%);
  font-weight: 700;
  box-shadow: 0 4px 12px var(--color-gold-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlighted-potash .btn-accent:hover {
  background-color: hsl(45, 85%, 62%);
  border-color: hsl(45, 85%, 62%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px hsla(45, 80%, 58%, 0.35);
}

/* --- Why Choose Us Section --- */
.why-us-section {
  padding: clamp(60px, 10vh, 100px) 0;
  background-color: var(--bg-secondary);
  border-bottom: 1.5px solid var(--border-color);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-us-card {
  grid-column: span 2;
  background-color: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg); /* Rounded card 16px */
  padding: 32px;
  box-shadow: var(--shadow-sm); /* Soft shadow, no hard borders */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--color-accent);
  transition: background-color 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.why-us-card:hover::before {
  background-color: var(--color-primary);
}

.why-us-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-glow);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
  background-color: var(--color-primary-glow);
  color: var(--color-primary);
}

.why-us-icon svg {
  width: 24px;
  height: 24px;
}

.why-us-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.why-us-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Grid layout positioning for desktop (3 columns in row 1, 2 columns in row 2) */
@media (min-width: 992px) {
  .why-us-grid .why-us-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .why-us-grid .why-us-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}



/* --- Orders Section (Form) --- */
.orders-section {
  padding: clamp(60px, 10vh, 100px) 0;
  border-bottom: 1.5px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.form-max-width {
  max-width: 800px;
}

.form-container-box {
  background-color: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg); /* Rounded container */
  box-shadow: var(--shadow-md); /* Soft drop shadow */
  overflow: hidden;
}

.form-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
}

.tab-btn {
  flex: 1;
  padding: 18px;
  background-color: var(--bg-secondary);
  border: none;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active {
  background-color: var(--bg-primary);
  color: var(--color-primary);
  position: relative;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--color-accent);
}

#order-form {
  padding: clamp(24px, 4vw, 40px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.style-textarea {
  grid-column: span 2;
  margin-top: 16px;
}

.form-actions-row {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.form-submit-btn {
  width: 100%;
  max-width: 480px;
}

.form-btn-icon {
  width: 18px;
  height: 18px;
}

/* --- Contact & Location Section --- */
.contact-section {
  padding: clamp(60px, 10vh, 100px) 0;
  border-bottom: 1.5px solid var(--border-color);
}

.contact-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.contact-details-panel {
  display: flex;
  flex-direction: column;
}

.contact-intro-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cic-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-glow);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cic-icon svg {
  width: 20px;
  height: 20px;
}

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

.cic-text span {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-weight: 700;
  margin-bottom: 4px;
}

.cic-text strong {
  font-size: 1.05rem;
  color: var(--text-primary);
}

.coordinate-copy-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-copy {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  position: relative;
  transition: all 0.2s ease;
}

.btn-copy:hover {
  background-color: var(--color-accent-glow);
  color: var(--color-accent);
}

.copy-icon {
  width: 16px;
  height: 16px;
}

/* Tooltip text */
.btn-copy .tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  text-align: center;
  padding: 5px 0;
  border-radius: var(--radius-sm);
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -50px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.75rem;
  font-family: 'Cairo', sans-serif;
  font-weight: bold;
}

.btn-copy:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Map frame styles */
.map-wrapper-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-iframe-container {
  height: 350px;
  border-radius: var(--radius-lg); /* Rounded map card */
  overflow: hidden;
  box-shadow: var(--shadow-md); /* Soft shadows, no solid border */
  border: 1.5px solid var(--border-color);
}

.map-btn-link {
  width: 100%;
}

/* --- Footer Section --- */
.site-footer {
  background-color: hsl(217, 30%, 10%); /* Deep Dark Footer background */
  padding: 80px 0 40px 0;
  color: hsl(210, 10%, 80%);
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.footer-logo .brand {
  color: #ffffff;
}

.footer-logo .brand-logo-frame {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-logo .brand-name {
  color: #ffffff;
}

.slogan {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
}

.quality-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
}

.quality-seal {
  width: 60px;
  height: 60px;
}

.quality-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quality-text strong {
  font-size: 0.95rem;
  color: #ffffff;
}

.quality-text span {
  font-size: 0.78rem;
  color: hsl(210, 10%, 70%);
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2.5px;
  background-color: var(--color-accent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: hsl(210, 10%, 75%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  transform: translateY(-2px);
}

.wa-color:hover {
  background-color: #25d366;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.fb-color:hover {
  background-color: #1877f2;
  box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}

/* Footer Bottom Copyright */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 0.94rem;
  color: hsl(210, 10%, 75%);
  font-family: 'Cairo', sans-serif;
  font-weight: 500;
}

.footer-bottom a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0 4px;
}

.footer-bottom a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
  transform: translateY(-1px);
}

/* --- Product Details Modal Styling --- */
.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 28, 58, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 16px;
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-modal-content {
  background-color: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.product-modal-overlay.active .product-modal-content {
  transform: translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.close-modal-btn:hover {
  background-color: var(--bg-secondary);
}

.close-modal-btn svg {
  width: 18px;
  height: 18px;
}

#modal-body-content {
  padding: 40px;
}

.modal-header-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1.5px solid var(--border-color);
  padding-bottom: 16px;
}

.modal-header-section h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-primary);
}

.modal-spec-block {
  margin-bottom: 16px;
}

.modal-spec-block h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.modal-spec-block p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Toast Notifications --- */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  font-size: 0.92rem;
  font-weight: 700;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Floating WhatsApp Button --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  left: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.floating-whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid #25d366;
  animation: pulseWhatsApp 1.8s infinite;
  z-index: -1;
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Floating Tooltip */
.wa-floating-tooltip {
  position: absolute;
  right: 70px;
  left: auto;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.floating-whatsapp-btn:hover .wa-floating-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
  left: auto;
}

@keyframes pulseWhatsApp {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* --- Mobile Navigation Drawer (Hamburger System) --- */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 28, 58, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow: hidden; /* Prevent horizontal scrolling from child */
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: absolute; /* Relative to fixed overlay containing block */
  top: 0;
  right: -280px; /* Hidden offscreen by default */
  width: 280px;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-nav-drawer {
  right: 0; /* Slide in */
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.close-drawer-btn {
  background: none;
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-drawer-btn svg {
  width: 18px;
  height: 18px;
}

.drawer-phone-link {
  display: flex;
  margin-top: auto;
  justify-content: center;
}

.drawer-brand-name {
  font-size: 1.1rem;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: 'Cairo', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  border-bottom: 1.5px solid transparent;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--color-accent);
  padding-right: 8px;
}

/* --- Media Queries (Responsiveness 100%) --- */

/* For smaller desktop screens to prevent menu overcrowding */
@media (max-width: 1200px) {
  .phone-link-header-direct {
    display: none !important; /* Hide direct phone link to prevent menu from wrapping */
  }
}

/* For Tablets and Medium Viewports (768px to 1150px) */
@media (max-width: 1150px) {
  .desktop-nav {
    display: none; /* Hide desktop menu */
  }
  
  .menu-toggle {
    display: flex; /* Show Hamburger menu button */
  }

  .header-cta-btn {
    display: none !important; /* Hide CTA button on mobile/tablet to avoid overlapping or pushing elements */
  }

  .hero-grid-layout {
    grid-template-columns: 1fr; /* Stack Hero */
    gap: 40px;
    text-align: center;
  }

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

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .dishwash-featured-row {
    grid-template-columns: 1fr; /* Stack dishwash featured */
    text-align: center;
  }

  .featured-specs {
    align-items: center;
  }

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

  .premium-grid {
    grid-template-columns: 1fr; /* Stack premium products */
    gap: 30px;
  }

  .premium-border {
    height: 300px;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns why us */
    gap: 20px;
  }
  
  .why-us-card {
    grid-column: span 1 !important;
  }

  .why-us-grid .why-us-card:nth-child(5) {
    grid-column: span 2 !important; /* Center the last card */
  }

  .contact-grid-layout {
    grid-template-columns: 1fr; /* Stack Map & Contact Info */
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns footer */
    gap: 40px;
  }
  
  .footer-logo {
    grid-column: span 2;
  }
}

/* For Mobiles (< 768px) */
@media (max-width: 767px) {
  /* Reduce side padding on mobile to 15px */
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 40px 0;
  }

  .products-grid {
    grid-template-columns: 1fr; /* 1 column products */
    gap: 20px;
  }

  .why-us-grid {
    grid-template-columns: 1fr; /* 1 column why us */
    gap: 16px;
  }

  .why-us-card {
    grid-column: span 2 !important;
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr; /* 1 column form inputs */
    gap: 16px;
  }

  .style-textarea {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr; /* 1 column footer */
    gap: 30px;
  }

  .footer-logo {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .btn {
    width: 100%; /* Full width buttons on mobile */
  }
  
  .form-actions-row .btn {
    width: 100%;
  }

  .coordinate-copy-row {
    flex-wrap: wrap;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
