:root {
  /* Brand Colors — Refined for Light Theme */
  --americom-red: #da291c;
  --americom-yellow: #fbc02d;
  --americom-blue: #1e3a8a; /* Deep Institutional Blue */

  --primary: var(--americom-blue);
  --primary-dark: #172554;
  --secondary: #f1f5f9;  /* Platinum Gray */
  --accent: #f59e0b;     /* Sunny Gold */

  --text-main: #0f172a;  /* Midnight Black/Blue */
  --text-muted: #64748b; /* Slate Gray */
  --text-on-dark: #ffffff;
  
  --bg-body: #f8fafc;    /* Clean cool white */
  --bg-surface: #ffffff; /* Pure white cards */
  
  --glass-light: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.05);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --font-main: "Inter", sans-serif;
  --font-display: "Outfit", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════
   HEADER & NAVIGATION — Platinum Redesign
   ═══════════════════════════════════════════════ */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: 80px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  will-change: transform, height, background;
}

/* Redesigned accent line */
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--americom-red), var(--americom-yellow), var(--americom-blue), var(--americom-red));
  background-size: 300% 100%;
  animation: navGradientShift 10s linear infinite;
}

@keyframes navGradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  height: 64px;
  box-shadow: var(--shadow-md);
}

nav {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  z-index: 1010;
}

.logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.logo span {
  font-family: "Libre Baskerville", "Playfair Display", "Times New Roman", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--americom-red);
  text-transform: uppercase;
  display: block;
}

/* ── Main Nav Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-links > li > a,
.nav-links > li > .nav-dropdown-trigger {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-links > li > a:hover,
.nav-links > li > .nav-dropdown-trigger:hover,
.nav-links > li > a.active {
  color: var(--primary);
  background: var(--secondary);
}

/* Active page indicator dot */
.nav-links > li > a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--americom-red);
  box-shadow: 0 0 8px rgba(211, 47, 47, 0.6);
}

/* ── Mega Dropdown ── */
.nav-mega-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 600px;
  background: var(--bg-surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.nav-links > li:hover .nav-mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid transparent;
  transition: var(--transition);
}

.mega-card:hover {
  background: #ffffff;
  border-color: rgba(0,0,0,0.05);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Dropdown chevron icon */
.nav-dropdown-trigger .nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.nav-links > li:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown caret arrow */
.nav-mega-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--bg-surface);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mega-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.mega-card.card-it .mega-card-icon { background: #fee2e2; color: var(--americom-red); }
.mega-card.card-supplies .mega-card-icon { background: #fef9c3; color: #854d0e; }
.mega-card.card-call .mega-card-icon { background: #dbeafe; color: var(--americom-blue); }

.mega-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.mega-card-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Contact Button ── */
.btn-contact {
  background: var(--americom-blue);
  color: #ffffff;
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-contact:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
  color: #ffffff;
}

/* ── Hamburger (Mobile) ── */
.nav-hamburger {
  display: none;
  cursor: pointer;
  z-index: 1010;
  background: var(--secondary);
  padding: 12px;
  border-radius: 12px;
  border: none;
  transition: var(--transition);
}

.nav-hamburger:hover {
  background: #e2e8f0;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  position: absolute;
  transition: transform 0.15s ease, opacity 0.15s ease;
  border-radius: 4px;
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before {
  content: "";
  top: -8px;
}

.hamburger-inner::after {
  content: "";
  bottom: -8px;
}

/* Hamburger Active State */
.nav-hamburger.active .hamburger-inner {
  background-color: transparent;
}

.nav-hamburger.active .hamburger-inner::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.active .hamburger-inner::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile Menu Overlay ── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px) saturate(1.8);
  -webkit-backdrop-filter: blur(25px) saturate(1.8);
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu-inner {
  padding: 100px 2rem 4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-links {
  list-style: none;
  margin-bottom: 2rem;
}

.mobile-nav-links li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu-overlay.active .mobile-nav-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-links a, 
.mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-main);
  text-decoration: none;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

.mobile-nav-links a.active {
  color: var(--americom-red);
}

.mobile-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  opacity: 0.3;
}

.mobile-dropdown-trigger.active .mobile-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--americom-red);
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: #f8fafc;
  border-radius: 16px;
  margin: 0;
}

.mobile-dropdown-content.active {
  margin: 0.5rem 0 1rem;
  padding: 0.5rem 0;
}

.mobile-dropdown-content a {
  font-size: 1rem;
  padding: 1rem 1.5rem;
  border: none;
  font-weight: 600;
}

.mobile-divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 12px;
  display: inline-block;
}

.dot-it { background: var(--americom-red); }
.dot-supplies { background: var(--americom-yellow); }
.dot-call { background: var(--americom-blue); }

.mobile-contact-btn {
  margin-top: auto;
  text-align: center;
  background: var(--americom-blue);
  color: #fff;
  padding: 1.25rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
  transition: var(--transition);
}

.mobile-contact-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.mobile-menu-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

.mobile-menu-footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .nav-links, .btn-contact { display: none !important; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 480px) {
  nav { padding: 0 1.25rem; }
  .logo span { font-size: 1rem; }
  .mobile-menu-inner { padding: 80px 1.25rem 2rem; }
  .mobile-nav-links a, .mobile-dropdown-trigger { font-size: 1.25rem; }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, transparent, var(--bg-dark));
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-secondary {
  background: var(--glass);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

/* ── Divisions Section (Institutional Grid) ── */
.divisions-section {
  display: flex;
  width: 100%;
  height: 100vh;
  padding-top: 80px;
  background: var(--bg-body);
}

.division-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

/* Visibly distinct Solid Colors for a premium Institutional feel */
.div-it { 
  background: var(--americom-red); 
}
.div-supplies { 
  background: #facc15; /* Saturated Gold */
}
.div-call { 
  background: var(--americom-blue); 
}

.division-col:last-child {
  border-right: none;
}

/* Base line becomes a subtle light highlight instead of a color line */
.division-col::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.division-col:hover {
  transform: translateY(-12px);
  z-index: 10;
  box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.3);
}

.division-col:hover::after {
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.division-col h2 {
  font-size: 2.75rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #ffffff; /* White text on solid colors */
  z-index: 10;
  letter-spacing: -0.01em;
  font-weight: 800;
  font-family: var(--font-display);
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Supplies text refined for dark visibility */
.div-supplies h2 {
  color: #0f172a;
}

.div-it:hover h2 { color: #ffffff; }
.div-supplies:hover h2 { color: #0f172a; }
.div-call:hover h2 { color: #ffffff; }

.btn-division {
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 20;
  border-radius: 4px;
  text-decoration: none;
}

/* Specific contrast for yellow column */
.div-supplies .btn-division {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: #0f172a;
}

.div-it:hover .btn-division {
  background: #ffffff;
  color: var(--americom-red);
  border-color: #ffffff;
}

.div-supplies:hover .btn-division {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.div-call:hover .btn-division {
  background: #ffffff;
  color: var(--americom-blue);
  border-color: #ffffff;
}

/* Responsive Grid */
@media (max-width: 900px) {
  .divisions-section {
    flex-direction: column;
    height: auto;
  }
  .division-col {
    height: auto;
    min-height: 400px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

/* Services Section */
.services {
  padding: 100px 2rem;
  background: var(--bg-dark);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* New Details Grid - Polished */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.detail-col {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.detail-col:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Division specific accents */
.box-it {
  border-top: 4px solid var(--americom-red);
}

.box-supplies {
  border-top: 4px solid var(--americom-yellow);
}

.box-call {
  border-top: 4px solid var(--americom-blue);
}

.detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
}

.box-it .detail-icon {
  color: var(--americom-red);
}

.box-supplies .detail-icon {
  color: var(--americom-yellow);
}

.box-call .detail-icon {
  color: var(--americom-blue);
}

.detail-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-weight: 700;
}

.detail-col p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .details-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* Model Branch Section */
.model-section {
  padding: 100px 2rem;
  background: var(--bg-body);
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.model-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.model-image-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.model-image-preview img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.model-image-preview:hover img {
  transform: scale(1.05);
}

.model-overlay-hint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.model-image-preview:hover .model-overlay-hint {
  opacity: 1;
}

.btn-view-model {
  background: #fff;
  color: var(--bg-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Footer */
footer {
  padding: 80px 2rem 40px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  /* 4 Columns: Brand, Links, Head Office, Regional Offices */
  grid-template-columns: 1.5fr 0.8fr 1.2fr 1.2fr;
  gap: 3rem;
}

/* Column General Styling */
.footer-col h4 {
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--americom-red);
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* Brand Column */
.brand-col p {
  margin-top: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 90%;
}

.footer-socials {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Links Column */
.links-col ul {
  list-style: none;
}

.links-col li {
  margin-bottom: 0.8rem;
}

.links-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.links-col a:hover {
  color: var(--americom-red);
  padding-left: 5px;
  /* Subtle movement */
}

/* Locations Columns */
.office-block h5 {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.office-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

.contact-highlight {
  color: var(--text-main) !important;
  font-weight: 500;
}

.email-highlight {
  color: var(--primary) !important;
  margin-top: 0.5rem;
  display: block;
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 968px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .model-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ... existing styles ... */

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* CONTACT PAGE STYLES */
.contact-hero {
  padding: 160px 2rem 80px;
  background: var(--bg-body);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(48, 63, 159, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

.contact-hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  font-weight: 800;
  font-family: var(--font-display);
}

.contact-hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Info Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: -40px auto 60px;
  /* Overlap hero slightly */
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Stagger animations for cards */
.contact-card:nth-child(2) {
  animation-delay: 1s;
}

.contact-card:nth-child(3) {
  animation-delay: 2s;
}

.contact-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--americom-blue), var(--americom-red));
  opacity: 0;
  transition: opacity 0.3s;
}

.contact-card:hover {
  transform: translateY(-12px);
  background: var(--bg-surface);
  border-color: var(--americom-blue);
  box-shadow: var(--shadow-lg);
  animation-play-state: paused;
}

.contact-card:hover::after {
  opacity: 1;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(48, 63, 159, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(48, 63, 159, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(48, 63, 159, 0);
  }
}

.contact-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(48, 63, 159, 0.2),
    rgba(48, 63, 159, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #fff;
  border: 1px solid rgba(48, 63, 159, 0.2);
  transition: all 0.5s ease;
}

.contact-card:hover .contact-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: var(--americom-blue);
  box-shadow: 0 0 20px rgba(48, 63, 159, 0.6);
  border-color: transparent;
  animation: pulseGlow 2s infinite;
}

.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.contact-card .highlight {
  color: var(--text-main);
  font-weight: 700;
}

/* Form & Map Section */
.contact-section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 2rem;
  gap: 4rem;
  align-items: start;
}

.form-container {
  background: var(--bg-surface);
  padding: 3.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
}

.form-container h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: var(--text-main);
  font-weight: 800;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-body);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.1rem;
  border-radius: 10px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--americom-blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.05);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    var(--americom-blue),
    var(--primary-dark)
  );
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(48, 63, 159, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(48, 63, 159, 0.5);
}

/* Map Container */
.map-container {
  height: 600px;
  background: var(--bg-body);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-body);
  color: var(--text-muted);
}

.map-placeholder p {
  margin-top: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .contact-section-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .map-container {
    height: 400px;
  }
}

/* CUSTOMERS PAGE STYLES */
.customers-hero {
  padding: 180px 2rem 100px;
  background: var(--bg-body);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.customers-hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.customers-hero p {
  font-size: 1.25rem;
  color: var(--americom-red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.customers-intro {
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.clients-section {
  padding: 2rem 2rem 8rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.client-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 3/2;
}

.client-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  z-index: 10;
  background: #fff;
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s;
  opacity: 0.8;
}

.client-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ABOUT PAGE STYLES */
.about-hero {
  padding: 180px 2rem 100px;
  background: var(--bg-body);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-hero p {
  font-size: 1.25rem;
  color: var(--americom-red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-intro {
  padding: 4rem 2rem;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 900px;
  margin: 2rem auto 0;
  line-height: 1.8;
}

.about-divisions {
  padding: 4rem 2rem;
}

.about-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.about-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #fff;
}

.about-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  font-weight: 800;
}

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

/* Management Section */
.management-section {
  padding: 8rem 2rem;
  background: var(--bg-surface);
}

.management-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #fff;
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.profile-card {
  background: var(--bg-body);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  padding: 3.5rem;
}

.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--americom-blue);
}

.profile-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-header h3 {
  font-size: 2.25rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.designation {
  display: inline-block;
  background: rgba(48, 63, 159, 0.2);
  color: var(--americom-blue);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.profile-body p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .management-grid {
    grid-template-columns: 1fr;
  }
}

/* PARTNERS SLIDER */
.partners-section {
  padding: 4rem 0;
  background: var(--bg-surface);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  overflow: hidden;
}

.partners-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  font-weight: 800;
}

.partners-header p {
  color: var(--text-muted);
  margin-bottom: 3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-surface), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-surface), transparent);
}

.marquee-track {
  display: inline-flex;
  animation: scroll 40s linear infinite;
}

.partner-item {
  height: 52px;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: none;
  opacity: 1;
  transition: var(--transition);
  cursor: default;
}

.partner-item:hover {
  transform: translateY(-5px) scale(1.1);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.partner-item img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================================
   IT Solutions Page - Specific Styles
   ========================================= */

/* Hero Section */
.solutions-hero {
  min-height: auto;
  padding: 80px 0 0 0;
  background: var(--bg-body);
  display: block;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.solutions-hero::before {
  display: none;
}

.hero-content-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
  display: block;
  gap: 0;
}

.hero-text-side {
  display: none;
}

.hero-model-side {
  width: 100%;
  perspective: none;
}

/* Updated Interactive Container for Full Width Hero */
.interactive-container {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
  border: none;
  background: #000;
  line-height: 0;
  overflow: hidden;
  position: relative;
}

#model-image {
  width: 100%;
  height: auto;
  display: block;
}

.hotspot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.features-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card-compact {
  background: var(--bg-surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card-compact:hover {
  background: var(--bg-surface);
  border-color: var(--americom-blue);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-icon-sm {
  width: 28px;
  height: 28px;
  color: var(--americom-blue);
}

.feature-card-compact h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  font-family: var(--font-display);
}

.feature-card-compact p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

/* CTA Section Styles */
.cta-section {
  background: #ffffff;
  padding: 8rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-title {
  font-family: var(--font-display);
  font-size: 3.75rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.cta-text {
  color: #cbd5e1;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  background: var(--americom-blue);
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1.2rem 3.5rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(48, 63, 159, 0.4);
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(48, 63, 159, 0.6);
  background: #3949ab;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    display: block;
    text-align: center;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .cta-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .compact-features-section {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-text {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  /* Ensure the interactive container remains visible but allowed to scale */
  .interactive-container {
    min-height: auto; /* Allow image to dictate height */
  }

  #model-image {
    min-height: auto; /* Remove min-height constraint for mobile */
  }

  .detail-content {
    padding: 1.5rem;
    margin: 1rem;
  }

  .item-title {
    font-size: 1.5rem;
  }

  .detail-image-box {
    height: 180px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
  }
}

/* ─── Performance Optimizations ─── */

/* GPU composite layer for SVG hotspot animations */
.hotspot-overlay { will-change: contents; }
.hotspot-dot, .hotspot-ripple { will-change: transform, opacity; }

/* Contain footer repaints */
footer { contain: layout style; }

/* Optimise font rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}

/* Prevent scrollbar layout shift */
html { scrollbar-gutter: stable; }

/* About Section Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  /* gap: 15px; */
  width: 100%;
  height: 100%;
  /* padding: 25px; */
  overflow-y: auto;
  align-content: start;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--americom-red) rgba(255, 255, 255, 0.05);
  
  /* Performance Optimizations */
  content-visibility: auto;
  contain-intrinsic-size: 1px 5000px; /* Helps browser estimate scroll height */
  contain: paint layout; /* Contain repaints within the grid */
}

/* Watermark Overlay */
.grid-watermark {
  position: absolute;
  top: 2.5rem; /* Positioned at the top part */
  left: 50%;
  width: 90%;
  transform: translateX(-50%); /* Horizontally centered */
  pointer-events: none;
  z-index: 20;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

.grid-watermark span {
  font-family: var(--font-display);
  font-size: 1.1rem; /* Smaller, more elegant size */
  font-weight: 700;
  color: var(--americom-yellow);
  text-transform: uppercase;
  letter-spacing: 3px;
  
  /* Minimalist Gold Seal Appearance */
  background: rgba(15, 23, 42, 0.4); /* Much more transparent */
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px; /* Pill shape for a seal look */
  
  /* Delicate Gold Border */
  border: 1px solid rgba(251, 192, 45, 0.5);
  
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  line-height: 1;
}

/* Minimalist Honor Stars */
.grid-watermark span::before,
.grid-watermark span::after {
  content: "\2605"; /* Single Star on each side */
  font-size: 0.7rem;
  color: var(--americom-yellow);
  /* opacity: 0.8; */
}

/* Remove Ribbon Strike */
.grid-watermark::before {
  display: none;
}

@media (max-width: 768px) {
  .grid-watermark span {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    letter-spacing: 2px;
  }
}

.photo-grid::-webkit-scrollbar {
  width: 6px;
}

.photo-grid::-webkit-scrollbar-thumb {
  background-color: var(--americom-red);
  border-radius: 10px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background: #1e293b;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.photo-grid img:hover {
  transform: scale(1.1) rotate(2deg);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--americom-yellow);
}

@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
    padding: 15px;
  }
}

/* Utility: Hide Scrollbar but keep functionality */
.hide-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
/* ─── About Section (Home) ─── */
.about-home {
  background: linear-gradient(to bottom, var(--bg-dark), #0f172a);
  position: relative;
  padding: 100px 2rem;
  overflow: hidden;
}

.about-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
}

.about-text-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--text-primary);
}

.about-title span {
  color: var(--primary);
}

.about-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-quote {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 500;
  border-left: 4px solid var(--americom-yellow);
  padding-left: 1rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--americom-red);
  font-weight: 700;
}

.stat-item.blue h4 {
  color: var(--americom-blue);
}

.stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.about-image-side {
  flex: 1;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Decorative Blobs */
.about-blob {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.blob-1 {
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--americom-red), var(--americom-yellow));
}

.blob-2 {
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--americom-blue), var(--primary));
}

/* Responsive About Section */
@media (max-width: 1100px) {
  .about-grid {
    gap: 3rem;
  }
  .about-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 900px) {
  .about-home {
    padding: 80px 1.5rem;
  }
  .about-grid {
    flex-direction: column;
    text-align: center;
    gap: 4rem;
  }
  .about-quote {
    border-left: none;
    border-top: 2px solid var(--americom-yellow);
    padding-left: 0;
    padding-top: 1rem;
  }
  .about-stats {
    justify-content: center;
  }
  .about-image-side {
    width: 100%;
    max-width: 600px;
    height: 500px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 2.25rem;
  }
  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-image-side {
    height: 400px;
  }
}
