/*
Theme Name: Alfa Refractories Custom Theme
Theme URI: https://alfarefractories.com/
Author: Antigravity Team
Description: A premium, highly customizable, and responsive custom theme for Alfa Refractories.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alfa-refractories
Tags: industrial, clean, responsive, custom-logo, custom-menu, custom-background
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #F15A24; /* Lava Orange from Logo */
  --primary-hover: #D44210;
  --secondary: #E2E8F0;
  --dark: #121212;
  --dark-accent: #1C1E22;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --text-dark: #0F172A;
  --text-light: #F8FAFC;
  --text-muted: #64748B;
  --font-sans: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --max-width: 1200px;
  --header-height: 80px; /* overridden dynamically via PHP wp_add_inline_style */
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--light);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
  font-size: 1.15rem; /* Increased base font size for easy reading */
}

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

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

ul {
  list-style: none;
}

/* Common Layout Elements */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background-color: var(--dark-accent);
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.85rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.35rem; /* Increased font size */
  line-height: 1.8;
}

.section-dark .section-header p {
  color: #94A3B8;
}

/* Typography & Accents */
.accent-title {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
  display: block;
}

.accent-title + h1,
.accent-title + h2,
.accent-title + h3 {
  margin-top: 18px !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(241, 90, 36, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(241, 90, 36, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

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

.section-dark .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}

.section-dark .btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark);
}

.btn-white {
  background-color: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow);
}

.btn-group {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

/* Header & Navigation */
header {
  height: var(--header-height);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(18, 18, 18, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

header.scrolled .nav-link {
  color: var(--text-light);
}

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

header.scrolled .logo img {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.2));
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 100%;
  transition: var(--transition);
}

.logo-scrolled {
  display: none !important;
}

.logo-default {
  display: block !important;
}

header.scrolled .logo-default {
  display: none !important;
}

header.scrolled .logo-scrolled {
  display: block !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu li {
  list-style: none;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

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

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

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

/* Dropdown Menus (About Us, Products) */
.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-toggle .arrow {
  font-size: 0.8rem;
  transition: var(--transition);
  display: inline-block;
  line-height: 1;
}

.nav-item-dropdown:hover .dropdown-toggle .arrow,
.nav-item-dropdown.open .dropdown-toggle .arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  background-color: var(--white);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: var(--transition);
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header Scrolled Dropdown styles */
header.scrolled .dropdown-menu {
  background-color: var(--dark-accent);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-item {
  display: block;
  padding: 10px 24px;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

header.scrolled .dropdown-item {
  color: #CBD5E1;
}

.dropdown-item:hover {
  background-color: rgba(241, 90, 36, 0.08);
  color: var(--primary);
  padding-left: 28px;
}

header.scrolled .dropdown-item:hover {
  background-color: rgba(241, 90, 36, 0.15);
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1100;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

header.scrolled .mobile-nav-toggle span {
  background-color: var(--text-light);
}

.mobile-nav-toggle span:nth-child(1) { top: 0; }
.mobile-nav-toggle span:nth-child(2) { top: 9px; }
.mobile-nav-toggle span:nth-child(3) { top: 18px; }

.mobile-nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* Page Hero Header */
.page-hero {
  min-height: 350px;
  height: auto;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(28, 30, 34, 0.9) 100%), url('assets/images/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: calc(var(--header-height) + 50px) 0 50px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.25rem;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Slider (Homepage) */
.hero-slider-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--dark);
}

.slider-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
  padding-top: var(--header-height);
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(18, 18, 18, 0.95) 20%, rgba(18, 18, 18, 0.6) 60%, rgba(18, 18, 18, 0.2) 100%);
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  transition-delay: 0.3s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

.slide-content h1 span {
  color: var(--primary);
}

.slide-content p {
  font-size: 1.25rem;
  color: #CBD5E1;
  margin-bottom: 40px;
  max-width: 600px;
}

.slide-actions {
  display: flex;
  gap: 16px;
}

.slide-actions .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}

.slide-actions .btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark);
}

/* Slider Navigation */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow-prev { left: 40px; }
.slider-arrow-next { right: 40px; }

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 32px;
  border-radius: 6px;
}

/* Features Grid (Intro) - Premium redesign */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

.feature-card {
  background: var(--white);
  padding: 44px 36px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #ff8c5a 100%);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: var(--transition);
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 40px rgba(241, 90, 36, 0.12);
  border-color: rgba(241, 90, 36, 0.15);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(241, 90, 36, 0.12) 0%, rgba(241, 90, 36, 0.06) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.75rem;
  font-weight: 800;
  border: 1.5px solid rgba(241, 90, 36, 0.15);
  transition: var(--transition);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  display: block;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(241, 90, 36, 0.3);
}

.feature-card:hover .feature-icon svg {
  transform: rotate(12deg) scale(1.1);
}

.feature-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Product Section Home & Grid Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(241, 90, 36, 0.2);
}

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

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 1px;
}

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

.product-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
  flex-grow: 1;
}

.product-specs {
  background-color: var(--light);
  padding: 16px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  font-size: 0.875rem;
}

.product-specs li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  margin-bottom: 8px;
  align-items: start;
}

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

.product-specs span:first-child {
  font-weight: 600;
  color: var(--text-muted);
}

.product-specs span:last-child {
  font-weight: 700;
  color: var(--text-dark);
}

.product-footer {
  margin-top: auto;
}

/* Category Filter (Products page) */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.8);
  color: var(--text-dark);
  padding: 10px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(241, 90, 36, 0.25);
}

/* Industries Served - Clean Professional Light Design */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-card {
  background: var(--white);
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 44px 28px 36px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #ff8c5a 100%);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: center;
}

.industry-card:hover::after {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 90, 36, 0.2);
  box-shadow: 0 20px 40px rgba(241, 90, 36, 0.1);
}

.industry-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(241, 90, 36, 0.08) 0%, rgba(241, 90, 36, 0.04) 100%);
  border: 1.5px solid rgba(241, 90, 36, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 2rem;
  transition: var(--transition);
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(241, 90, 36, 0.3);
  transform: scale(1.1);
}

.industry-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.industry-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* CTA Banner Section */
.cta-banner-section {
  background: linear-gradient(135deg, rgba(241, 90, 36, 0.95) 0%, rgba(212, 66, 16, 0.95) 100%), url('assets/images/hero.png') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-banner-content h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Corporate Profile & Stats (About) */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px;
}

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

.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Vertical Timeline (About) */
.timeline-section {
  background-color: var(--white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--secondary);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  opacity: 0.9;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--white);
  border: 4px solid var(--primary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -10px;
}

.timeline-content {
  padding: 24px 32px;
  background-color: var(--light);
  position: relative;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 1.05rem; /* Increased font size */
  line-height: 1.75;
  color: var(--text-muted);
}

/* Facilities Cards Grid */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.facility-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(241, 90, 36, 0.2);
}

.facility-image-wrapper {
  height: 260px;
  overflow: hidden;
}

.facility-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.facility-card:hover .facility-image-wrapper img {
  transform: scale(1.08);
}

.facility-info {
  padding: 32px;
}

.facility-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.facility-info p {
  color: var(--text-muted);
}

/* Contact Page Grid & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

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

.contact-info-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  background-color: rgba(241, 90, 36, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-info-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info-text p {
  color: var(--text-muted);
  font-size: 1.05rem; /* Increased font size */
  line-height: 1.7;
}

.contact-form-card {
  background-color: var(--white);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-form-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-form-card p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

/* Fix global line height and spacing inside form paragraphs for CF7 & custom forms */
.contact-form-card form p {
  margin-bottom: 20px;
  line-height: 1.35;
}

.contact-form-card form p br {
  display: none;
}

.contact-form-card form .wpcf7-form-control-wrap,
.contact-form-card form .form-input {
  display: block;
  margin-top: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--border-radius);
  border: 1px solid #CBD5E1;
  background-color: var(--light);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.1);
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form-message {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
}

.form-message.error {
  display: block;
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #FBD5D5;
}

/* Map Section */
.map-section {
  padding: 0;
  height: 450px;
  width: 100%;
  position: relative;
  background-color: var(--secondary);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 0 24px;
}

.map-placeholder-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 16px;
  animation: bounce 2s infinite;
}

.map-placeholder h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.map-placeholder p {
  color: #94A3B8;
  max-width: 400px;
  margin-bottom: 24px;
}

/* Footer Section */
footer {
  background-color: var(--dark);
  color: #94A3B8;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.footer-about img {
  max-height: 100%;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.1));
}

.footer-about p {
  font-size: 1.05rem; /* Increased font size */
  margin-bottom: 24px;
  line-height: 1.75;
}

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

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

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

.social-link svg {
  fill: currentColor;
  transition: var(--transition);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 1.05rem; /* Increased font size */
}

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

.footer-contact li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1.05rem; /* Increased font size */
}

.footer-contact-icon {
  color: var(--primary);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 24px;
}

.footer-contact a {
  color: inherit;
  transition: var(--transition);
}

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

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

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

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
  }
  
  .features-grid .feature-card:last-child {
    grid-column: span 2;
  }
  
  .product-grid,
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-image img {
    height: 400px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .slide-content h1 {
    font-size: 2.75rem;
  }
  
  .slide-content p {
    font-size: 1.1rem;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
    padding-bottom: 40px;
    gap: 32px;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  header.scrolled .nav-menu {
    background-color: var(--dark-accent);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.2rem;
  }

  .nav-item-dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-toggle {
    justify-content: center;
    width: 100%;
    padding: 8px 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: transparent !important;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
  }

  .nav-item-dropdown.open .dropdown-menu {
    max-height: 350px;
  }

  .dropdown-item {
    font-size: 1.05rem;
    padding: 10px 0;
    color: var(--text-dark) !important;
  }

  header.scrolled .dropdown-item {
    color: #94A3B8 !important;
  }

  .dropdown-item:hover {
    padding-left: 0;
    color: var(--primary) !important;
  }
  
  .nav-cta {
    display: none; /* Hide top CTA on mobile, link inside menu if needed */
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
    gap: 20px;
    padding: 0 10px;
  }
  
  .features-grid .feature-card:last-child {
    grid-column: span 1;
  }
  
  .product-grid,
  .facility-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .slider-arrow {
    width: 44px;
    height: 44px;
  }
  
  .slider-arrow-prev { left: 16px; }
  .slider-arrow-next { right: 16px; }
  
  .timeline::after {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 45px;
    padding-right: 0;
  }
  
  .timeline-item::after {
    left: 10px;
    right: auto;
  }
  
  .timeline-right {
    left: 0;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form-card {
    padding: 30px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Homepage Enhancements: Stats, About & Client Slider */

/* 1. Animated Stats Section */
.stats-banner {
  background-color: var(--white);
  padding: 50px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 6;
  margin-top: -50px;
  border-radius: var(--border-radius-lg);
  max-width: calc(var(--max-width) - 48px);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

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

.stat-card {
  padding: 10px;
}

.stat-card:not(:first-child) {
  border-left: 1px solid rgba(226, 232, 240, 0.8);
}

.stat-count {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

/* 2. Homepage About Us Section */
.home-about-section {
  background-color: var(--white);
}

.highlight-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.highlight-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.highlight-text h4 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.highlight-text p {
  font-size: 1.025rem; /* Increased font size */
  color: var(--text-muted);
}

/* 3. Clients Logo Slider Section */
.clients-section {
  background-color: var(--light);
  padding: 80px 0;
  overflow: hidden;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

/* Fading gradient masks on sides */
.logo-slider::before,
.logo-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--light) 0%, rgba(248, 250, 252, 0) 100%);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--light) 0%, rgba(248, 250, 252, 0) 100%);
}

.logo-slide-track {
  display: flex;
  width: calc(240px * 10); /* 5 unique slides duplicated */
  animation: scrollLogo 30s linear infinite;
}

.logo-slide {
  width: 240px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.65;
  transition: var(--transition);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.logo-slide:hover {
  opacity: 1;
  transform: scale(1.05) translate3d(0, 0, 0);
}

.client-logo-img {
  max-width: 160px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45; /* Soft light gray shade */
  mix-blend-mode: multiply; /* Blends white/light background blocks out */
  transition: var(--transition);
  will-change: filter, transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.logo-slide:hover .client-logo-img {
  opacity: 1;
  filter: none; /* Show actual colored/original logo on hover */
}

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.logo-placeholder span {
  color: var(--primary);
  font-size: 1.5rem;
}

@keyframes scrollLogo {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-240px * 5));
  }
}

@keyframes scrollLogoMobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-150px * 5));
  }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .stats-banner {
    max-width: calc(100% - 48px);
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
  
  .stat-card:nth-child(2n+1) {
    border-left: none;
  }
  
  .stat-card:nth-child(2n) {
    border-left: 1px solid rgba(226, 232, 240, 0.8);
  }
  
  .stat-count {
    font-size: 2.75rem;
  }

  .page-hero {
    padding: calc(var(--header-height) + 40px) 0 40px 0 !important;
    min-height: auto;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .page-hero p {
    font-size: 1.05rem;
  }

  .slide {
    padding-top: calc(var(--header-height) + 30px);
  }

  .slide-content h1 {
    font-size: 2.25rem;
    margin-bottom: 16px;
  }

  .slide-content p {
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .logo-slide-track {
    width: calc(150px * 10) !important;
    animation: scrollLogoMobile 20s linear infinite !important;
  }

  .logo-slide {
    width: 150px !important;
    height: 60px !important;
  }

  .client-logo-img {
    max-width: 110px !important;
    max-height: 40px !important;
  }

  .slide-actions,
  .btn-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .slide-actions .btn,
  .btn-group .btn {
    width: 100%;
    margin-left: 0 !important;
    text-align: center;
  }

  .about-content table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
  }

  .about-content table td {
    width: 100% !important;
    padding: 4px 0 !important;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stat-card {
    border-left: none !important;
  }
}

/* ==========================================================================
   FAQ Accordion Section Styles
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(241, 90, 36, 0.2);
}

.faq-header {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-dark);
}

.faq-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin-right: 20px;
  margin-bottom: 0;
  transition: var(--transition);
}

.faq-header:hover h3 {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-block;
  line-height: 1;
}

.faq-item.active .faq-header h3 {
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 1.05rem; /* Increased font size */
  line-height: 1.75;
}

.faq-content-inner p {
  margin: 0;
}

/* Why Choose Alfa Section - Hexagonal Cards */
.why-choose-section {
  background-color: var(--light);
  padding: 120px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  perspective: 1000px; /* enables 3D tilt effect */
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.advantage-card-wrap {
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
}

.advantage-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.01);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #FF8A65 100%);
  transition: height 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.advantage-card-wrap:hover .advantage-card {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(241, 90, 36, 0.2);
  box-shadow: 0 20px 40px -15px rgba(241, 90, 36, 0.12), 0 0 0 1px rgba(241, 90, 36, 0.05);
}

.advantage-card-wrap:hover .advantage-card::before {
  height: 6px;
  box-shadow: 0 2px 10px rgba(241, 90, 36, 0.3);
}

.advantage-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 50px 32px 40px 32px;
  transition: var(--transition);
  flex-grow: 1;
}

.advantage-card-wrap:hover .advantage-card-inner {
  background-color: transparent;
}

.advantage-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(241, 90, 36, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.advantage-card-wrap:hover .advantage-icon-wrapper {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(10deg);
}

.advantage-svg {
  width: 30px;
  height: 30px;
}

.advantage-card-inner h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.advantage-card-inner p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
  padding: 0 10px;
}

/* About Section Slider */
.about-slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.about-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.about-slide.active {
  opacity: 1;
  z-index: 2;
}

.about-slide img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* Arrow controls */
.about-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.about-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.about-arrow-prev {
  left: 16px;
}

.about-arrow-next {
  right: 16px;
}

/* Dots */
.about-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.about-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.about-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.about-dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-slider-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .advantage-card-inner {
    padding: 40px 24px;
  }
}


