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

:root {
  --blue:      #0e6bb5;
  --blue-dark: #0a4f86;
  --blue-light:#e8f2fc;
  --orange:    #f97316;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-600:  #475569;
  --gray-800:  #1e293b;
  --white:     #ffffff;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}

/* ── CONTAINER ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #ea6c0a; }

.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.15); }

.btn-white { background: var(--white); color: var(--blue-dark); }
.btn-white:hover { background: var(--blue-light); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

.btn-lg { padding: .85rem 1.8rem; font-size: 1.05rem; border-radius: 10px; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  padding-bottom: .75rem;
  gap: 1rem;
}
.logo-wrap { display: flex; align-items: center; gap: .85rem; text-decoration: none; color: inherit; }
.logo { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; }
.brand-name { display: block; font-size: 1.1rem; font-weight: 700; color: var(--blue-dark); line-height: 1.2; }
.brand-tagline { display: block; font-size: .8rem; color: var(--gray-600); }

/* ── HERO / CAROUSEL ── */
.hero {
  display: flex;
  min-height: 580px;
  overflow: hidden;
}

/* LEFT text panel */
.hero-text-panel {
  flex: 0 0 32%;
  background: linear-gradient(160deg, #0a4f86 0%, #0d6ab5 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
}
.hero-text-panel h1 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .9rem;
}
.hero-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .65rem; }

/* RIGHT carousel panel */
.hero-carousel-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

/* Slides */
.carousel-track { position: absolute; inset: 0; }
.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.carousel-slide.active { opacity: 1; }

/* Prev / Next arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.25);
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.carousel-arrow:hover { background: rgba(0,0,0,.50); border-color: var(--white); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

/* Dot indicators */
.carousel-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: .55rem;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), border-color var(--transition);
}
.carousel-dot.active {
  background: var(--white);
  border-color: var(--white);
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .hero { flex-direction: column; }
  .hero-text-panel {
    flex: none;
    padding: 2rem 1.5rem;
  }
  .hero-carousel-panel { min-height: 260px; }
  .carousel-prev { left: .5rem; }
  .carousel-next { right: .5rem; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--blue-dark);
  color: var(--white);
  padding: 1rem 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .92rem;
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-50); }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: .75rem;
  color: var(--gray-800);
}
.section-sub {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 3rem;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
}
.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--gray-800);
}
.card p { color: var(--gray-600); font-size: .95rem; line-height: 1.65; }

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.why-text > p { color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.7; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.why-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 500;
  color: var(--gray-800);
}
.why-list svg { color: var(--blue); flex-shrink: 0; }
.why-logo {
  display: flex;
  justify-content: center;
}
.why-logo img {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #0a4f86 0%, #1a85d8 100%);
  color: var(--white);
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: .75rem;
}
.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ── FOOTER ── */
.footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.75);
  padding: 2.5rem 0 1.5rem;
}
.footer-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 6px; }
.footer-brand strong { color: var(--white); font-size: 1rem; }
.footer-brand a { color: var(--orange); text-decoration: none; }
.footer-brand a:hover { text-decoration: underline; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; }
.footer-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.45); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-logo { order: -1; }
  .why-logo img { max-width: 260px; }
  .header-cta span { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 1rem 1.5rem; }
}
