*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

a {
  color: inherit;
  text-decoration: none
}

ul,
ol {
  list-style: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

input,
select,
textarea {
  font-family: inherit
}

:root {
  --black: #111111;
  --dark: #1a1a1a;
  --orange: #ff5500;
  --orange-dk: #e04c00;
  --orange-lt: #ff7a38;
  --wa: #25d366;
  --wa-dk: #1aab52;
  --white: #ffffff;
  --gray-50: #f9f9f9;
  --gray-100: #f3f3f3;
  --gray-200: #e8e8e8;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .10);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .14);
  --shadow-orange: 0 6px 24px rgba(255, 85, 0, .28);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --ease: .22s cubic-bezier(.4, 0, .2, 1);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap
}

/* ─── TYPOGRAPHY ─────────────────────────────────── */
.headline-xl {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em
}

.headline-lg {
  font-size: clamp(1.7rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em
}

.headline-md {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em
}

.headline-sm {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3
}

.body-lg {
  font-size: 1.075rem;
  line-height: 1.72
}

.body-sm {
  font-size: .875rem;
  line-height: 1.65
}

.label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .78rem 1.6rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: .9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  line-height: 1
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--r-md)
}

.btn-full {
  width: 100%
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: var(--shadow-orange)
}

.btn-orange:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 85, 0, .38)
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa)
}

.btn-wa:hover {
  background: var(--wa-dk);
  border-color: var(--wa-dk);
  transform: translateY(-2px)
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4)
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .7)
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange)
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff
}

/* ─── SECTION HELPERS ────────────────────────────── */
.section {
  padding: 5rem 0
}

.section-sm {
  padding: 3.5rem 0
}

.section-dark {
  background: var(--black);
  color: #fff
}

.section-gray {
  background: var(--gray-50)
}

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem
}

.section-title {
  font-weight: 800;
  color: #111;
  letter-spacing: -.025em
}

.section-dark .section-title {
  color: #fff
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1rem;
  margin-top: .6rem;
  line-height: 1.7;
  max-width: 560px
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, .6)
}

/* ─── HEADER / NAV ───────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(17, 17, 17, .96);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--orange);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0
}

.nav-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #fff;
  padding: 3px;
  object-fit: contain
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1
}

.brand-tag {
  font-size: .62rem;
  color: var(--orange-lt);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase
}

.nav-links {
  display: none
}

@media(min-width:1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: .2rem
  }

  .nav-link {
    display: block;
    padding: .45rem .9rem;
    border-radius: 6px;
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
    font-weight: 500;
    transition: var(--ease)
  }

  .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08)
  }
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: .6rem
}

.nav-cta .btn {
  padding: .5rem 1rem;
  font-size: .82rem
}

.nav-phone-text {
  display: none
}

@media(min-width:640px) {
  .nav-phone-text {
    display: inline
  }
}

/* Hamburger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
  background: none;
  border: none
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--ease)
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.burger.open span:nth-child(2) {
  opacity: 0
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

@media(min-width:1024px) {
  .burger {
    display: none
  }
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--dark);
  border-top: 1px solid rgba(255, 85, 0, .25);
  padding: 1rem 0 1.5rem
}

.mobile-nav.open {
  display: block
}

.mobile-nav a {
  display: block;
  padding: .75rem 1.5rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: var(--ease)
}

.mobile-nav a:hover {
  color: var(--orange);
  padding-left: 2rem
}

.mobile-nav-btns {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.25rem 1.5rem 0
}

/* ─── HERO ───────────────────────────────────────── */
#home {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hawa-mahal-hero.jpg') center center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
  will-change: transform;
}

#home:hover .hero-bg {
  transform: scale(1.0)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 5, 2, .82) 0%,
      rgba(20, 10, 0, .65) 45%,
      rgba(255, 85, 0, .18) 100%);
  pointer-events: none
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  padding: 5rem 0 6rem;
}

@media(min-width:768px) {
  .hero-inner {
    padding: 7rem 0 8rem
  }
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(37, 211, 102, .15);
  border: 1px solid rgba(37, 211, 102, .35);
  color: #2dda6e;
  padding: .38rem 1rem;
  border-radius: 99px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .03em;
  backdrop-filter: blur(6px);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dda6e;
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

.hero-location-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 85, 0, .18);
  border: 1px solid rgba(255, 85, 0, .45);
  color: var(--orange-lt);
  padding: .3rem .85rem;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.hero-vibes {
  font-size: clamp(.9rem, 2.2vw, 1.15rem);
  font-weight: 700;
  color: rgba(255, 200, 100, .88);
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: -.3rem;
}

.hero-vibes::before,
.hero-vibes::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: rgba(255, 200, 100, .5)
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.04em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, .6);
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  color: var(--orange);
  display: inline-block
}

.hero h1 .city {
  display: block;
  background: linear-gradient(90deg, #ff5500, #ff9a56);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-bottom: 2.75rem
}

/* Trust items */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(2px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .78)
}

.trust-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 85, 0, .2);
  border: 1px solid rgba(255, 85, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .45);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: float-y 2s ease-in-out infinite;
  z-index: 2;
}

.hero-scroll-arrow {
  font-size: 1rem;
  animation: bounce-y 1.5s ease-in-out infinite
}

@keyframes float-y {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(-5px)
  }
}

@keyframes bounce-y {

  0%,
  100% {
    transform: translateY(0);
    opacity: .5
  }

  50% {
    transform: translateY(6px);
    opacity: 1
  }
}

/* ─── STATS BAR ──────────────────────────────────── */
#stats {
  background: var(--orange);
  padding: 1.5rem 0
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center
}

@media(min-width:640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: .25rem
}

.stat-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .82);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase
}

/* ─── ABOUT ──────────────────────────────────────── */
#about {
  background: #fff;
  padding: 5rem 0
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center
}

@media(min-width:1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr
  }
}

.about-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--orange);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: var(--r-md);
  font-size: .82rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25)
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem
}

.value-card {
  padding: 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  transition: var(--ease)
}

.value-card:hover {
  border-color: rgba(255, 85, 0, .3);
  background: #fff;
  box-shadow: var(--shadow-sm)
}

.value-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: .1rem
}

.value-title {
  font-size: .82rem;
  font-weight: 700;
  color: #111;
  margin-bottom: .15rem
}

.value-desc {
  font-size: .75rem;
  color: var(--gray-600);
  line-height: 1.5
}

/* ─── HOW IT WORKS ───────────────────────────────── */
#how-it-works {
  background: var(--gray-50);
  padding: 5rem 0
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem
}

@media(min-width:640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .steps-grid {
    grid-template-columns: repeat(5, 1fr)
  }
}

.step-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--gray-200);
  text-align: center;
  position: relative;
  transition: var(--ease)
}

.step-card:hover {
  border-color: rgba(255, 85, 0, .35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 16px rgba(255, 85, 0, .3)
}

.step-title {
  font-size: .95rem;
  font-weight: 700;
  color: #111;
  margin-bottom: .4rem
}

.step-desc {
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.6
}

/* connector */
@media(min-width:1024px) {
  .step-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--gray-400);
    z-index: 1
  }
}

/* ─── SERVICES ───────────────────────────────────── */
#services {
  background: #fff;
  padding: 5rem 0
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem
}

@media(min-width:640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.service-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--ease)
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 85, 0, .3)
}

.sc-img {
  height: 195px;
  overflow: hidden;
  position: relative;
  background: var(--gray-100)
}

.sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.service-card:hover .sc-img img {
  transform: scale(1.06)
}

.sc-badge {
  position: absolute;
  top: .875rem;
  left: .875rem;
  background: var(--orange);
  color: #fff;
  padding: .3rem .7rem;
  border-radius: 99px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em
}

.sc-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column
}

.sc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
  margin-bottom: .5rem
}

.sc-desc {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem
}

.sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200)
}

.sc-min {
  font-size: .72rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .3rem
}

.sc-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: var(--ease)
}

.sc-link:hover {
  color: var(--orange)
}



/* ─── INQUIRY / BOOKING ──────────────────────────── */
#inquiry {
  background: var(--gray-50);
  padding: 5rem 0
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start
}

@media(min-width:1024px) {
  .inquiry-grid {
    grid-template-columns: 1fr 1fr
  }
}

.inquiry-info {}

.inquiry-info h2 {
  margin-bottom: .75rem
}

.inquiry-ctas {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-top: 2rem
}

.inquiry-cta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--gray-200);
  transition: var(--ease)
}

.inquiry-cta-item:hover {
  border-color: rgba(255, 85, 0, .3);
  box-shadow: var(--shadow-sm)
}

.inquiry-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem
}

.icon-orange {
  background: rgba(255, 85, 0, .1)
}

.icon-green {
  background: rgba(37, 211, 102, .1)
}

.inquiry-cta-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: .1rem
}

.inquiry-cta-text span {
  font-size: .8rem;
  color: var(--gray-600)
}

/* Booking form card */
.booking-form-card {
  background: #fff;
  border-radius: var(--r-xl);
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-orange);
  overflow: hidden
}

.booking-form-header {
  background: var(--orange);
  padding: 1.25rem 1.75rem;
  color: #fff
}

.booking-form-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .2rem
}

.booking-form-header p {
  font-size: .78rem;
  opacity: .82
}

.booking-form-body {
  padding: 1.75rem
}

.form-group {
  margin-bottom: 1rem
}

.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: .4rem
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .78rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: .875rem;
  color: #111;
  background: #fff;
  outline: none;
  transition: var(--ease)
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, .1)
}

.form-textarea {
  resize: vertical;
  min-height: 90px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .875rem
}

.honeypot {
  display: none !important
}

/* ─── TRUST SECTION ──────────────────────────────── */
#trust {
  background: #fff;
  padding: 5rem 0
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem
}

@media(min-width:640px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(min-width:1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.trust-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  transition: var(--ease)
}

.trust-card:hover {
  border-color: rgba(255, 85, 0, .3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: #fff
}

.trust-emoji {
  font-size: 2rem;
  margin-bottom: .75rem;
  line-height: 1
}

.trust-title {
  font-size: .9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: .3rem
}

.trust-desc {
  font-size: .78rem;
  color: var(--gray-600);
  line-height: 1.55
}

/* ─── BLOGS ──────────────────────────────────────── */
#blogs {
  background: var(--gray-50);
  padding: 5rem 0
}

.blogs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem
}

@media(min-width:640px) {
  .blogs-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.blog-card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--ease)
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 85, 0, .25)
}

.blog-thumb {
  height: 175px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.blog-thumb-icon {
  font-size: 3.5rem;
  opacity: .15
}

.blog-label {
  position: absolute;
  top: .875rem;
  left: .875rem;
  background: var(--orange);
  color: #fff;
  padding: .28rem .7rem;
  border-radius: 99px;
  font-size: .68rem;
  font-weight: 700
}

.blog-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column
}

.blog-date {
  font-size: .72rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .6rem
}

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: .65rem
}

.blog-excerpt {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem
}

.blog-read {
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .35rem
}

/* ─── CONTACT ────────────────────────────────────── */
#contact {
  background: var(--black);
  padding: 5rem 0
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem
}

@media(min-width:1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr
  }
}

.contact-info {}

.contact-info h2 {
  color: #fff;
  margin-bottom: .75rem
}

.contact-info p {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 2rem
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem
}

.contact-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 85, 0, .15);
  border: 1px solid rgba(255, 85, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0
}

.contact-item-text strong {
  display: block;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: .15rem
}

.contact-item-text a {
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  transition: var(--ease)
}

.contact-item-text a:hover {
  color: var(--orange)
}

/* Map embed */
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 320px;
  border: 2px solid rgba(255, 85, 0, .3)
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: #080808;
  color: rgba(255, 255, 255, .55);
  border-top: 3px solid var(--orange);
  padding: 3.5rem 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem
}

@media(min-width:640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr
  }
}

.footer-brand {}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .875rem
}

.footer-logo-wrap img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #fff;
  padding: 3px;
  object-fit: contain
}

.footer-brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.72;
  margin-bottom: 1.25rem
}

.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 85, 0, .12);
  border: 1px solid rgba(255, 85, 0, .25);
  padding: .45rem .875rem;
  border-radius: 99px;
  font-size: .78rem;
  color: var(--orange);
  font-weight: 700
}

.footer-heading {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .55rem
}

.footer-links a {
  font-size: .83rem;
  color: rgba(255, 255, 255, .55);
  transition: var(--ease);
  padding-left: .75rem;
  border-left: 2px solid transparent
}

.footer-links a:hover {
  color: var(--orange);
  border-color: var(--orange);
  padding-left: 1.1rem
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .875rem
}

.fci {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 85, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .1rem
}

.footer-contact-line span {
  font-size: .83rem;
  color: rgba(255, 255, 255, .55)
}

.footer-contact-line a {
  color: rgba(255, 255, 255, .75)
}

.footer-contact-line a:hover {
  color: var(--orange)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-size: .78rem
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem
}

.footer-legal a {
  color: rgba(255, 255, 255, .5)
}

.footer-legal a:hover {
  color: var(--orange)
}

.footer-region {
  color: rgba(255, 255, 255, .35);
  font-size: .72rem
}

/* ─── MOBILE STICKY BAR ──────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  display: flex;
  background: #fff;
  border-top: 2px solid var(--orange);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .14)
}

@media(min-width:769px) {
  .sticky-bar {
    display: none
  }
}

body {
  padding-bottom: 64px
}

@media(min-width:769px) {
  body {
    padding-bottom: 0
  }
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  padding: .7rem .25rem;
  font-size: .65rem;
  font-weight: 700;
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--ease);
  text-decoration: none;
  color: #111;
  line-height: 1.2
}

.sticky-btn .sbi {
  font-size: 1.25rem;
  line-height: 1
}

.sticky-call {
  border-right: 1px solid var(--gray-200)
}

.sticky-wa {
  background: var(--wa);
  color: #fff
}

.sticky-book {
  background: var(--orange);
  color: #fff
}

/* ─── FLOATING CALLBACK ──────────────────────────── */
.callback-fab {
  position: fixed;
  z-index: 799;
  bottom: 72px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--black);
  color: #fff;
  border: 2px solid var(--orange);
  border-radius: 99px;
  padding: .65rem 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(255, 85, 0, .3);
  transition: var(--ease);
  white-space: nowrap
}

.callback-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 85, 0, .45)
}

@media(min-width:769px) {
  .callback-fab {
    bottom: 24px;
    right: 24px
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa);
  animation: pulse-ring 2s infinite;
  flex-shrink: 0
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6)
  }

  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

/* ─── MODALS ─────────────────────────────────────── */
.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem
}

.modal-bg.open {
  display: flex;
  animation: fade-in .2s ease
}

@keyframes fade-in {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal-box {
  background: #fff;
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 460px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 32px 64px rgba(0, 0, 0, .3);
  animation: slide-up .25s ease
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  color: var(--gray-600)
}

.modal-close:hover {
  background: var(--gray-200)
}

.modal-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111;
  margin-bottom: .4rem
}

.modal-lead {
  font-size: .85rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6
}

.exit-modal .modal-box {
  text-align: center;
  padding: 2.5rem
}

.exit-badge {
  display: inline-block;
  background: rgba(255, 85, 0, .1);
  color: var(--orange);
  border: 1px solid rgba(255, 85, 0, .25);
  padding: .3rem .875rem;
  border-radius: 99px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .875rem
}

.exit-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111;
  margin-bottom: .6rem
}

.exit-sub {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem
}

.exit-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem
}

/* ─── SCROLL ANIMATIONS ──────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

.fade-delay-1 {
  transition-delay: .1s
}

.fade-delay-2 {
  transition-delay: .2s
}

.fade-delay-3 {
  transition-delay: .3s
}

.fade-delay-4 {
  transition-delay: .4s
}

/* ─── RESPONSIVE HELPERS ─────────────────────────── */
@media(max-width:639px) {
  .section {
    padding: 3.5rem 0
  }

  .about-values {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }
}
