@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Cinzel:wght@400;700;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #5b21b6;
  --primary-dark: #4c1d95;
  --accent: #d4a017;
  --accent-dark: #b8860b;
  --dark: #1a1a2e;
  --dark-light: #252545;
  --bg-light: #f5f7fa;
  --text: #1a1a2e;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --border: #e5e7eb;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
.animate-slide-in-left { animation: slideInLeft 0.6s ease-out forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.gradient-text {
  background: linear-gradient(135deg, #5b21b6, #d4a017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  position: relative;
  z-index: 51;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.top-bar a:hover { color: var(--accent); }
.top-bar .divider { opacity: 0.5; }
.top-bar .phone-numbers { display: flex; align-items: center; gap: 1rem; }
.top-bar .support-text { display: none; }
@media (min-width: 768px) { .top-bar .support-text { display: inline; } }
.top-bar .phone-text, .top-bar .email-text { display: none; }
@media (min-width: 640px) { .top-bar .phone-text, .top-bar .email-text { display: inline; } }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  position: relative;
  z-index: 50;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7.25rem;
  gap: 1.5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-link img { height: 4.25rem; width: auto; }
.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  line-height: 1;
  display: none;
}
@media (min-width: 640px) { .logo-text { display: block; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary); }

/* Services Dropdown */
.services-dropdown {
  position: relative;
}
.services-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
  transition: color 0.3s;
}
.services-dropdown-btn:hover { color: var(--primary); }
.services-dropdown-btn svg.chevron { transition: transform 0.3s; }
.services-dropdown.open .chevron { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 16rem;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid #f3f4f6;
  padding: 1rem 0;
  animation: fadeInUp 0.2s ease-out;
}
.services-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  transition: background 0.2s;
}
.dropdown-menu a:hover { background: #f0f4f8; }
.dropdown-menu a svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.dropdown-menu a span { color: var(--text); }

.bull-img { height: 5rem; width: auto; }

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: flex; align-items: center; gap: 1rem; } }
.nav-cta .semilog-img {
  height: 5.5rem;
  width: auto;
  transition: transform 0.3s;
}
.nav-cta .semilog-img:hover {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .logo-link img { height: 4.5rem; }
}

@media (min-width: 1024px) {
  .navbar .container { justify-content: flex-start; }
  .nav-links { flex: 1; justify-content: center; }
  .logo-link img { height: 4.75rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
  font-size: 1rem;
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
}
.btn-accent:hover { background: var(--accent-dark); }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  border-radius: 9999px;
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-white {
  background: var(--white);
  color: var(--accent);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
}
.btn-white:hover { background: #f3f4f6; }
.btn-ghost {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-ghost:hover { color: var(--primary-dark); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* Mobile menu */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.mobile-toggle:hover { background: #f3f4f6; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--text);
}
.mobile-services-list {
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.mobile-services-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
  padding: 0.5rem 0;
}
.mobile-services-list svg { width: 1rem; height: 1rem; color: var(--primary); }
.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0.5rem 0;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 10rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,46,0.95), rgba(26,26,46,0.85), rgba(26,26,46,0.7));
}
.hero-blobs {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.1;
}
.hero-blob-1 {
  position: absolute;
  top: 5rem;
  right: 5rem;
  width: 24rem;
  height: 24rem;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(48px);
}
.hero-blob-2 {
  position: absolute;
  bottom: 5rem;
  right: 10rem;
  width: 18rem;
  height: 18rem;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(48px);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 200px);
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge .pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--accent); }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

.hero-description {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.hero-stats .stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
}
.hero-stats .stat-label {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Quote/Track Form Card */
.hero-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  overflow: hidden;
}
.hero-card-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.hero-card-tab {
  flex: 1;
  padding: 1rem 1.5rem;
  font-weight: 600;
  border: none;
  background: none;
  color: var(--text-gray);
  transition: all 0.3s;
  font-size: 1rem;
}
.hero-card-tab:hover { background: #f9fafb; }
.hero-card-tab.active {
  background: var(--primary);
  color: var(--white);
}
.hero-card-body { padding: 1.5rem; }
.hero-card-body form { display: flex; flex-direction: column; gap: 1rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  height: 3rem;
  padding: 0 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91,33,182,0.1);
}
.form-input-icon {
  position: relative;
}
.form-input-icon svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
}
.form-input-icon .form-input { padding-left: 2.5rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.transport-modes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.transport-mode-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 2px solid #e5e7eb;
  background: none;
  transition: all 0.2s;
}
.transport-mode-btn:hover, .transport-mode-btn.active {
  border-color: var(--primary);
  background: #f0f4f8;
}
.transport-mode-btn svg { width: 1.5rem; height: 1.5rem; color: #6b7280; }
.transport-mode-btn:hover svg, .transport-mode-btn.active svg { color: var(--primary); }
.transport-mode-btn span { font-size: 0.75rem; color: #6b7280; }
.transport-mode-btn:hover span, .transport-mode-btn.active span { color: var(--primary); }

.form-select {
  width: 100%;
  height: 3rem;
  padding: 0 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91,33,182,0.1);
}
.form-hint { font-size: 0.875rem; color: #6b7280; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== PARTNERS ===== */
.partners {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}
.partners-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .partners-grid { gap: 4rem; } }
.partner-item {
  width: 6rem;
  height: 4rem;
  background: #f3f4f6;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #9ca3af;
  transition: all 0.3s;
  cursor: pointer;
}
@media (min-width: 768px) { .partner-item { width: 8rem; height: 5rem; } }
.partner-item:hover {
  color: var(--primary);
  background: rgba(91,33,182,0.1);
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 0;
  background: var(--bg-light);
}
.section-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-badge-primary {
  background: rgba(91,33,182,0.1);
  color: var(--primary);
}
.section-badge-accent {
  background: rgba(212,160,23,0.1);
  color: var(--accent);
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 48rem;
  margin: 0 auto;
}
.text-center { text-align: center; }

.services-grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: translateY(-8px);
}
.service-card-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-card-image img { transform: scale(1.1); }
.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8), transparent);
}
.service-card-image-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-card-image-title .icon-box {
  width: 3rem;
  height: 3rem;
  background: var(--accent);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-image-title .icon-box svg { width: 1.5rem; height: 1.5rem; color: var(--white); }
.service-card-image-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card-body p {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.service-features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #374151;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.service-features li .dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 0.375rem;
  flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features {
  padding: 6rem 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .features-grid { grid-template-columns: 1fr 1fr; } }
.features-list {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .features-list { grid-template-columns: repeat(2, 1fr); } }
.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background 0.2s;
}
.feature-item:hover { background: var(--bg-light); }
.feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 1.5rem; height: 1.5rem; color: var(--white); }
.feature-item h3 { font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.875rem; color: var(--text-gray); }

.features-image-wrapper { position: relative; }
.features-image-wrapper img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
}
.features-bg-box-1 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 18rem;
  height: 18rem;
  background: rgba(91,33,182,0.2);
  border-radius: 1rem;
  z-index: 0;
}
.features-bg-box-2 {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 12rem;
  height: 12rem;
  background: rgba(212,160,23,0.2);
  border-radius: 1rem;
  z-index: 0;
}
.features-delivery-card {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  padding: 1.5rem;
  max-width: 16rem;
  z-index: 2;
}
.features-delivery-card .icon-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.features-delivery-card .check-circle {
  width: 3rem;
  height: 3rem;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-delivery-card .check-circle svg { width: 1.5rem; height: 1.5rem; color: #16a34a; }
.features-delivery-card .info h4 { font-weight: 600; color: var(--text); }
.features-delivery-card .info p { font-size: 0.875rem; color: #6b7280; }
.features-delivery-card .time-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}
.features-delivery-card .time-row svg { width: 1rem; height: 1rem; }

/* ===== STATS ===== */
.stats {
  padding: 5rem 0;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
}
.stats-bg-circles {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}
.stats .container { position: relative; z-index: 1; }
.stats-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
@media (min-width: 1024px) { .stats-title { font-size: 2.5rem; } }
.stats-subtitle {
  font-size: 1.125rem;
  color: #bfdbfe;
  max-width: 42rem;
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.2); }
.stat-card .stat-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-card .stat-icon svg { width: 2rem; height: 2rem; color: var(--white); }
.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}
@media (min-width: 1024px) { .stat-card .stat-number { font-size: 3rem; } }
.stat-card .stat-label {
  color: #bfdbfe;
  margin-top: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 0;
  background: var(--dark);
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: #9ca3af; }
.testimonial-wrapper {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}
.testimonial-quote-icon {
  position: absolute;
  top: -2rem;
  left: -2rem;
  color: rgba(91,33,182,0.2);
}
.testimonial-quote-icon svg { width: 6rem; height: 6rem; }
.testimonial-card {
  background: linear-gradient(135deg, var(--dark-light), var(--dark));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .testimonial-card { padding: 3rem; } }
.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .testimonial-content { flex-direction: row; } }
.testimonial-avatar {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  object-fit: cover;
  border: 4px solid var(--primary);
}
@media (min-width: 768px) { .testimonial-avatar { width: 8rem; height: 8rem; } }
.testimonial-text-block { text-align: center; }
@media (min-width: 768px) { .testimonial-text-block { text-align: left; } }
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  justify-content: center;
}
@media (min-width: 768px) { .testimonial-stars { justify-content: flex-start; } }
.testimonial-stars svg { width: 1.25rem; height: 1.25rem; fill: var(--accent); color: var(--accent); }
.testimonial-text {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .testimonial-text { font-size: 1.25rem; } }
.testimonial-author h4 { font-size: 1.25rem; font-weight: 600; color: var(--white); }
.testimonial-author p { color: var(--primary); }

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonial-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.testimonial-nav-btn:hover { background: var(--primary); }
.testimonial-nav-btn svg { width: 1.5rem; height: 1.5rem; }
.testimonial-dots { display: flex; align-items: center; gap: 0.5rem; }
.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.3);
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}
.testimonial-dot:hover { background: rgba(255,255,255,0.5); }
.testimonial-dot.active {
  background: var(--accent);
  width: 2rem;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  position: relative;
  overflow: hidden;
}
.cta-circle-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}
.cta-circle-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 18rem;
  height: 18rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}
.cta .container { position: relative; z-index: 1; }
.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .cta h2 { font-size: 3rem; } }
.cta p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.cta-note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
}
.footer-newsletter {
  padding: 4rem 0;
  display: grid;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 1024px) { .footer-newsletter { grid-template-columns: 1fr 1fr; } }
.footer-newsletter h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.footer-newsletter p { color: #9ca3af; margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  height: 3rem;
  padding: 0 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  color: var(--white);
  font-size: 1rem;
  outline: none;
}
.newsletter-form input::placeholder { color: #6b7280; }
.newsletter-form button {
  height: 3rem;
  padding: 0 1.5rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--accent-dark); }

.global-offices h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.offices-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .offices-grid { grid-template-columns: repeat(2, 1fr); } }
.office-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.office-item svg { width: 1rem; height: 1rem; color: var(--accent); margin-top: 0.25rem; flex-shrink: 0; }
.office-item .city { font-weight: 600; }
.office-item .address { font-size: 0.875rem; color: #9ca3af; }

.footer-main {
  padding: 3rem 0;
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) { .footer-main { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand p { color: #9ca3af; margin: 1.5rem 0; max-width: 24rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.footer-social a:hover { background: var(--primary); }
.footer-social a svg { width: 1.25rem; height: 1.25rem; }

.footer-links h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; }
.footer-links ul li { margin-bottom: 0.75rem; }
.footer-links ul li a {
  color: #9ca3af;
  transition: color 0.3s;
}
.footer-links ul li a:hover { color: var(--accent); }

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}
@media (min-width: 640px) { .footer-bottom-left { flex-direction: row; } }
.footer-bottom-left a { transition: color 0.3s; }
.footer-bottom-left a:hover { color: var(--white); }
.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) { .footer-bottom-right { flex-direction: row; } }
.footer-bottom-right .phone-links { display: flex; align-items: center; gap: 1rem; }
.footer-bottom-right a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  transition: color 0.3s;
}
.footer-bottom-right a:hover { color: var(--accent); }
.footer-bottom-right svg { width: 1rem; height: 1rem; }

/* ===== ABOUT PAGE ===== */
.page-hero {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 5rem;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .page-hero h1 { font-size: 3.75rem; } }
.page-hero p {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto;
}

.about-capabilities {
  padding: 6rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-grid h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .about-grid h2 { font-size: 2.5rem; } }
.about-grid > div > p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.about-features {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .about-features { grid-template-columns: repeat(2, 1fr); } }
.about-feature-item {
  display: flex;
  gap: 1rem;
}
.about-feature-item .icon-box {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(91,33,182,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature-item .icon-box svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.about-feature-item h3 { font-weight: 700; color: var(--text); }
.about-feature-item p { font-size: 0.875rem; color: var(--text-gray); }

.about-image-wrapper { position: relative; }
.about-image-wrapper img { border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.about-years-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--accent);
  padding: 2rem;
  border-radius: 1rem;
  display: none;
}
@media (min-width: 768px) { .about-years-badge { display: block; } }
.about-years-badge .number { font-size: 2.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.about-years-badge .label { color: var(--white); font-weight: 500; opacity: 0.9; }

.about-commitment {
  padding: 5rem 0;
  background: var(--bg-light);
}
.commitment-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  max-width: 56rem;
  margin: 0 auto;
}
.commitment-card p {
  font-size: 1.25rem;
  font-style: italic;
  color: #374151;
  line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 6rem 0; }
.contact-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { font-size: 1.875rem; font-weight: 700; color: var(--text); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
}
.contact-item .icon-box {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(91,33,182,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item .icon-box svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.contact-item h3 { font-size: 1.125rem; font-weight: 700; color: var(--text); }
.contact-item p { color: var(--text-gray); }
.contact-item .highlight { color: var(--accent); font-weight: 600; }

.contact-form-card {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  padding: 2rem;
  border: 1px solid #f3f4f6;
}
@media (min-width: 1024px) { .contact-form-card { padding: 3rem; } }
.contact-form-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; }
.contact-form-card form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91,33,182,0.1);
}
.form-group input { height: 3rem; }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-group select {
  height: 3rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}
.btn-submit {
  width: 100%;
  height: 3.5rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.3s;
}
.btn-submit:hover { background: var(--primary-dark); }

/* ===== ABL BRAND SECTION ===== */
.abl-brand {
  padding: 3rem 0;
  background: var(--white);
}
.abl-brand-img {
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(91,33,182,0.18));
}
@media (min-width: 768px) { .abl-brand-img { max-width: 360px; } }

/* ===== SVG ICONS (inline) ===== */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: middle; }

/* Admin Lock Link */
.admin-lock-link {
  color: var(--text-light);
  margin-left: 0.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.admin-lock-link:hover {
  color: var(--white);
  transform: scale(1.1);
}
.admin-lock-link.hidden-admin {
  opacity: 0.05; /* Extremely subtle, hidden for normal users */
  cursor: default;
}
.admin-lock-link.hidden-admin:hover {
  opacity: 0.8;
  cursor: pointer;
}
.admin-lock-link i, .admin-lock-link svg {
  width: 14px;
  height: 14px;
}
