@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ──────────────────────────────────────────
   RESET & ROOT
────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
  scroll-padding-top: 80px; scroll-behavior: smooth;
  list-style: none; text-decoration: none;
}

:root {
  --bg:          #F0F2F6;
  --surface:     #FFFFFF;
  --surface-2:   #E8ECF2;
  --dark:        #1B2638;
  --dark-2:      #243247;
  --border:      #D8DEE9;
  --border-dark: rgba(255,255,255,0.1);
  --accent:      #D93A1B;
  --accent-2:    #F06030;
  --accent-dim:  rgba(217,58,27,0.1);
  --accent-glow: rgba(217,58,27,0.22);
  --text:        #1B2638;
  --text-light:  #FFFFFF;
  --text-muted:  #5A6680;
  --text-faint:  #9AA3B5;
  --font-display:"Bebas Neue", sans-serif;
  --font-body:   "DM Sans", sans-serif;
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:      0 2px 16px rgba(27, 38, 56, 0.10);
  --shadow-lg:   0 8px 40px rgba(27, 38, 56, 0.16);
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

html::-webkit-scrollbar { width: 4px; }
html::-webkit-scrollbar-track { background: var(--bg); }
html::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

section { padding: 88px 120px; }

/* ──────────────────────────────────────────
   HEADER
────────────────────────────────────────── */
header {
  position: fixed;
  width: 100%; top: 0; z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 120px;
  height: 68px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(27,38,56,0.07);
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 32px; height: 32px; object-fit: contain; }
.logo p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--dark);
  line-height: 1;
}

.navbar { display: flex; align-items: center; gap: 2px; }
.navbar li { position: relative; }
.navbar a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 7px 13px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.navbar a:hover { color: var(--dark); background: var(--surface-2); }
.navbar a::after { display: none; }

#menu-icon { font-size: 22px; cursor: pointer; z-index: 110; display: none; color: var(--dark); }
header .ri-close-line { display: none; }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.home {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  overflow: hidden;
  padding-top: 68px;
}

.home-bg {
  position: absolute;
  inset: 0;
  background: url('https://i.ibb.co/yFn8PTQ2/h-W8-Tn-Od-Ju5-A.jpg') no-repeat center center / cover;
  z-index: 0;
}

.home-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(27, 38, 56, 0.92) 0%,
    rgba(27, 38, 56, 0.75) 50%,
    rgba(27, 38, 56, 0.15) 100%
  );
}

.home .text {
  position: relative;
  z-index: 2;
  padding: 80px 120px;
  max-width: 680px;
}

.text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.text .eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--accent-2);
}

.text h1 {
  font-family: var(--font-display);
  font-size: 5.2rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.text h1 span { color: var(--accent-2); }

.text .desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-phone {
  display: flex;
  flex-direction: column;
}
.hero-phone span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.hero-phone strong {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: #bf3218;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* ──────────────────────────────────────────
   STATS BAR
────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 0 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--accent);
}
.stat-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.stat-num span { color: var(--accent-2); }
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ──────────────────────────────────────────
   SERVICES
────────────────────────────────────────── */
.services {
  background: var(--bg);
}

.section-heading {
  margin-bottom: 52px;
}
.section-heading .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading .tag::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--accent);
}
.section-heading h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  color: var(--dark);
  line-height: 1.0;
}
.section-heading p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 520px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-card-img {
  width: 100%; height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  filter: saturate(0.85);
}
.service-card:hover .service-card-img img {
  transform: scale(1.04);
}
.service-card-body {
  padding: 24px;
}
.service-card-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-card-icon i {
  font-size: 20px;
  color: var(--accent);
}
.service-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.service-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ──────────────────────────────────────────
   ABOUT
────────────────────────────────────────── */
.about {
  background: var(--dark);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  position: relative;
}
.about-img-frame {
  position: absolute;
  top: -14px; left: -14px;
  right: 14px; bottom: 14px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}
.about-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  filter: saturate(0.75);
}

.about-text .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.about-text .tag::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--accent-2);
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  line-height: 1.0;
  margin-bottom: 24px;
}
.about-text p {
  color: rgba(255,255,255,0.58);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-checklist {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.about-checklist li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: var(--accent-dim);
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23D93A1B' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────
   REVIEWS
────────────────────────────────────────── */
.reviews {
  background: var(--bg);
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reviews-container .box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.reviews-container .box:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.reviews-container .box .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.reviews-container .box .stars i {
  color: var(--accent);
  font-size: 13px;
}
.reviews-container .box h2 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.reviews-container .box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.rev-img { width: 46px; height: 46px; margin-bottom: 14px; }
.rev-img img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover; object-position: center;
  border: 2px solid var(--border);
}

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.copyright {
  padding: 26px 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark);
  border-top: 3px solid var(--accent);
}
.copyright p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.copyright span {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.social { display: flex; gap: 4px; }
.social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.social a:hover {
  color: #FFFFFF;
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ──────────────────────────────────────────
   TERMS / PRIVACY PAGES
────────────────────────────────────────── */
.plain-section {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 80px;
}
.terms-block {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.terms-block h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 6px;
}
.terms-block > p:first-of-type {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.terms-block p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1280px) {
  section { padding: 72px 80px; }
  header { padding: 0 80px; }
  .copyright { padding: 24px 80px; }
  .home .text { padding: 72px 80px; }
  .stats-bar { padding: 0 80px; }
  .text h1 { font-size: 4.4rem; }
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { gap: 48px; }
  .reviews-container { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 991px) {
  section { padding: 60px 48px; }
  header { padding: 0 48px; }
  .copyright { padding: 22px 48px; }
  .home .text { padding: 60px 48px; }
  .stats-bar { padding: 0 48px; }
  .about-container { grid-template-columns: 1fr; gap: 32px; }
  .about-img-frame { display: none; }
}

@media (max-width: 768px) {
  header { padding: 0 24px; }
  section { padding: 52px 24px; }
  .copyright { padding: 20px 24px; flex-direction: column; gap: 14px; text-align: center; }
  .home .text { padding: 52px 24px; }
  .stats-bar { padding: 0 24px; grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3) { border-right: none; }

  #menu-icon { display: block; }

  header .navbar {
    position: fixed;
    top: 0; right: -100%;
    width: 260px; height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 90px 20px 40px;
    gap: 4px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(27,38,56,0.12);
  }
  header .navbar.active { right: 0; }
  .navbar a { padding: 11px 14px; display: block; font-size: 0.88rem; }

  .text h1 { font-size: 3rem; }
  .section-heading h2 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-container { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .text h1 { font-size: 2.5rem; }
  .section-heading h2 { font-size: 1.9rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 2.2rem; }
  .terms-block { padding: 28px 20px; }
}
