/* =============================================
   LOCOFREIGHT – Main Stylesheet
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Barlow', sans-serif;
  font-size: 15px;
  color: #1e293b;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Variables ---------- */
:root {
  --navy: #0d1b3e;
  --blue: #1b2a8c;
  --blue-dark: #131f6b;
  --blue-light: #2541b2;
  --accent: #00b4d8;
  --accent-dark: #0096c7;
  --accent-light: #48cae4;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --shadow: 0 4px 24px rgba(13,27,62,0.14);
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* ---------- Container ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  color: var(--white);
  border-color: transparent;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--accent-dark) 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,180,216,0.35);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 16px 40px; font-size: 15px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ---------- Section Labels & Titles ---------- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
  padding-left: 36px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.section-label.light {
  color: var(--accent-light);
}
.section-label.light::before {
  background: var(--accent-light);
}
.section-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}
.section-title.light { color: var(--white); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

/* Top bar */
.header-top {
  background: var(--navy);
  padding: 8px 0;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.header-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.header-contact a,
.header-contact span {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  transition: var(--transition);
}
.header-contact a:hover { color: var(--white); }
.header-contact i, .header-social i { margin-right: 6px; color: var(--accent-light); }
.header-social { display: flex; gap: 14px; }
.header-social a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  transition: var(--transition);
}
.header-social a:hover { color: var(--accent-light); }

/* Navbar */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.site-header.scrolled .navbar {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2060 100%);
}
.site-header.scrolled .header-top { display: none; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
.nav-logo img { height: 55px; width: auto; transition: var(--transition); }
.logo-white { display: none; }
.logo-color { display: block; }

/* Transparent state (Home top) */
.site-header.is-transparent .navbar {
  background: transparent;
  box-shadow: none;
}
.site-header.is-transparent .logo-color { display: none; }
.site-header.is-transparent .logo-white { display: block; }
.site-header.is-transparent .nav-menu > li > a { color: var(--white); }
.site-header.is-transparent .nav-menu > li > a i { color: rgba(255,255,255,0.7); }
.site-header.is-transparent .header-top { 
  display: none !important; 
}
.site-header.is-transparent .navbar {
  background: transparent !important;
  box-shadow: none !important;
  padding-top: 10px;
}
.site-header.is-transparent .nav-toggle {
  background: var(--navy) !important;
  z-index: 10001 !important;
}
.site-header.is-transparent .btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* Scrolled state (Solid Navy) */
.site-header.scrolled .navbar {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2060 100%);
}
.site-header.scrolled .logo-color { display: none; }
.site-header.scrolled .logo-white { display: block; }
.site-header.scrolled .header-top { display: none; }

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 4px;
  transition: var(--transition);
}
.site-header.scrolled .nav-menu > li > a { color: rgba(255,255,255,0.85); }
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--blue);
}
.site-header.scrolled .nav-menu > li > a:hover,
.site-header.scrolled .nav-menu > li > a.active {
  color: var(--accent-light);
}
.nav-menu > li > a i { font-size: 10px; }

/* Dropdown */
.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 200;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--gray-700);
  transition: var(--transition);
}
.dropdown li a:hover {
  color: var(--blue);
  padding-left: 26px;
  background: var(--gray-50);
}

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 14px; }

/* ---- Hamburger Toggle ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  border: none;
  cursor: pointer;
  padding: 0;
  width: 48px;
  height: 48px;
  min-width: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  position: relative;
  z-index: 1100;
  visibility: visible !important;
  opacity: 1 !important;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: var(--transition);
  display: block;
}
.site-header.is-transparent .nav-toggle span,
.site-header.scrolled .nav-toggle span {
  background: var(--white);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.site-header.scrolled .nav-toggle { background: rgba(255,255,255,0.15); }
.site-header.is-transparent .nav-toggle { background: rgba(13,27,62,0.7) !important; }
.site-header .nav-toggle { background: var(--navy); }
.site-header .nav-toggle span { background: var(--white); }

/* ============================================
   HERO / SLIDER
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0; /* Remove padding to sit behind transparent header */
}
.hero-slider { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.82) 55%, rgba(10,22,40,0.3) 100%);
}
.slide .container { position: relative; z-index: 1; }
.slide-content {
  max-width: 640px;
  color: var(--white);
  animation: slideUp 0.8s ease forwards;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.slide-content h1 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.slide-content h1 span { color: var(--accent-light); }
.slide-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--blue); border-color: var(--blue); }
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }
.slider-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--accent-light); transform: scale(1.3); }

/* Hero Tabs */
.hero-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(10,22,40,0.7);
  backdrop-filter: blur(8px);
}
.tabs-row {
  display: flex;
  gap: 0;
}
.hero-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.hero-tab img { width: 24px; height: 24px; filter: brightness(0) invert(1); }
.hero-tab i { font-size: 20px; }
.hero-tab.active, .hero-tab:hover {
  color: var(--white);
  border-bottom-color: var(--accent);
  background: rgba(0,180,216,0.12);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 480px;
}
.about-img-main {
  width: 78%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 48%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}
.about-img-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  top: 24px;
  right: 0;
  width: 110px;
  z-index: 5;
}
.about-img-badge img { width: 100%; border-radius: 8px; }
.about-content { padding-right: 20px; }
.about-desc {
  color: var(--gray-500);
  line-height: 1.8;
  margin: 20px 0 28px;
  font-size: 15px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}
.about-features li i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.94) 50%, rgba(10,22,40,0.65) 100%);
}
.services .container { position: relative; z-index: 1; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.service-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
}
.service-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid transparent;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-tab i { font-size: 16px; width: 20px; }
.service-tab:hover,
.service-tab.active {
  background: rgba(0,180,216,0.15);
  border-left-color: var(--accent);
  color: var(--white);
}
.service-panel { display: none; }
.service-panel.active { display: block; }
.service-panel img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 24px;
}
.service-panel-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-panel-content p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.choose-us {
  padding: 100px 0;
  background: var(--gray-50);
}
.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.choose-left img { width: 100%; border-radius: 12px; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}
.feature-icon img { width: 26px; height: 26px; filter: brightness(0) invert(1); }
.feature-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,0.96) 50%, rgba(0,130,180,0.88) 100%);
}
.quote-section .container { position: relative; z-index: 1; }
.quote-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.quote-form { margin-top: 32px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder { color: rgba(255,255,255,0.55); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.15);
}
.quote-form .btn { margin-top: 6px; }

.quote-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-top: 88px;
}
.quote-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  margin: 0 auto 16px;
}
.quote-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.quote-card p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.6;
}
.quote-card ul { text-align: left; }
.quote-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.quote-card li i { color: var(--accent); }

/* ============================================
   PARTNERS TICKER
   ============================================ */
.partners {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 50px;
}

.partners-ticker {
  position: relative;
  width: 100%;
  padding: 40px 0;
  background: var(--gray-50);
  border-radius: 20px;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: ticker 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.partner-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px; /* Larger logos */
  height: 100px;
  padding: 10px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.partner-item img {
  max-width: 100%;
  max-height: 70px; /* Increased from 50px */
  width: auto;
  object-fit: contain;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 30px)); }
}

@media (max-width: 768px) {
  .ticker-track { gap: 40px; }
  .partner-item { width: 150px; }
  .partner-item img { max-height: 50px; }
}

/* ============================================
   AIR FREIGHT BANNER
   ============================================ */
.air-freight-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.afb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.afb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.afb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.88) 50%, rgba(10,22,40,0.4) 100%);
}
.air-freight-banner .container { position: relative; z-index: 1; }
.afb-content { max-width: 480px; }
.afb-content h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 12px 0 28px;
}
.afb-content h2 span { color: var(--accent-light); }



/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.testi-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.testi-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.testi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,0.97) 0%, rgba(0,100,180,0.88) 100%);
}
.testimonials .container { position: relative; z-index: 1; }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}
.testi-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 36px;
}
.stat-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  line-height: 1;
}
.stat-num sup { font-size: 28px; color: var(--accent); }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.testi-stars {
  margin-top: 12px;
  color: var(--accent-light);
  font-size: 18px;
  display: flex;
  gap: 4px;
}

/* Testimonial Cards */
.testi-slider { position: relative; min-height: 260px; }
.testi-card {
  display: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 36px;
  animation: fadeIn 0.5s ease;
}
.testi-card.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quote-icon {
  font-size: 32px;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.testi-card p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-light);
}
.testi-author strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}
.testi-author span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  margin-top: 2px;
}
.testi-rating {
  margin-left: auto;
  color: var(--accent-light);
  font-size: 13px;
  display: flex;
  gap: 2px;
}
.testi-controls {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testi-btn:hover, .testi-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ============================================
   BLOG
   ============================================ */
.blog { padding: 100px 0; background: var(--white); }
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.blog-nav { display: flex; gap: 10px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
  background: var(--white);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.blog-img { position: relative; overflow: hidden; height: 220px; }
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.blog-body { padding: 22px 22px 24px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.blog-meta i { color: var(--accent); }
.blog-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.4;
}
.blog-body h3 a { transition: var(--transition); }
.blog-body h3 a:hover { color: var(--blue); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-main { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 48px;
}
.footer-logo img { height: 50px; margin-bottom: 18px; }
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-badges {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-badges img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-contact-list i { color: var(--accent-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.7); }
.footer-contact-list a:hover { color: var(--accent-light); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--accent-light);
  font-size: 18px;
  line-height: 1;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.newsletter-form {
  display: flex;
  margin-top: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--white);
  font-size: 13px;
  font-family: inherit;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 12px 18px;
  background: var(--accent);
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--accent-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--accent-light); }

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 110px; /* header offset */
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,0.92) 0%, rgba(0,130,200,0.75) 100%);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-content { color: var(--white); }
.page-banner-content .section-label { color: var(--accent-light); }
.page-banner-content .section-label::before { background: var(--accent-light); }
.page-banner-content h1 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-top: 10px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: var(--accent-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 10px; }

/* ============================================
   SERVICE PAGE LAYOUT
   ============================================ */
.service-page { padding: 80px 0; }
.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.service-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.service-main h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-main p {
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 15px;
}
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: 6px;
  border-left: 3px solid var(--accent);
}
.service-list li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.service-process { margin-top: 40px; }
.service-process h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.process-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.process-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin: 0 auto 14px;
}
.process-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* Service Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  overflow: hidden;
}
.sidebar-widget-title {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
}
.sidebar-nav { padding: 8px 0; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--gray-700);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--gray-50);
  padding-left: 24px;
}
.sidebar-nav a i { font-size: 11px; color: var(--accent); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 32px 24px;
  text-align: center;
  color: var(--white);
}
.sidebar-cta i { font-size: 36px; color: var(--accent); margin-bottom: 12px; }
.sidebar-cta h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}
.sidebar-contact-item i { color: var(--accent); width: 20px; }
.sidebar-contact-item a { color: var(--gray-700); }
.sidebar-contact-item a:hover { color: var(--accent); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page { padding: 80px 0; }
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.about-page-img { position: relative; }
.about-page-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.about-page-img img.is-contained {
  height: auto;
  min-height: 400px;
  object-fit: contain;
  background: #fff;
  padding: 15px;
}
.about-page-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 22px 26px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}
.about-page-badge::before {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  animation: badgePulse 2s infinite;
  z-index: -1;
}
@keyframes badgePulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 0; }
}
.about-page-badge .num {
  font-size: 46px;
  font-weight: 900;
  font-family: 'Barlow', sans-serif;
  line-height: 1;
  color: var(--accent-light);
}
.about-page-badge .label { font-size: 12px; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 14px;
  padding: 48px 36px;
  margin-bottom: 80px;
}
.stat-item { text-align: center; color: var(--white); }
.stat-item .num {
  font-size: 48px;
  font-weight: 900;
  font-family: 'Barlow', sans-serif;
  color: var(--accent-light);
  line-height: 1;
}
.stat-item .sup-plus { font-size: 28px; color: var(--accent); }
.stat-item .label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }
.about-values { padding: 0 0 80px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.value-card {
  padding: 32px 26px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(13,27,62,0.06);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.value-icon {
  width: 54px;
  height: 54px;
  background: rgba(0,180,216,0.1);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.value-card:hover .value-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotateY(180deg);
}

.about-page .about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.about-page .about-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-page .about-features li i {
  font-size: 24px;
  color: var(--accent);
  background: rgba(0,180,216,0.1);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  transition: var(--transition);
}
.about-page .about-features li:hover i {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}
.about-page .about-features li span {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.4;
  padding-top: 4px;
}
.about-features li:nth-child(1) { transition-delay: 0.1s; }
.about-features li:nth-child(2) { transition-delay: 0.2s; }
.about-features li:nth-child(3) { transition-delay: 0.3s; }
.about-features li:nth-child(4) { transition-delay: 0.4s; }
.value-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ============================================
   TEAM PAGE
   ============================================ */
.team-page { padding: 80px 0; }
.team-intro { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.team-intro p { color: var(--gray-500); font-size: 16px; line-height: 1.8; margin-top: 14px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-social-overlay { opacity: 1; }
.team-social-overlay a {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  transition: var(--transition);
}
.team-social-overlay a:hover { background: var(--white); color: var(--accent); }
.team-info { padding: 20px 18px; text-align: center; }
.team-info h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-info span { font-size: 13px; color: var(--accent); font-weight: 500; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(4px); }
.contact-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-card p, .contact-card a {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.contact-card a:hover { color: var(--accent); }
.contact-form-box {
  background: var(--white);
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.09);
}
.contact-form-box h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-box > p { color: var(--gray-500); font-size: 14px; margin-bottom: 28px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form .form-row.full { grid-template-columns: 1fr; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-700);
  outline: none;
  transition: var(--transition);
  background: var(--gray-50);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aab; }
.map-section { margin-top: 60px; border-radius: 14px; overflow: hidden; height: 380px; box-shadow: var(--shadow); }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   FOOTER PARTNERS ROW
   ============================================ */
.footer-partners-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}
.footer-partners-row img {
  height: 28px;
  width: auto;
  opacity: 0.55;
  filter: brightness(0) invert(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { min-height: 380px; }
  .about-page-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .choose-grid { grid-template-columns: 1fr; gap: 40px; }
  .choose-left { display: none; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-right { display: none; }
  .testi-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 1024px) {
  .header-top { display: none; }
  .navbar { height: 70px; }
  .nav-inner { height: 70px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 100px 40px;
    gap: 20px;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1050;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-menu > li { width: 100%; text-align: center; }
  .nav-menu > li > a { color: var(--white) !important; font-size: 18px; padding: 12px 0; }
  .nav-menu .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    margin-top: 10px;
  }
  .nav-menu li.has-dropdown.active > .dropdown { 
    display: block !important; 
    opacity: 1 !important; 
    visibility: visible !important; 
    transform: none !important;
  }
  .nav-menu .dropdown li a { color: rgba(255,255,255,0.7); text-align: center; }
  .nav-actions .btn { display: none; }
}
  
  .hero { min-height: 100vh; }
  .slide-content { text-align: center; margin: 0 auto; }
  .slide-content h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-tabs { display: none; }
  
  .about-images { min-height: auto; }
  .about-img-secondary { display: none; }
  .about-img-main { width: 100%; }
  .about-img-main img { height: 320px; }
  .about-page-badge { right: 10px; bottom: 10px; padding: 16px 20px; }
  .about-page-badge .num { font-size: 32px; }
  
  .about-stats { grid-template-columns: 1fr; gap: 24px; padding: 40px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr !important; gap: 14px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .page-banner { height: 260px; margin-top: 70px; }
  .service-main-img { height: 260px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .slide-content h1 { font-size: 28px; }
  .section-title { font-size: 24px; }
  .section-label { font-size: 10px; letter-spacing: 2px; }
  .testi-card { padding: 24px 16px; }
  .stat-num { font-size: 38px; }
  .about-page-badge { position: relative; right: 0; bottom: 0; margin-top: 15px; width: 100%; border-radius: 12px; }
  .btn { width: 100%; justify-content: center; }
  .nav-actions .btn { display: none; } /* Hide quote btn in header on very small screens */
}
/* ============================================
   CHAT WIDGET
   ============================================ */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  font-family: 'Inter', sans-serif;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(10,22,40,0.3);
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-toggle:hover {
  transform: scale(1.05) translateY(-3px);
  background: var(--blue);
}

.notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff4d4d;
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.chat-bubble-tip {
  position: absolute;
  right: 75px;
  bottom: 10px;
  background: var(--white);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 20px 20px 0 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  animation: tipBounce 4s infinite;
}

@keyframes tipBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-5px); }
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  flex-direction: column;
  transform-origin: bottom right;
  animation: chatOpen 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-window.open { display: flex; }

@keyframes chatOpen {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.chat-header {
  background: var(--navy);
  color: var(--white);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-user { display: flex; align-items: center; gap: 12px; }

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

.chat-user-info strong { display: block; font-size: 15px; margin-bottom: 2px; }

.status-online { font-size: 12px; color: #4cd137; display: flex; align-items: center; gap: 5px; }

.status-online i { font-size: 8px; }

.chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.chat-close:hover { color: var(--white); transform: rotate(90deg); }

.chat-body {
  padding: 20px;
  background: #f8f9fa;
  flex-grow: 1;
  max-height: 400px;
  overflow-y: auto;
}

.chat-message { margin-bottom: 20px; }

.message-bubble {
  background: var(--white);
  padding: 12px 16px;
  border-radius: 4px 18px 18px 18px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.message-time { font-size: 11px; color: var(--gray-400); margin-top: 6px; margin-left: 4px; }

.chat-quick-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

.quick-action-btn {
  background: var(--white);
  border: 1px solid rgba(0,180,216,0.2);
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.quick-action-btn i { color: var(--accent); width: 16px; }

.quick-action-btn:hover {
  background: rgba(0,180,216,0.05);
  border-color: var(--accent);
  transform: translateX(5px);
}

.chat-footer {
  padding: 15px 20px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-input {
  flex-grow: 1;
  border: 1px solid var(--gray-200);
  background: #f8f9fa;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.chat-input:focus { border-color: var(--accent); background: var(--white); }

.chat-send {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,180,216,0.3);
}

.chat-send:hover { transform: scale(1.1); background: var(--blue); }

@media (max-width: 480px) {
  .chat-window { width: calc(100vw - 40px); right: -10px; }
  .chat-bubble-tip { display: none; }
}
/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 105px; /* Above the chat toggle */
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10,22,40,0.2);
}

@media (max-width: 480px) {
  .scroll-to-top { bottom: 100px; width: 40px; height: 40px; right: 20px; }
}

/* ============================================
   MAP SECTION & BADGE
   ============================================ */
.map-section {
  position: relative;
  margin-top: 60px;
  border-radius: 16px;
  overflow: hidden;
  height: 550px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 340px;
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  z-index: 10;
  animation: fadeInRight 0.8s ease-out;
}

.map-badge-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.badge-title h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.badge-title span {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.badge-status {
  background: #27ae60;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.badge-rating .stars {
  color: #f1c40f;
  font-size: 13px;
}

.badge-rating span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
}

.badge-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  border-top: 1px solid var(--gray-100);
  padding-top: 20px;
}

.info-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.info-item i {
  color: var(--accent);
  margin-top: 3px;
  width: 14px;
  text-align: center;
}

.badge-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.badge-btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10,22,40,0.2);
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 991px) {
  .map-badge {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    border-top: 1px solid var(--gray-100);
    z-index: 1;
    padding: 30px 20px;
  }
  .map-section {
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
  }
  .map-section iframe {
    height: 400px;
  }
}
