/*
 * Flame Armor Style Sheet (English Version)
 * High-End Industrial Fire Fighting Foam Theme
 * LTR-First, Clean, Modern, and fully responsive
 */

:root {
  --primary: #FFD000;
  --primary-rgb: 255, 208, 0;
  --primary-dark: #D97706;
  --primary-light: #FFFBEB;
  --secondary: #0F172A; /* Slate 900 */
  --secondary-light: #1E293B; /* Slate 800 */
  --secondary-rgb: 15, 23, 42;
  --text-main: #334155; /* Slate 700 */
  --text-light: #64748B; /* Slate 500 */
  --text-white: #FFFFFF;
  --bg-light: #F8FAFC; /* Slate 50 */
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --border-color-dark: #334155;
  --danger: #EF4444;
  --success: #10B981;
  
  --font-ar: 'Inter', sans-serif;
  --font-en: 'Outfit', sans-serif;
  
  --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 0 1px 0 rgba(0, 0, 0, 0.1);
  --card-shadow-hover: 0 20px 40px -10px rgba(217, 119, 6, 0.12), 0 0 1px 0 rgba(217, 119, 6, 0.2);
  --btn-shadow: 0 4px 14px 0 rgba(255, 208, 0, 0.3);
  --btn-shadow-hover: 0 6px 20px 0 rgba(217, 119, 6, 0.4);
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-ar);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  text-align: left;
  direction: ltr;
}

/* Helpers */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

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

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

/* Scroll Reveal Base with Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1.3;
  color: var(--secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 0.95rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--bg-white);
  box-shadow: var(--btn-shadow-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: var(--bg-white);
  color: var(--secondary);
  border-color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--secondary);
  color: var(--bg-white);
}

.btn-accent:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background-color: var(--bg-light);
  border-color: var(--text-light);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-full-width {
  width: 100%;
}

/* Badges & Section Headers */
.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-dark);
  background-color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 15px;
  border: 1px solid rgba(217, 119, 6, 0.15);
  font-family: var(--font-en);
}

.section-badge.badge-light {
  color: var(--primary);
  background-color: rgba(255, 208, 0, 0.1);
  border: 1px solid rgba(255, 208, 0, 0.2);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 40px;
}

.section-header {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* TOP BAR */
.top-bar {
  background-color: var(--secondary);
  color: var(--text-light);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-color-dark);
  padding: 8px 0;
  font-family: var(--font-en);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contacts {
  display: flex;
  gap: 20px;
}

.top-contacts a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94A3B8;
}

.top-contacts a:hover {
  color: var(--primary);
}

.top-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cert-badge {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.lang-switch {
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.lang-switch:hover {
  color: var(--primary);
}

/* SITE HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 15px 0;
  transition: padding var(--transition), background-color var(--transition);
}

.site-header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

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

.logo-img {
  width: 50px;
  height: 55px;
  transition: var(--transition);
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.05) rotate(3deg);
}

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

.brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.2;
  font-family: var(--font-en);
}

.brand-slogan {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 2px;
  font-family: var(--font-en);
}

/* Navigation menu */
.navigation-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

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

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

.header-cta-mobile {
  display: none;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 3px;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  background-image: url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--text-white);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 20%, rgba(15, 23, 42, 0.6) 80%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 750px;
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 25px;
}

.hero-desc {
  font-size: 1.25rem;
  color: #CBD5E1; /* Slate 300 */
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-desc strong {
  color: var(--primary);
}

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

/* Hero Animations */
.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-up-delayed {
  opacity: 0;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.animate-fade-in-delayed {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.4s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Hero Wave Divider - Corrected direction (Visual sit at bottom) */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.hero-wave .shape-fill {
  fill: var(--bg-white);
}

/* HIGHLIGHTS SECTION */
.highlights-section {
  position: relative;
  z-index: 3;
  margin-top: -60px;
  padding-bottom: 60px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.highlight-card {
  background-color: var(--bg-white);
  padding: 35px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--card-shadow);
  border-bottom: 4px solid var(--border-color);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-bottom-color: var(--primary);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
  background-color: var(--primary);
  color: var(--secondary);
  transform: scale(1.1);
}

.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.highlight-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* STATS SECTION - High contrast & Premium numbers formatting */
.stats-section {
  position: relative;
  background-color: var(--secondary);
  color: var(--text-white);
  padding: 100px 0;
  overflow: hidden;
}

.stats-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image: radial-gradient(var(--primary) 1px, transparent 0);
  background-size: 24px 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-item::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-item:first-child::after {
  display: none; /* In LTR, the first item on the left doesn't need left-border */
}

.number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-number {
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #FFFFFF 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.stat-suffix {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.95rem;
  color: #94A3B8;
  margin-top: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ABOUT SECTION */
.about-section {
  padding: 120px 0;
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

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

.image-wrapper {
  position: relative;
  z-index: 1;
}

.about-main-img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  border: 8px solid var(--bg-light);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background-color: var(--secondary);
  color: var(--text-white);
  padding: 20px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.badge-num {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #94A3B8;
  margin-top: 5px;
}

.pattern-overlay {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(rgba(15, 23, 42, 0.1) 2px, transparent 0);
  background-size: 15px 15px;
  z-index: -1;
}

.about-content-column .section-badge {
  margin-bottom: 15px;
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-text {
  color: var(--text-light);
  margin-bottom: 35px;
  font-size: 1rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.value-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background-color: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.25rem;
}

.value-info h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 800;
}

.value-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* PRODUCTS SECTION */
.products-section {
  background-color: var(--bg-light);
  padding: 120px 0;
}

.product-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.filter-btn {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
  font-size: 0.9rem;
}

.filter-btn:hover {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.filter-btn.active {
  background-color: var(--primary-dark);
  color: var(--text-white);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary);
}

.product-img-wrapper {
  position: relative;
  height: 280px;
  background-color: #F8FAFC;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.prod-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--secondary);
  color: var(--primary);
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--border-radius-sm);
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,208,0,0.3);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 3;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-specs {
  list-style: none;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  margin-bottom: 20px;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.product-specs li:last-child {
  margin-bottom: 0;
}

.product-specs li span {
  color: var(--text-light);
}

.product-specs li strong {
  color: var(--secondary);
  font-weight: 700;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
  padding: 10px;
  font-size: 0.85rem;
}

/* CERTIFICATIONS SECTION */
.certificates-section {
  position: relative;
  background-color: var(--secondary);
  padding: 120px 0;
  color: var(--text-white);
  overflow: hidden;
}

.certificates-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0l40 40-40 40L0 40z' fill='%23ffffff' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.text-white {
  color: var(--text-white) !important;
}
.text-white::after {
  background-color: var(--primary) !important;
}

.text-gray {
  color: #94A3B8 !important;
}

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

.cert-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 30px 25px;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.cert-card:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.cert-icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 208, 0, 0.1);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 208, 0, 0.2);
}

.cert-card h3 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 12px;
  font-weight: 800;
}

.cert-card p {
  color: #94A3B8;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* QUOTE SECTION */
.quote-section {
  padding: 120px 0;
  background-color: var(--bg-white);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.quote-info-column .section-badge {
  margin-bottom: 15px;
}

.quote-info-desc {
  color: var(--text-light);
  margin-bottom: 35px;
}

/* B2B Calculator Visual Panel */
.quote-interactive-summary {
  background-color: var(--bg-light);
  border: 1px dashed var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 30px;
  position: relative;
  box-shadow: var(--card-shadow);
  border-left: 4px solid var(--secondary);
}

.quote-interactive-summary h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item .lbl {
  color: var(--text-light);
  font-size: 0.9rem;
}

.summary-item .val {
  font-weight: 700;
  color: var(--secondary);
}

.summary-item .val.highlight-orange {
  color: var(--primary-dark);
  font-size: 1.1rem;
  font-family: var(--font-en);
}

.summary-note {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}

/* Quote Form Column */
.quote-form-column {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow-hover);
  border: 1px solid var(--border-color);
  padding: 40px;
}

.form-heading {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--secondary);
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 15px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  color: var(--secondary);
  font-weight: 600;
  transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  background-color: var(--bg-white);
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

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

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Form responses styles */
.form-feedback {
  margin-top: 15px;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  display: none;
  text-align: center;
}
.form-feedback.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: block;
}
.form-feedback.error {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: block;
}

/* CONTACT & FAQ SECTION */
.contact-section {
  padding: 120px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

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

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 45px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-dark);
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}

.contact-detail-item:hover .icon-circle {
  background-color: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  transform: scale(1.1);
}

.det-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.det-info p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.det-info a:hover {
  color: var(--primary-dark);
}

/* FAQ Accordion */
.faq-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question i {
  color: var(--text-light);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-dark);
  background-color: rgba(255, 208, 0, 0.02);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background-color: var(--bg-white);
}

.faq-answer p {
  padding: 0 20px 20px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  border-top: 1px solid transparent;
}

.faq-item.active {
  border-color: var(--primary-dark);
  box-shadow: var(--card-shadow);
}

.faq-item.active .faq-question {
  color: var(--primary-dark);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-dark);
}

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

.faq-item.active .faq-answer p {
  border-top-color: var(--bg-light);
}

/* Map Column Styling */
.map-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 30px;
}

.map-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.map-iframe-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
}

.map-address-details p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.map-address-details p i {
  color: var(--primary-dark);
  margin-top: 3px;
}

/* SITE FOOTER */
.site-footer {
  background-color: var(--secondary);
  color: #94A3B8;
  padding: 80px 0 30px 0;
  font-size: 0.9rem;
  border-top: 4px solid var(--primary-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr 1.8fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--text-white);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.brand-col .logo-wrapper {
  margin-bottom: 20px;
}

.bg-white-circle {
  background-color: white;
  border-radius: 50%;
  padding: 4px;
}

.text-gold {
  color: var(--primary) !important;
}

.brand-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
}

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

.footer-links a {
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.btn-tds-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 208, 0, 0.1);
  border: 1px solid rgba(255, 208, 0, 0.2);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 10px;
}

.btn-tds-download:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

/* Newsletter styles */
.newsletter-col p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  padding: 12px 15px;
  color: var(--text-white);
  font-size: 0.85rem;
}

.newsletter-form button {
  background-color: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  padding: 0 20px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.newsletter-feedback {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  display: none;
}
.newsletter-feedback.success {
  color: var(--success);
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* TDS DOWNLOAD MODAL */
.tds-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.tds-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
}

.modal-content {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 90%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  z-index: 2;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
}

.tds-modal.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition-fast);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.modal-close:hover {
  color: var(--danger);
  background-color: var(--bg-light);
}

.modal-header-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

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

.modal-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.modal-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.modal-body form {
  text-align: left;
}

.modal-feedback {
  margin-top: 15px;
  font-size: 0.85rem;
  font-weight: 700;
  display: none;
  text-align: center;
}
.modal-feedback.success {
  color: var(--success);
  display: block;
}

/* RESPONSIVE DESIGN - MEDIA QUERIES */

@media (max-width: 1024px) {
  /* Tables and Grids adjustment */
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlights-section {
    padding-bottom: 30px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .stat-item::after {
    display: none;
  }
  .about-grid, .quote-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .about-main-img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  /* Top Bar */
  .top-bar {
    display: none; /* Hide top bar on mobile */
  }
  
  /* Header & Navigation Menu */
  .site-header {
    padding: 10px 0;
  }
  
  .mobile-nav-toggle {
    display: block;
    z-index: 1100;
  }
  
  .mobile-nav-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .navigation-menu {
    position: fixed;
    top: 0;
    left: -100%; /* In LTR, nav slides from left */
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    z-index: 1000;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px 30px;
    gap: 30px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .navigation-menu.open {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.1rem;
    display: block;
    width: 100%;
  }
  
  .header-cta {
    display: none;
  }
  
  .header-cta-mobile {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  
  /* Hero */
  .hero-section {
    height: auto;
    padding: 120px 0 80px 0;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-desc {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Highlights & sections spacing */
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .highlights-section {
    margin-top: -30px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .certificates-grid {
    grid-template-columns: 1fr;
  }
  
  /* About section tweaks */
  .experience-badge {
    bottom: -15px;
    left: 10px;
    padding: 12px 20px;
  }
  
  .badge-num {
    font-size: 2rem;
  }
  
  /* Form Rows alignment */
  .form-row-2, .form-row-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .quote-form-column {
    padding: 25px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
