:root {
  --primary: #003a5d;
  --primary-dark: #02263d;
  --accent: #f59e0b;
  --bg: #f5f7fb;
  --text: #1f2933;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

.site-header {
  background: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  border: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  /* background: linear-gradient(135deg, #0284c7, #38bdf8); */
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text .name {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text .tagline {
  font-size: 0.75rem;
  opacity: 0.85;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #e5f4ff;
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--primary-dark);
}

.hero-text p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary {
  background: var(--accent);
  color: #111827;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-outline {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #111827;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slider {
  margin-top: 2.5rem;
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.slider-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  min-height: 260px;
}

.slider-left {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
}

.slider-title {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.slider-desc {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.slider-cta {
  margin-top: 1.1rem;
}

.slider-cta a {
  font-size: 0.85rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.slider-cta a:hover {
  text-decoration: underline;
}

.slider-controls {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-dots {
  display: flex;
  gap: 0.35rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d1d5db;
  border: none;
  cursor: pointer;
}

.slider-dot.active {
  width: 18px;
  background: var(--accent);
}

.slider-buttons {
  display: flex;
  gap: 0.4rem;
}

.slider-btn {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.slider-btn:hover {
  background: #e5e7eb;
}

.slider-right {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at top left,
    #0ea5e9,
    #0369a1 45%,
    #020617
  );
}

.slider-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.service-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.service-card p {
  font-size: 0.87rem;
  color: #4b5563;
}

.service-card a {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.service-hero {
  margin-top: 2rem;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.breadcrumb {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.service-hero h1 {
  margin: 0.2rem 0 0.6rem;
  font-size: 1.6rem;
  color: var(--primary-dark);
}

.service-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

.contact-card {
  margin-top: 2rem;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.contact-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.6rem;
}

.site-footer {
  background: var(--primary-dark);
  color: #e5f4ff;
  padding: 1.2rem 1rem;
  font-size: 0.8rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* About Us page styles */
.page-hero {
  margin-top: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.page-intro {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.6;
}

.about-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.about-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #0284c7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.about-card h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: 0 0 1rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.why-us-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.15);
}

.why-us-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.why-us-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.why-us-card h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin: 0;
}

.why-us-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

.cta-section {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, var(--primary), #0284c7);
  border-radius: 1.25rem;
  padding: 3rem 2rem;
  text-align: center;
  color: #ffffff;
}

.cta-content h2 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
  color: #ffffff;
}

.cta-content p {
  font-size: 1.05rem;
  margin: 0 0 1.75rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--accent);
  color: #111827;
}

.cta-buttons .btn-outline {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 800px) {
  .hero,
  .slider-inner,
  .contact-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    display: none;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .about-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-section {
    padding: 2rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }
}
