@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  /* Bento Grid / Refined Aesthetic Colors */
  --ch-bg: #eaece7;
  /* Soft sage/beige background */
  --ch-tomato: #ff4b01;
  --ch-yellow: #faa000;
  --ch-dark: #3e4749;
  /* Slate Grey */
  --ch-lite: #879499;
  /* Lite Slate */
  --ch-black: #1a1e1f;
  --ch-white: #ffffff;

  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  --font-main: "Inter", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--ch-bg);
  color: var(--ch-black);
  line-height: 1.5;
  padding-bottom: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Custom Backgrounds & Text Colors */
.bg-dark {
  background-color: var(--ch-dark);
  color: var(--ch-white);
}

.bg-lite {
  background-color: var(--ch-lite);
  color: var(--ch-white);
}

.bg-yellow {
  background-color: var(--ch-yellow);
  color: var(--ch-black);
}

.bg-tomato {
  background-color: var(--ch-tomato);
  color: var(--ch-white);
}

.bg-white {
  background-color: var(--ch-white);
  color: var(--ch-black);
}

.text-yellow {
  color: var(--ch-yellow);
}

.text-tomato {
  color: var(--ch-tomato);
}

.text-dark {
  color: var(--ch-dark);
}

.text-lite {
  color: var(--ch-lite);
}

/* Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  text-transform: uppercase;
}

.btn-pill:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  color: inherit;
}

.bg-dark .btn-icon {
  background: rgba(255, 255, 255, 0.1);
}

/* Layout Base */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  margin-bottom: 20px;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  opacity: 0.8;
}

.nav-link:hover {
  opacity: 1;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-card {
  border-radius: var(--radius-xl);
  padding: 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card-sm {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero-main {
  grid-column: span 12;
  min-height: 520px;
  justify-content: space-between;
}

.hero-main-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.hero-text-block {
  max-width: 450px;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.hero-title {
  font-size: 4.5rem;
  text-align: right;
  text-transform: uppercase;
  max-width: 800px;
  margin-top: auto;
  align-self: flex-end;
}

/* Hero Images / Stats */
.hero-image {
  grid-column: span 8;
  min-height: 400px;
  background: url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=2070&auto=format&fit=crop")
    center/cover no-repeat;
}

.hero-side {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-stat-1 {
  flex: 1;
  justify-content: space-between;
}

.hero-stat-2 {
  flex: 1;
  justify-content: center;
  position: relative;
}

/* Section Titles */
.section-header {
  grid-column: span 12;
  margin-top: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-title {
  font-size: 4rem;
  max-width: 700px;
}

.highlight-box {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 12px;
  transform: rotate(-2deg);
  margin-right: 15px;
}

.highlight-box.bg-yellow {
  color: var(--ch-black);
}

.highlight-box.bg-dark {
  color: var(--ch-yellow);
}

/* Services Grid */
.service-card {
  grid-column: span 4;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.service-list li i {
  color: var(--ch-yellow);
  font-size: 1.2rem;
  margin-top: 2px;
}

/* Why Us Grid */
.why-card {
  grid-column: span 6;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: var(--ch-white);
  color: var(--ch-dark);
}

.why-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Footer & CTA */
.cta-card {
  grid-column: span 12;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  margin-top: 40px;
}

.cta-card h2 {
  font-size: 4.5rem;
  margin-bottom: 30px;
  max-width: 1000px;
  margin-inline: auto;
}

.footer-block {
  grid-column: span 12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 40px 0 0;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.footer-contact {
  display: flex;
  gap: 40px;
}

.footer-contact p {
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p i {
  color: var(--ch-tomato);
  font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .cta-card h2 {
    font-size: 3.5rem;
  }

  .service-card {
    grid-column: span 6;
  }

  .hero-image {
    grid-column: span 12;
  }

  .hero-side {
    grid-column: span 12;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
    text-align: left;
  }

  .hero-main-top {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .section-title,
  .cta-card h2 {
    font-size: 2.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .service-card,
  .why-card {
    grid-column: span 12;
  }

  .hero-side {
    flex-direction: column;
  }

  .footer-block {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .footer-contact {
    flex-direction: column;
    gap: 15px;
  }
}
