/* =========================================
   ALM SAFETY - Modern Website Stylesheet
   ========================================= */

:root {
  --primary: #1d6e3a;
  --primary-dark: #14552c;
  --primary-light: #2a9d4a;
  --accent: #25c46a;
  --dark: #0e0e0e;
  --black: #000000;
  --gray-900: #1a1a1a;
  --gray-700: #3a3a3a;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f5f7f6;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 14px;
  --radius-lg: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

/* ===== Preloader ===== */
.preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader .shield-load {
  width: 80px; height: 80px;
  border: 3px solid rgba(37, 196, 106, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Header / Navigation ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(14,14,14,0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  transition: transform var(--transition);
}
.nav-logo:hover { transform: scale(1.04); }
.nav-logo img { width: 46px; height: 46px; }
.nav-logo span {
  font-weight: 800; letter-spacing: 1px;
  color: var(--white); font-size: 18px;
}
.nav-logo span em {
  color: var(--accent); font-style: normal;
}

.nav-menu {
  display: flex; align-items: center; gap: 34px;
}
.nav-menu a {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px; font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--accent);
}
.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: var(--dark) !important;
  padding: 10px 22px !important;
  border-radius: 30px;
  font-weight: 600 !important;
  transition: all var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 196, 106, 0.35);
}

.hamburger {
  display: none; cursor: pointer;
  width: 28px; height: 22px;
  position: relative;
  background: none; border: none;
}
.hamburger span {
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background: var(--white);
  transition: 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #14552c 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-safety.jpg') center / cover no-repeat;
  opacity: 0.28;
  filter: contrast(1.1);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(37, 196, 106, 0.25), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(29, 110, 58, 0.4), transparent 50%);
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
.hero-content { color: var(--white); }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,196,106,0.15);
  border: 1px solid rgba(37,196,106,0.35);
  padding: 8px 18px; border-radius: 30px;
  font-size: 13px; font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: ''; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero h1 em {
  color: var(--accent); font-style: normal;
  position: relative; display: inline-block;
}
.hero h1 em::after {
  content: ''; position: absolute;
  bottom: 6px; left: 0; right: 0;
  height: 12px; background: rgba(37,196,106,0.18);
  z-index: -1;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600; font-size: 15px;
  cursor: pointer; border: none;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--accent); color: var(--dark);
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 196, 106, 0.4);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: var(--white); color: var(--dark);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn .arrow {
  width: 18px; height: 18px;
  transition: transform var(--transition);
}
.btn:hover .arrow { transform: translateX(4px); }

.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  animation: floatY 6s ease-in-out infinite;
}
.hero-shield {
  width: 100%; max-width: 380px;
  filter: drop-shadow(0 30px 60px rgba(37, 196, 106, 0.4));
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block;
  font-size: 2.4rem; font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Decorative shapes ===== */
.shape {
  position: absolute;
  z-index: 1;
  opacity: 0.6;
}
.shape-tl, .shape-br {
  width: 0; height: 0;
}
.shape-tl {
  top: 0; left: 0;
  border-top: 90px solid var(--primary);
  border-right: 200px solid transparent;
}
.shape-br {
  bottom: 0; right: 0;
  border-bottom: 90px solid var(--primary);
  border-left: 200px solid transparent;
}
.shape-tl-dark, .shape-br-dark {
  position: absolute; z-index: 2;
  width: 80px; height: 30px;
  background: var(--dark);
  opacity: 0.95;
}
.shape-tl-dark { top: 60px; left: 0; transform: skewX(-30deg); }
.shape-br-dark { bottom: 60px; right: 0; transform: skewX(-30deg); }

/* ===== Section Styling ===== */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-dark {
  background: var(--primary);
  color: var(--white);
}
.section-light { background: var(--gray-100); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(37,196,106,0.15);
  color: var(--primary);
  padding: 6px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.section-dark .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.section-title em {
  color: var(--primary);
  font-style: normal;
}
.section-dark .section-title em { color: var(--accent); }
.section-sub {
  font-size: 16.5px;
  color: var(--gray-500);
}
.section-dark .section-sub { color: rgba(255,255,255,0.78); }

.section-title-bar {
  display: inline-block;
  width: 70px; height: 5px;
  background: var(--dark);
  margin-top: 18px;
  border-radius: 3px;
}
.section-dark .section-title-bar { background: var(--white); }

/* ===== Page Hero (interior pages) ===== */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/logo.png') no-repeat;
  background-position: right -120px center;
  background-size: 480px;
  opacity: 0.06;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.page-hero h1 em { color: var(--accent); font-style: normal; }
.breadcrumbs {
  display: flex; gap: 10px; align-items: center;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.breadcrumbs a:hover { color: var(--accent); }

/* ===== About blocks ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { margin-bottom: 18px; color: var(--gray-700); }
.about-text p strong { color: var(--primary); }

.about-visual {
  position: relative;
  display: flex; justify-content: center;
}
.about-visual .logo-shield {
  width: 100%; max-width: 380px;
  filter: drop-shadow(0 25px 50px rgba(29, 110, 58, 0.25));
  animation: floatY 6s ease-in-out infinite;
}

.featured-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.featured-card.dark-text { color: var(--gray-900); }

/* ===== Vision/Mission Cards ===== */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.vm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.vm-card:hover::before { transform: scaleX(1); }
.vm-card .badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 18px;
}
.vm-card h3 { display: none; }
.vm-card p { color: var(--gray-700); }

/* ===== Principles Cards ===== */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.principle-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.principle-card:hover {
  background: var(--white);
  color: var(--gray-900);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.principle-card .icon-box {
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition);
}
.principle-card:hover .icon-box {
  background: var(--primary);
  transform: rotate(-8deg) scale(1.05);
}
.principle-card .icon-box svg {
  width: 32px; height: 32px;
  stroke: var(--primary);
  transition: stroke var(--transition);
}
.principle-card:hover .icon-box svg {
  stroke: var(--white);
}
.principle-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 10px;
}
.principle-card p { font-size: 14.5px; opacity: 0.85; }

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-card:hover::before { transform: scaleY(1); }

.service-card .icon-box {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--white);
  transition: transform var(--transition);
}
.service-card:hover .icon-box {
  transform: rotate(-10deg) scale(1.05);
}
.service-card .icon-box svg {
  width: 34px; height: 34px;
  stroke: var(--white); stroke-width: 1.5;
  fill: none;
}
.service-card h3 {
  font-size: 19px; font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.service-card p {
  color: var(--gray-500);
  font-size: 14.5px;
  margin-bottom: 18px;
}
.service-card .more {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.service-card:hover .more { gap: 12px; }

/* ===== Excellence Section ===== */
.excellence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.excellence-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.excellence-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.excellence-img:hover img { transform: scale(1.06); }
.excellence-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(29,110,58,0.4));
  pointer-events: none;
}

.feature-list { margin-top: 22px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
  font-size: 15.5px;
  color: var(--gray-700);
}
.feature-list .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}

/* ===== Future Vision / CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark), var(--primary-dark));
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/logo.png') no-repeat;
  background-position: right -100px center;
  background-size: 420px;
  opacity: 0.07;
}
.cta-banner .container {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  max-width: 600px;
  margin-bottom: 6px;
}
.cta-banner p {
  color: rgba(255,255,255,0.78);
  max-width: 600px;
}

/* ===== Why Safety Matters ===== */
.why-matters {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-matters::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: url('../images/logo.png') center/contain no-repeat;
  opacity: 0.05;
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.why-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 30px;
}
.why-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  transition: all var(--transition);
}
.why-stat:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-4px);
}
.why-stat strong {
  display: block; font-size: 2.4rem; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 6px;
}
.why-stat span { font-size: 13.5px; opacity: 0.85; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contact-info {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px; height: 300px;
  background: url('../images/logo.png') center/contain no-repeat;
  opacity: 0.08;
}
.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  position: relative;
}
.contact-list { position: relative; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
}
.contact-item:last-child { border-bottom: none; }
.contact-item .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-item .icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; }
.contact-item a { color: rgba(255,255,255,0.92); transition: color var(--transition); }
.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 20px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px; font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-700);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: inherit; font-size: 14.5px;
  color: var(--gray-900);
  transition: all var(--transition);
}
.form-control:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(29,110,58,0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-status {
  margin-top: 14px;
  padding: 12px; border-radius: 8px;
  font-size: 14px;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(37,196,106,0.15); color: var(--primary-dark); }
.form-status.error { background: rgba(220,38,38,0.12); color: #b91c1c; }

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: var(--accent);
}
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.footer-brand img { width: 54px; }
.footer-brand span {
  font-weight: 800; font-size: 19px; color: var(--white);
  letter-spacing: 1px;
}
.footer-brand span em { color: var(--accent); font-style: normal; }

.footer-col ul li {
  padding: 7px 0;
  font-size: 14.5px;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent); padding-left: 6px;
}
.footer-col p { font-size: 14.5px; line-height: 1.8; }

.socials {
  display: flex; gap: 12px; margin-top: 16px;
}
.socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.socials a:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
}
.socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 13.5px;
}
.footer-bottom a {
  color: var(--accent);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--white); }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  z-index: 100;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
  animation: pulseShadow 2s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6), 0 10px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 10px 30px rgba(37,211,102,0.4); }
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-40px); }
.reveal-left.visible { transform: translateX(0); }
.reveal-right { transform: translateX(40px); }
.reveal-right.visible { transform: translateX(0); }
.reveal-scale { transform: scale(0.92); }
.reveal-scale.visible { transform: scale(1); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== Particles in Hero ===== */
.particle {
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
  animation: floatParticle 15s linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-100vh) translateX(50px) scale(1.4); opacity: 0.2; }
  100% { transform: translateY(-200vh) translateX(-30px) scale(0.6); opacity: 0; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container,
  .about-grid,
  .why-grid,
  .excellence-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .hero-shield { max-width: 260px; }
  .vm-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-menu {
    position: fixed;
    top: 70px; right: -100%;
    background: var(--dark);
    width: 280px; height: calc(100vh - 70px);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .nav-menu.active { right: 0; }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .why-stats { grid-template-columns: 1fr; }
}
