/* =============================================
   MALIK COOL MASTER — style.css
   Mobile-first, flat design, no gradients
   ============================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy: #0d1f3c;
  --navy-mid: #162d52;
  --teal: #00b8a9;
  --teal-dark: #009e91;
  --white: #ffffff;
  --off-white: #f8fafc;
  --text: #0d1f3c;
  --text-muted: #5a6e82;
  --border: #e2e8f0;
  --wa-green: #25d366;
  --wa-dark: #1da851;
  --call-blue: #00b8a9;
  --call-dark: #009e91;
  --light-blue: #f0f7ff;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 4px;
  --shadow: 0 2px 16px rgba(13, 31, 60, 0.10);
  --shadow-lg: 0 10px 30px rgba(13, 31, 60, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Icons */
.lucide {
  width: 1.25em;
  height: 1.25em;
  stroke-width: 2px;
  vertical-align: middle;
}

.btn-icon {
  margin-right: 8px;
  width: 1.1em;
  height: 1.1em;
}

/* Form Styling */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 184, 169, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.inline-icon {
  margin-right: 6px;
  width: 1em;
  height: 1em;
}

.btn-nav-wa {
  background: var(--wa-green);
  color: var(--white);
  padding: 9px 18px;
  font-size: 0.875rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.btn-nav-wa:hover {
  background: var(--wa-dark);
}

/* Icons */
.lucide {
  width: 1.25em;
  height: 1.25em;
  stroke-width: 2px;
  vertical-align: middle;
}

.btn-icon {
  margin-right: 8px;
  width: 1.1em;
  height: 1.1em;
}

.inline-icon {
  margin-right: 6px;
  width: 1em;
  height: 1em;
}

/* Section header */
.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.15;
}

.section-header.light h2 {
  color: var(--white);
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

.section-header.light .section-label {
  color: var(--teal);
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-label {
  justify-content: center;
}

/* Image placeholder */
.img-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}


/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal);
  border-bottom: 1px solid var(--teal-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-img-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

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

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-text strong {
  color: var(--teal);
}

.navbar .logo-text strong {
  color: var(--navy);
}

.nav-links {
  display: none;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--navy);
}

.btn-nav-wa {
  margin-left: auto;
  display: none;
}

/* Hamburger */
.hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--teal);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  border-bottom: 1px solid var(--teal-dark);
}

.mobile-menu.open {
  max-height: 500px;
  /* Sufficient height for all menu items */
  opacity: 1;
}

.mob-link {
  padding: 13px 24px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s, background 0.2s;
}

.mob-link:hover {
  color: var(--teal);
  background: rgba(0, 184, 169, 0.06);
}

.mob-wa {
  color: var(--white) !important;
  font-weight: 700;
}


/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--white);
  padding-top: 64px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 64px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 4rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-headline em {
  font-style: normal;
  color: var(--teal);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-ctas .btn-outline {
  border-color: var(--border);
  color: var(--navy);
}

.hero-ctas .btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.hero-image-block {
  width: 100%;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--navy-mid);
}

.slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slideshow .hero-img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ticker */
.hero-ticker {
  background: var(--teal);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* =============================================
   TRUST BADGES
   ============================================= */
.trust {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-icon {
  color: var(--teal);
  flex-shrink: 0;
}

.trust-icon .lucide {
  width: 1.8rem;
  height: 1.8rem;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 72px 0;
  background: var(--white);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-img {
  width: 100%;
  height: 250px;
  border-radius: 0;
  object-fit: cover;
}

.service-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 6px;
  text-align: center;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: center;
}

.service-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-footer {
  display: flex;
  justify-content: center;
  margin-top: auto;
  /* Sticks to bottom */
  padding-top: 12px;
}

.btn-service-wa {
  background: var(--wa-green);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  /* Rounded pill shape */
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  text-align: center;
}

.btn-service-wa:hover {
  background: var(--wa-dark);
  color: var(--white);
  transform: translateY(-2px);
}


/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  background: var(--navy);
  padding: 72px 0;
}

.steps-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--teal);
  transform: rotate(90deg);
  padding: 8px 0;
}

.step {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(0, 184, 169, 0.18);
  line-height: 1;
  margin-bottom: 4px;
}

.step-icon {
  margin-bottom: 12px;
  color: var(--teal);
  display: flex;
  justify-content: center;
}

.step-icon .lucide {
  width: 2.2rem;
  height: 2.2rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.hiw-cta {
  margin-top: 40px;
  text-align: center;
}


/* =============================================
   WHATSAPP CTA BANNER
   ============================================= */
.wa-banner {
  background: var(--wa-green);
  padding: 80px 0;
}

.wa-banner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.wa-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.wa-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.6;
}

.wa-form-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(13, 31, 60, 0.15);
}

.wa-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.btn-wa-big {
  background: var(--white);
  color: var(--wa-dark);
  font-weight: 700;
  padding: 15px 28px;
  font-size: 1rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: transform 0.15s, background 0.2s;
}

.btn-wa-big:hover {
  background: var(--white);
  transform: scale(1.03);
}


/* =============================================
   REVIEWS
   ============================================= */
.reviews {
  background: var(--off-white);
  padding: 72px 0;
  overflow: hidden;
  /* Hide overflow for ticker */
}

.reviews-ticker {
  display: flex;
  margin-top: 40px;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 20px;
  animation: reviews-slide 40s linear infinite;
  width: max-content;
  align-items: stretch;
  /* Cards will be equal height, which is good for tickers */
}

/* Pause on hover */
.reviews-ticker:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviews-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  width: 320px;
  /* Fixed width for ticker items */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  /* Consistent minimum height */
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card>p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.reviewer span {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: 72px 0;
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  /* Center the list */
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--off-white);
}

.faq-q[aria-expanded="true"] {
  color: var(--teal);
  background: var(--off-white);
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* =============================================
   CONTACT + MAP
   ============================================= */
.contact {
  background: var(--off-white);
  padding: 72px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-form-wrap {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-wrap p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  color: var(--teal);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-icon .lucide {
  width: 1.3rem;
  height: 1.3rem;
}

.contact-list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-list p,
.contact-list a {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.5;
}

.contact-list a {
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--teal);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-wrap {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  display: block;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  padding: 44px 0 28px;
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer .logo-text {
  color: var(--white);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 8px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}


/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 31, 60, 0.85);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--text-muted);
  font-size: 1.5rem;
  z-index: 10;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--navy);
}

.modal-header {
  background: var(--teal);
  padding: 24px 32px;
  color: var(--white);
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.modal-body {
  padding: 32px;
}

.modal-footer {
  padding: 0 32px 32px;
}

.btn-form-submit {
  width: 100%;
  background: var(--wa-green);
  color: var(--white);
  padding: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.btn-form-submit:hover {
  background: var(--wa-dark);
}

/* Floating buttons adjustment for z-index */
.float-call, .float-wa {
  z-index: 200;
}
.float-call {
  position: fixed;
  bottom: 92px;
  /* Above WhatsApp icon (56px + 24px + 12px gap) */
  right: 20px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 184, 169, 0.3);
  transition: transform 0.2s, background 0.2s;
}

.float-call:hover {
  background: var(--teal-dark);
  transform: scale(1.08);
}

.float-wa {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, background 0.2s;
}

.float-wa:hover {
  background: var(--wa-dark);
  transform: scale(1.08);
}


/* =============================================
   RESPONSIVE — TABLET (600px+)
   ============================================= */
@media (min-width: 600px) {
  .service-card {
    width: calc(50% - 10px);
  }

  .hero-img {
    height: 300px;
  }

  .map-wrap {
    height: 380px;
  }

  .wa-banner-inner {
    grid-template-columns: 1fr 1fr;
  }
}


/* =============================================
   RESPONSIVE — DESKTOP (900px+)
   ============================================= */
@media (min-width: 900px) {

  /* Navbar */
  .nav-links {
    display: flex;
  }

  .btn-nav-wa {
    display: inline-block;
  }

  .hamburger {
    display: none;
  }

  /* Hero */
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding-bottom: 72px;
  }

  .hero-text {
    flex: 1;
  }

  .hero-image-block {
    flex: 0 0 420px;
  }

  .hero-slideshow {
    height: 380px;
    border-radius: var(--radius);
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Services */
  .service-card {
    width: calc(33.333% - 14px);
  }

  .service-img {
    height: 210px;
  }

  /* How it works */
  .steps-row {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .step {
    flex: 1;
  }

  .step-arrow {
    transform: rotate(0deg);
    padding: 0 8px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .map-wrap {
    height: 420px;
  }
}


/* =============================================
   RESPONSIVE — LARGE (1100px+)
   ============================================= */
@media (min-width: 1100px) {
  .service-card {
    width: calc(25% - 15px);
  }
}