/* ============================================================
   GTA Warehousing Inc. — Main Stylesheet
   Colors: Navy #1A237E | Red #CC0000 | Black #111111
   ============================================================ */

:root {
  --navy: #1A237E;
  --red: #CC0000;
  --black: #111111;
  --white: #ffffff;
  --light-bg: #f4f6f9;
  --grey: #6b7280;
  --border: #e0e3eb;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --shadow: 0 4px 24px rgba(26,35,126,0.10);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 34px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: #a00000; border-color: #a00000; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-header {
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
}
.btn-header:hover { background: #a00000; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 55px;
}
.section-header .sub-label {
  display: inline-block;
  font-family: var(--font-head);
  color: var(--red);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  text-transform: uppercase;
}
.section-header .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.section-header .divider span {
  display: block;
  height: 3px;
  background: var(--red);
}
.section-header .divider span:first-child { width: 50px; }
.section-header .divider span:last-child { width: 50px; }
.section-header .divider i { color: var(--red); font-size: 12px; }
.section-header p {
  margin-top: 16px;
  color: var(--grey);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--white); }
.topbar i { margin-right: 6px; color: var(--red); }
.topbar-right { display: flex; gap: 24px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(26,35,126,0.10);
  transition: var(--transition);
}
.site-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(26,35,126,0.16);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; gap: 4px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 3px solid transparent;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
/* Dropdown */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(26,35,126,0.13);
  border-top: 3px solid var(--red);
  z-index: 999;
  padding: 8px 0;
}
.has-dropdown:hover .dropdown { display: block; animation: fadeDown 0.2s ease; }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--black);
  border-left: 3px solid transparent;
}
.dropdown li a:hover {
  background: var(--light-bg);
  color: var(--navy);
  border-left-color: var(--red);
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== SLIDER ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 580px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,35,126,0.80) 0%, rgba(0,0,0,0.45) 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 750px;
  color: var(--white);
}
.slide-content .slide-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.slide-content h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.slide-content p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.88);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}
.slide-content .slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}
.slide.active .slide-content h2,
.slide.active .slide-content p,
.slide.active .slide-content .slide-btns {
  opacity: 1;
  transform: translateY(0);
}
/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: var(--red); transform: scale(1.3); }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,35,126,0.6);
  color: var(--white);
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--red); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* Fallback if no slides loaded */
.hero-fallback {
  height: 580px;
  background: linear-gradient(135deg, var(--navy) 60%, #CC0000 100%);
  display: flex;
  align-items: center;
  padding: 0 80px;
  color: var(--white);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-item .stat-num {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-item .stat-num span { color: var(--red); }
.stat-item p { font-size: 13px; color: rgba(255,255,255,0.75); letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--light-bg); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-top: 4px solid var(--border);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-top-color: var(--navy); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 26px;
  color: var(--navy);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--navy); color: var(--white); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-card p { color: var(--grey); font-size: 15px; }

/* ===== WHY CHOOSE US ===== */
.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image { position: relative; }
.why-image img { border-radius: 6px; box-shadow: var(--shadow); }
.why-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 6px;
  text-align: center;
  font-family: var(--font-head);
}
.why-badge .num { font-size: 36px; font-weight: 700; line-height: 1; }
.why-badge p { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.why-content .sub-label {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-head);
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.why-content h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}
.why-content > p { color: var(--grey); margin-bottom: 30px; }
.why-points { display: flex; flex-direction: column; gap: 16px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point .icon {
  min-width: 42px; height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.why-point h4 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.why-point p { color: var(--grey); font-size: 14px; }

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.industry-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.industry-item:hover { background: var(--navy); color: var(--white); transform: translateY(-4px); }
.industry-item i { font-size: 32px; color: var(--red); margin-bottom: 14px; display: block; }
.industry-item:hover i { color: var(--white); }
.industry-item h4 {
  font-family: var(--font-head);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1557 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="rgba(204,0,0,0.05)"/></svg>') center/cover;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 44px);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 36px; position: relative; }
.cta-section .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  background: var(--light-bg);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,35,126,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 32px; }

/* ===== CONTACT ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-detail .icon {
  min-width: 46px; height: 46px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-detail h4 { font-family: var(--font-head); font-size: 14px; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { color: var(--grey); font-size: 15px; }
.contact-detail a:hover { color: var(--red); }
.contact-map { margin-top: 24px; border-radius: 6px; overflow: hidden; }
.contact-map iframe { width: 100%; height: 220px; border: 0; }

/* Contact Form */
.contact-form { background: var(--light-bg); padding: 40px; border-radius: 6px; }
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.alert {
  padding: 14px 20px;
  border-radius: 3px;
  margin-bottom: 20px;
  font-size: 14px;
}
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert-error { background: #fee2e2; color: #991b1b; border-left: 4px solid var(--red); }

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img { border-radius: 6px; overflow: hidden; }
.about-img img { width: 100%; }
.about-text .sub-label {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-head);
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-text p { color: var(--grey); margin-bottom: 16px; }
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}
.mv-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 28px;
  border-top: 4px solid var(--navy);
  box-shadow: var(--shadow);
}
.mv-card.red-top { border-top-color: var(--red); }
.mv-card i { font-size: 32px; color: var(--navy); margin-bottom: 16px; }
.mv-card.red-top i { color: var(--red); }
.mv-card h3 { font-family: var(--font-head); font-size: 20px; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.mv-card p { color: var(--grey); }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1557 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.page-banner h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 52px);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.75); }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--red); }

/* ===== FOOTER ===== */
.site-footer { background: #0c1240; color: rgba(255,255,255,0.80); }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo { height: 50px; margin-bottom: 18px; }
.footer-col p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.70); }
.tagline-footer { color: rgba(255,255,255,0.55) !important; font-style: italic; margin-top: 10px; }
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul li a i { color: var(--red); margin-right: 6px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.70); font-size: 14px; }
.contact-list li i { color: var(--red); margin-top: 4px; min-width: 14px; }
.contact-list li a { color: rgba(255,255,255,0.70); }
.contact-list li a:hover { color: var(--white); }
.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: var(--red); }
.footer-bottom a:hover { color: #ff4444; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--red);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(204,0,0,0.4);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 4px; box-shadow: 0 0 40px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-wrapper, .about-intro { grid-template-columns: 1fr; }
  .why-badge { right: 0; bottom: -10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .main-nav { display: none; position: fixed; inset: 0; background: var(--white); flex-direction: column; justify-content: center; align-items: center; z-index: 999; }
  .main-nav.open { display: flex; }
  .main-nav > ul { flex-direction: column; align-items: center; gap: 8px; }
  .main-nav > ul > li > a { font-size: 18px; padding: 12px 20px; }
  .has-dropdown .dropdown { position: static; display: none !important; box-shadow: none; border: none; text-align: center; }
  .hamburger { display: flex; z-index: 1000; }
  .btn-header { display: none; }
  .slide-content { padding: 0 30px; }
  .hero-slider { height: 420px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .mission-vision { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CORPORATE INFO SECTION ===== */
.corp-section {
  background: var(--light-bg);
  padding: 90px 0;
}
.corp-header-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.corp-header-block .corp-icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--white);
  flex-shrink: 0;
}
.corp-header-block h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
}
.corp-header-block h2 span { color: var(--red); }
.corp-header-block p { color: var(--grey); font-size: 14px; margin-top: 4px; }

.corp-table-wrap {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.08);
  overflow: hidden;
  margin-bottom: 36px;
}
.corp-table-title {
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.corp-table-title i { color: var(--red); font-size: 16px; }
.corp-info-table { width: 100%; border-collapse: collapse; }
.corp-info-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.corp-info-table td {
  padding: 16px 24px;
  font-size: 15px;
  vertical-align: top;
}
.corp-info-table td:first-child {
  width: 240px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  background: rgba(26,35,126,0.03);
  border-right: 2px solid var(--border);
}
.corp-info-table td:last-child { color: var(--black); }
.corp-info-table tr:hover td { background: rgba(26,35,126,0.02); }

/* Directors cards */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 4px;
}
.director-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,35,126,0.08);
  border-top: 4px solid var(--navy);
  transition: var(--transition);
}
.director-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(26,35,126,0.14); }
.director-card:nth-child(2) { border-top-color: var(--red); }
.director-card-head {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.director-avatar {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}
.director-card:nth-child(2) .director-avatar { background: var(--red); }
.director-name {
  font-family: var(--font-head);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}
.director-card:nth-child(2) .director-name { color: var(--red); }
.director-role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
}
.director-details {
  padding: 18px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.director-detail-row {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--grey);
  align-items: flex-start;
}
.director-detail-row i { color: var(--navy); margin-top: 3px; min-width: 14px; }
.director-card:nth-child(2) .director-detail-row i { color: var(--red); }
.director-detail-row strong { color: var(--black); display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.badge-canadian {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #d1fae5;
  color: #065f46;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-canadian i { font-size: 10px; }

.corp-notice {
  background: var(--white);
  border-radius: 8px;
  padding: 22px 28px;
  border-left: 4px solid var(--navy);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(26,35,126,0.06);
}
.corp-notice i { color: var(--navy); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.corp-notice p { color: var(--grey); font-size: 14px; line-height: 1.7; }
.corp-notice strong { color: var(--navy); }

@media (max-width: 768px) {
  .corp-info-table td:first-child { width: 130px; font-size: 11px; }
  .corp-info-table td { padding: 12px 14px; font-size: 14px; }
  .directors-grid { grid-template-columns: 1fr; }
}
