@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --primary: #7b002b;
  --primary-dark: #52001d;
  --primary-light: #a30b45;

  --gold: #c98b24;
  --gold-light: #e4b45b;
  --gold-pale: #f7ecd5;

  --cream: #faf6ed;
  --cream-dark: #f1e7d4;

  --white: #ffffff;
  --black: #111111;
  --text: #242424;
  --muted: #6d6d6d;

  --border: #e8e1d6;

  --shadow-sm: 0 4px 15px rgba(60, 20, 30, 0.06);
  --shadow-md: 0 12px 35px rgba(60, 20, 30, 0.10);
  --shadow-lg: 0 22px 55px rgba(60, 20, 30, 0.14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--white);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: var(--primary);
  color: var(--white);
}

/* Container */

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

/* Section */

.section {
  padding: 90px 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
}

.section-title span {
  color: var(--gold);
}

/* Buttons */

.btn {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(123, 0, 43, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(201, 139, 36, 0.22);
}

.btn-gold:hover {
  background: #ad7315;
  transform: translateY(-2px);
}

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

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

/* Card */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Focus */

:focus-visible {
  outline: 3px solid rgba(201, 139, 36, 0.35);
  outline-offset: 3px;
}

/* Mobile */

@media (max-width: 768px) {

  .section {
    padding: 60px 0;
  }

  .container {
    width: min(92%, 560px);
  }

  .section-title {
    font-size: 32px;
  }

  .btn {
    min-height: 50px;
  }
}/* ================================
   HEADER
================================ */

.site-header {
  width: 100%;
  height: 86px;
  background: #ffffff;
  border-bottom: 1px solid #eee7dd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  width: min(92%, 1240px);
  height: 100%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

/* BRAND */

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

.brand-symbol {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  background: linear-gradient(
    135deg,
    #7b002b,
    #c98b24
  );

  color: white;
  border-radius: 10px;

  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  color: #7b002b;
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1;
}

.brand-text span {
  margin-top: 4px;
  color: #222;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

/* NAVIGATION */

.main-navigation {
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-navigation a {
  position: relative;

  color: #252525;
  font-size: 13px;
  font-weight: 600;

  padding: 30px 0;
}

.main-navigation a::after {
  content: "";

  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;

  height: 2px;

  background: #c98b24;

  transition: right 0.2s ease;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
  right: 0;
}

/* HEADER CONTACT */

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phones {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.header-phones a {
  display: flex;
  align-items: center;
  gap: 5px;

  color: #7b002b;
  font-size: 10px;
  font-weight: 700;
}

.header-whatsapp {
  min-height: 42px;
  padding: 0 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  background: #7b002b;
  color: white;

  border-radius: 7px;

  font-size: 11px;
  font-weight: 700;

  transition: 0.2s ease;
}

.header-whatsapp:hover {
  background: #52001d;
  transform: translateY(-2px);
}

/* MOBILE HEADER */

.mobile-header {
  display: none;
}

/* ================================
   TABLET
================================ */

@media (max-width: 1050px) {

  .main-navigation {
    gap: 16px;
  }

  .main-navigation a {
    font-size: 12px;
  }

  .header-phones {
    display: none;
  }

}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

  .site-header {
    display: none;
  }

  .mobile-header {
    height: 64px;
    width: 100%;

    padding: 8px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid #eee7dd;

    position: sticky;
    top: 0;
    z-index: 100;

    backdrop-filter: blur(12px);
  }

  .mobile-brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-brand-symbol {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: linear-gradient(
      135deg,
      #7b002b,
      #c98b24
    );

    color: white;

    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
  }

  .mobile-brand strong,
  .mobile-brand span {
    display: block;
  }

  .mobile-brand strong {
    color: #7b002b;
    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1;
  }

  .mobile-brand span {
    margin-top: 3px;
    color: #555;
    font-size: 7px;
    letter-spacing: 1px;
  }

  .mobile-call-button {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f7ecd5;
    color: #7b002b;
  }

}

/* ================================
   CLIENT LOGO
================================ */

.brand-logo-image {
  width: 245px;
  height: auto;
  object-fit: contain;
}

.brand-logo-image {
  width: 205px;
  height: 52px;
  object-fit: contain;
  object-position: right center;
  display: block;
}

.mobile-brand-image {
  width: 155px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ================================
   HERO PREPARATION
================================ */

.hero-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

@media (max-width: 768px) {

  .mobile-brand-image {
    width: 150px;
  }

}

/* =========================================
   HERO SECTION
========================================= */

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(201, 139, 36, 0.16),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #fffdf8 0%,
      #faf6ed 55%,
      #f4e8d4 100%
    );
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(123, 0, 43, 0.05);
  top: -220px;
  right: -100px;
}

.hero-container {
  width: min(92%, 1240px);
  min-height: 650px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 60px;

  padding: 70px 0;
}

/* HERO CONTENT */

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 8px 13px;
  margin-bottom: 20px;

  border: 1px solid rgba(201, 139, 36, 0.35);
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.65);

  color: #7b002b;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.hero-content h1 {
  max-width: 650px;

  color: #7b002b;

  font-family: "Playfair Display", Georgia, serif;

  font-size: clamp(48px, 5vw, 72px);

  line-height: 1.02;
  letter-spacing: -2px;
}

.hero-content h1 span {
  display: block;
  color: #c98b24;
}

.hero-subtitle {
  margin-top: 22px;

  color: #252525;

  font-size: 21px;
  font-weight: 700;
}

.hero-description {
  max-width: 570px;

  margin-top: 14px;

  color: #686868;

  font-size: 15px;
  line-height: 1.75;
}

/* BUTTONS */

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

  margin-top: 30px;
}

.hero-buttons .btn {
  min-height: 52px;
}

/* TRUST */

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;

  margin-top: 34px;
  padding-top: 24px;

  border-top: 1px solid rgba(123, 0, 43, 0.12);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;

  color: #7b002b;
}

.hero-trust-item div {
  display: flex;
  flex-direction: column;
}

.hero-trust-item strong {
  font-size: 11px;
}

.hero-trust-item span {
  margin-top: 2px;

  color: #777;

  font-size: 9px;
}

/* HERO VISUAL */

.hero-visual {
  position: relative;
  min-height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  width: min(100%, 520px);
  height: 440px;

  overflow: hidden;

  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(123, 0, 43, 0.95),
      rgba(201, 139, 36, 0.85)
    );

  box-shadow:
    0 30px 70px rgba(80, 0, 30, 0.18);

  transform: rotate(2deg);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 40px;

  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.3),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1),
      rgba(0, 0, 0, 0.15)
    );

  color: white;
}

.hero-image-icon {
  width: 92px;
  height: 92px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);

  margin-bottom: 22px;
}

.hero-image-placeholder h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1.05;
}

.hero-image-placeholder h3 span {
  display: block;
  color: #ffe2a5;
}

.hero-image-placeholder p {
  margin-top: 15px;
  font-size: 12px;
  opacity: 0.9;
}

/* FLOATING CARD */

.hero-floating-card {
  position: absolute;

  left: -20px;
  bottom: 35px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;

  background: white;

  border-radius: 12px;

  color: #7b002b;

  box-shadow: 0 15px 35px rgba(50, 10, 20, 0.14);
}

.hero-floating-card div {
  display: flex;
  flex-direction: column;
}

.hero-floating-card strong {
  font-size: 11px;
}

.hero-floating-card span {
  margin-top: 3px;
  color: #777;
  font-size: 9px;
}

/* TABLET */

@media (max-width: 900px) {

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-badge {
    margin-inline: auto;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    min-height: 440px;
  }

}

/* MOBILE */

@media (max-width: 600px) {

  .hero-container {
    width: min(92%, 560px);
    padding: 42px 0 55px;
  }

  .hero-content h1 {
    font-size: 43px;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.65;
  }

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

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 18px;
    justify-content: flex-start;
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-image-frame {
    height: 330px;
    border-radius: 22px;
  }

  .hero-image-placeholder h3 {
    font-size: 32px;
  }

  .hero-floating-card {
    left: 5px;
    bottom: 12px;
  }

}

/* =========================================
   QUICK SERVICES
========================================= */

.quick-services {
  padding: 100px 0;
  background: #ffffff;
}

.services-container {
  width: min(92%, 1240px);
  margin: auto;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading > span {
  color: #c98b24;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.section-heading h2 {
  margin-top: 10px;

  color: #7b002b;

  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);

  line-height: 1.1;
}

.section-heading h2 strong {
  color: #c98b24;
}

.section-heading p {
  max-width: 600px;
  margin: 16px auto 0;

  color: #777;

  font-size: 14px;
  line-height: 1.7;
}

/* GRID */

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

/* CARD */

.service-card {
  position: relative;

  display: flex;
  gap: 17px;

  padding: 25px;

  background: #fffdf9;

  border: 1px solid #eee4d5;
  border-radius: 18px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);

  border-color: rgba(201, 139, 36, 0.45);

  box-shadow:
    0 18px 45px rgba(70, 10, 30, 0.1);
}

/* ICON */

.service-icon {
  width: 54px;
  height: 54px;

  flex: 0 0 54px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      #7b002b,
      #a80b42
    );

  color: white;

  box-shadow:
    0 8px 18px rgba(123, 0, 43, 0.18);
}

.service-card-content {
  min-width: 0;
}

.service-category {
  color: #c98b24;

  font-size: 8px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card h3 {
  margin-top: 5px;

  color: #292929;

  font-family: Georgia, serif;

  font-size: 20px;
  line-height: 1.2;
}

.service-card p {
  margin-top: 8px;

  color: #777;

  font-size: 11px;
  line-height: 1.6;
}

.service-link {
  margin-top: 15px;

  display: inline-flex;
  align-items: center;
  gap: 5px;

  color: #7b002b;

  font-size: 10px;
  font-weight: 800;
}

.service-link:hover {
  color: #c98b24;
}

/* VIEW ALL */

.services-view-all {
  margin-top: 38px;

  display: flex;
  justify-content: center;
}

.services-view-all a {
  min-height: 46px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  border: 1px solid #7b002b;
  border-radius: 8px;

  color: #7b002b;

  font-size: 12px;
  font-weight: 800;

  transition: 0.2s ease;
}

.services-view-all a:hover {
  background: #7b002b;
  color: white;
}

/* TABLET */

@media (max-width: 900px) {

  .services-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}

/* MOBILE */

@media (max-width: 600px) {

  .quick-services {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    padding: 20px;
  }

}

/* =========================================
   SERVICE PAGE
========================================= */

.service-page {
  background: var(--cream);
  min-height: 100vh;
}

.service-breadcrumb-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.service-breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 13px;
  color: var(--muted);
}

.service-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.service-hero {
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--cream) 100%
  );
  padding: 70px 24px;
}

.service-hero-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: center;
}

.service-hero-content {
  max-width: 720px;
}

.service-category {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 30px;
  background: var(--gold-pale);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.service-hero h1 {
  margin: 0 0 18px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
}

.service-hero-description {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.service-hero-intro {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.service-whatsapp,
.service-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.service-whatsapp {
  background: var(--primary);
  color: var(--white);
}

.service-whatsapp:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.service-call {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
}

.service-call:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Hero visual */

.service-hero-visual {
  min-height: 410px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(
      135deg,
      rgba(123, 0, 43, 0.95),
      rgba(82, 0, 29, 0.88)
    );
  box-shadow: var(--shadow-lg);
}

.service-visual-content {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.service-visual-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 24px;
}

.service-visual-content h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 30px;
}

.service-visual-content p {
  max-width: 350px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

/* Overview */

.service-overview {
  padding: 75px 24px;
  background: var(--white);
}

.service-container {
  max-width: var(--container);
  margin: 0 auto;
}

.service-section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.service-section-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.service-section-heading h2 {
  margin: 0 0 14px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 38px;
}

.service-section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* Benefits */

.service-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-benefit-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 25px;
  transition: 0.25s ease;
}

.service-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(123, 0, 43, 0.2);
}

.service-benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-pale);
  color: var(--primary);
  margin-bottom: 18px;
}

.service-benefit-card h3 {
  margin: 0 0 9px;
  color: var(--text);
  font-size: 17px;
}

.service-benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Details */

.service-details {
  padding: 75px 24px;
  background: var(--cream);
}

.service-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
}

.service-detail-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 21px;
}

.service-detail-card h3 svg {
  color: var(--gold);
}

.service-detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.service-detail-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary);
}

/* How it works */

.service-process {
  padding: 75px 24px;
  background: var(--white);
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-process-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
}

.service-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 17px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.service-process-card h3 {
  margin: 0 0 9px;
  font-size: 17px;
  color: var(--text);
}

.service-process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* CTA */

.service-cta {
  padding: 70px 24px;
  background: var(--primary);
  color: var(--white);
}

.service-cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.service-cta h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 38px;
}

.service-cta p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}

.service-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.service-cta-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.service-cta-primary {
  background: var(--gold);
  color: var(--white);
}

.service-cta-secondary {
  background: var(--white);
  color: var(--primary);
}

/* Disclaimer */

.service-disclaimer {
  padding: 22px 24px;
  background: var(--cream-dark);
}

.service-disclaimer p {
  max-width: var(--container);
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

/* =========================================
   MOBILE SERVICE PAGE
========================================= */

@media (max-width: 900px) {

  .service-hero-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .service-benefits,
  .service-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .service-hero {
    padding: 45px 18px;
  }

  .service-breadcrumb {
    padding: 13px 18px;
  }

  .service-hero h1 {
    font-size: 38px;
  }

  .service-hero-description {
    font-size: 16px;
  }

  .service-hero-visual {
    min-height: 300px;
  }

  .service-overview,
  .service-details,
  .service-process {
    padding: 55px 18px;
  }

  .service-benefits,
  .service-process-grid,
  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .service-section-heading h2 {
    font-size: 30px;
  }

  .service-actions,
  .service-cta-actions {
    flex-direction: column;
  }

  .service-whatsapp,
  .service-call,
  .service-cta-actions a {
    width: 100%;
  }

  .service-cta {
    padding: 55px 18px;
  }

  .service-cta h2 {
    font-size: 30px;
  }
}

/* =========================================
   SERVICE HERO IMAGE
========================================= */

.service-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.service-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(123, 0, 43, 0.82),
      rgba(82, 0, 29, 0.52)
    );
}

.service-visual-content {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* =========================================
   MOBILE MENU
========================================= */

.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.mobile-menu-button:hover {
  background: var(--gold-pale);
}

.mobile-menu {
  display: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .site-header {
    display: none;
  }

  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 16px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1000;
  }

  .mobile-brand {
    display: flex;
    align-items: center;
  }

  .mobile-brand-image {
    width: 50px;
    height: 40px;
    object-fit: cover;
    object-position: left center;
    display: block;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-call-button {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .mobile-menu-button {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    display: block;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .mobile-menu-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 10px 16px 16px;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 10px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-menu nav a:last-child {
    border-bottom: none;
  }

  .mobile-menu nav a:hover {
    color: var(--primary);
    background: var(--cream);
  }

  .mobile-menu .mobile-menu-whatsapp {
    margin-top: 12px;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
  }

  .mobile-menu .mobile-menu-whatsapp:hover {
    background: var(--primary-dark);
    color: var(--white);
  }

}

/* =========================================
   BRANDING
========================================= */

.brand-content {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-image {
  width: 48px;
  height: 52px;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-name {
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* =========================================
   DESKTOP BRAND
========================================= */

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}


/* =========================================
   MOBILE BRAND
========================================= */

.mobile-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mobile-brand .brand-content {
  gap: 7px;
}

.mobile-brand .brand-logo-image {
  width: 40px;
  height: 43px;
}

.mobile-brand .brand-name {
  font-size: 18px;
}

.mobile-brand .brand-subtitle {
  margin-top: 4px;
  font-size: 7px;
  letter-spacing: 1.5px;
}


/* =========================================
   MOBILE HEADER
========================================= */

@media (max-width: 768px) {

  .mobile-header {
    height: 68px;
    padding: 0 14px;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 7px;
  }

}

/* =========================================
   CLEAN SERVICE HERO IMAGE
========================================= */

.service-hero-visual {
  min-height: 0;
  aspect-ratio: 3 / 2;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: transparent;
  box-shadow: var(--shadow-lg);
}

.service-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-hero-overlay {
  display: none;
}

.service-visual-content {
  display: none;
}

@media (max-width: 900px) {
  .service-hero-visual {
    width: 100%;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 600px) {
  .service-hero-visual {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }
}

/* =========================================
   FULL HERO BANNER IMAGE
   Keep complete image content visible
========================================= */

.service-hero-visual {
  width: 100%;
  aspect-ratio: 1536 / 1024;
  min-height: auto;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.service-hero-image {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.service-hero-overlay {
  display: none;
}

.service-visual-content {
  display: none;
}

@media (max-width: 900px) {
  .service-hero-visual {
    width: 100%;
    aspect-ratio: auto;
  }

  .service-hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 600px) {
  .service-hero-visual {
    border-radius: 18px;
  }

  .service-hero-image {
    width: 100%;
    height: auto;
  }
}

/* =========================================
   SERVICE HERO - NO WHITE SPACE
========================================= */

.service-hero-visual {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: transparent;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

.service-hero-image {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.service-hero-overlay {
  display: none;
}

.service-visual-content {
  display: none;
}

@media (max-width: 900px) {
  .service-hero-visual {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .service-hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 600px) {
  .service-hero-visual {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    border-radius: 18px;
  }

  .service-hero-image {
    width: 100%;
    height: auto;
  }
}

/* =========================================
   SERVICE IMAGE FALLBACK
========================================= */

.service-image-fallback {
  min-height: 100%;
  width: 100%;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark)
    );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-image-fallback::after {
  content: "Prime Loan Financial Services";
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  padding: 30px;
}

/* =========================================
   ALL SERVICES SECTION
   ========================================= */

.all-services {
  padding: 95px 0 100px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.all-services-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.all-services .section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.all-services .section-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
}

.all-services .section-heading h2 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
}

.all-services .section-heading h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.all-services .section-heading p {
  max-width: 900px;
  margin: 17px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

/* Services Grid */

.all-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Service Card */

.all-service-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 205px;
  padding: 25px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.all-service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height 0.25s ease;
}

.all-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 0, 43, 0.18);
  box-shadow: var(--shadow-lg);
}

.all-service-card:hover::before {
  height: 100%;
}

/* Icon */

.all-service-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--gold-pale);
  border: 1px solid rgba(201, 139, 36, 0.25);
  border-radius: 12px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.all-service-card:hover .all-service-icon {
  color: var(--white);
  background: var(--primary);
  transform: scale(1.05);
}

/* Content */

.all-service-content {
  min-width: 0;
  flex: 1;
}

.all-service-category {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.all-service-content h3 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.all-service-content p {
  margin: 10px 0 17px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* View Details */

.all-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}

.all-service-link:hover {
  color: var(--gold);
  gap: 9px;
}

/* Tablet */

@media (max-width: 1000px) {
  .all-services {
    padding: 80px 0 85px;
  }

  .all-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .all-service-card {
    min-height: 200px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .all-services {
    padding: 65px 0 70px;
  }

  .all-services-container {
    width: min(100% - 28px, 560px);
  }

  .all-services .section-heading {
    margin-bottom: 32px;
  }

  .all-services .section-heading span {
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .all-services .section-heading h2 {
    font-size: 31px;
  }

  .all-services .section-heading p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.7;
  }

  .all-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .all-service-card {
    min-height: auto;
    padding: 20px 17px;
    gap: 14px;
    border-radius: 14px;
  }

  .all-service-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 10px;
  }

  .all-service-content h3 {
    font-size: 18px;
  }

  .all-service-content p {
    margin: 8px 0 14px;
    font-size: 13px;
  }

  .all-service-category {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .all-service-link {
    font-size: 12.5px;
  }
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */

.why-choose-us {
  padding: 95px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.why-choose-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 65px;
  align-items: center;
}

/* Intro */

.why-choose-intro > span {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.why-choose-intro h2 {
  max-width: 470px;
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.14;
  font-weight: 700;
}

.why-choose-intro h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.why-choose-intro > p {
  max-width: 500px;
  margin: 20px 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Highlight */

.why-choose-highlight {
  max-width: 500px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
}

.why-choose-highlight-number {
  flex: 0 0 auto;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 23px;
  font-weight: 700;
}

.why-choose-highlight h3 {
  margin: 0 0 5px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.why-choose-highlight p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Benefits */

.why-choose-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.why-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-height: 145px;
  padding: 22px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.why-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 0, 43, 0.18);
  box-shadow: var(--shadow-lg);
}

.why-benefit-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--white);
  border: 1px solid rgba(201, 139, 36, 0.28);
  border-radius: 11px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.why-benefit-card:hover .why-benefit-icon {
  color: var(--white);
  background: var(--primary);
}

.why-benefit-content {
  min-width: 0;
}

.why-benefit-content h3 {
  margin: 1px 0 7px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.why-benefit-content p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}

/* Tablet */

@media (max-width: 950px) {
  .why-choose-us {
    padding: 80px 0;
  }

  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .why-choose-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .why-choose-intro h2 {
    max-width: 650px;
    margin: 0 auto;
  }

  .why-choose-intro > p {
    max-width: 650px;
    margin: 18px auto 28px;
  }

  .why-choose-highlight {
    margin: 0 auto;
    text-align: left;
  }

  .why-choose-benefits {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .why-choose-us {
    padding: 65px 0 70px;
  }

  .why-choose-container {
    width: calc(100% - 28px);
    gap: 32px;
  }

  .why-choose-intro > span {
    font-size: 9px;
    letter-spacing: 1.8px;
  }

  .why-choose-intro h2 {
    font-size: 31px;
  }

  .why-choose-intro > p {
    margin-top: 15px;
    font-size: 13.5px;
    line-height: 1.7;
  }

  .why-choose-highlight {
    padding: 16px;
    gap: 13px;
  }

  .why-choose-highlight-number {
    font-size: 20px;
  }

  .why-choose-highlight h3 {
    font-size: 17px;
  }

  .why-choose-highlight p {
    font-size: 12px;
  }

  .why-choose-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-benefit-card {
    min-height: auto;
    padding: 18px 16px;
    gap: 13px;
    border-radius: 12px;
  }

  .why-benefit-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .why-benefit-content h3 {
    font-size: 16px;
  }

  .why-benefit-content p {
    font-size: 12px;
  }
}

/* =========================================
   HOW WE HELP SECTION
   ========================================= */

.how-we-help {
  padding: 95px 0 100px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.how-we-help-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Heading */

.how-we-help-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.how-we-help-heading > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.how-we-help-heading h2 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 700;
}

.how-we-help-heading h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.how-we-help-heading p {
  max-width: 690px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Steps */

.how-we-help-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.how-step-card {
  position: relative;
  min-height: 255px;
  padding: 25px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.how-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 0, 43, 0.18);
  box-shadow: var(--shadow-lg);
}

/* Top */

.how-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.how-step-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--gold-pale);
  border: 1px solid rgba(201, 139, 36, 0.25);
  border-radius: 12px;
}

.how-step-number {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 700;
}

/* Content */

.how-step-card h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
}

.how-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Bottom Accent */

.how-step-card::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: 0;
  width: 45px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
  transition: width 0.8s ease;
}

.how-step-card:hover::after {
  width: calc(100% - 44px);
}

/* Connector */

.how-step-line {
  position: absolute;
  top: 51px;
  right: -18px;
  width: 18px;
  height: 1px;
  background: var(--gold-light);
}

/* Tablet */

@media (max-width: 1000px) {
  .how-we-help {
    padding: 80px 0 85px;
  }

  .how-we-help-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .how-step-line {
    display: none;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .how-we-help {
    padding: 65px 0 70px;
  }

  .how-we-help-container {
    width: calc(100% - 28px);
  }

  .how-we-help-heading {
    margin-bottom: 34px;
  }

  .how-we-help-heading > span {
    font-size: 9px;
    letter-spacing: 1.8px;
  }

  .how-we-help-heading h2 {
    font-size: 31px;
  }

  .how-we-help-heading p {
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.7;
  }

  .how-we-help-steps {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .how-step-card {
    min-height: auto;
    padding: 20px 17px;
    border-radius: 14px;
  }

  .how-step-top {
    margin-bottom: 20px;
  }

  .how-step-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .how-step-number {
    font-size: 22px;
  }

  .how-step-card h3 {
    font-size: 18px;
  }

  .how-step-card p {
    font-size: 12.5px;
  }
}

/* =========================================
   ABOUT PRIME LOAN SECTION
   ========================================= */

.about-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.about-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

/* Visual */

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark)
    );
  box-shadow: var(--shadow-lg);
}

.about-image {
  display: block;
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: center;
}

.about-image-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.about-image-badge span {
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
}

.about-image-badge strong {
  margin-top: 3px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

/* Image Fallback */

.about-image-fallback {
  min-height: 570px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark)
    );
}

.about-image-fallback::before {
  content: "PRIME LOAN";
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -1px;
}

.about-image-fallback::after {
  content: "Financial Services";
  position: absolute;
  margin-top: 75px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Content */

.about-eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 590px;
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.13;
  font-weight: 700;
}

.about-content h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.about-intro {
  max-width: 610px;
  margin: 21px 0 14px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.about-description {
  max-width: 610px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* Highlights */

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 15px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.about-highlight:hover {
  transform: translateX(5px);
  border-color: rgba(201, 139, 36, 0.35);
  box-shadow: var(--shadow-sm);
}

.about-highlight-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--gold-pale);
  border: 1px solid rgba(201, 139, 36, 0.25);
  border-radius: 9px;
}

.about-highlight h3 {
  margin: 1px 0 4px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 1.3;
}

.about-highlight p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* Buttons */

.about-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
}

.about-primary-button,
.about-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.about-primary-button {
  color: var(--white);
  background: var(--primary);
}

.about-primary-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.about-whatsapp-button {
  color: var(--primary);
  background: var(--gold-pale);
  border: 1px solid rgba(201, 139, 36, 0.3);
}

.about-whatsapp-button:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Bottom Check */

.about-check {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
}

.about-check svg {
  color: var(--gold);
  flex: 0 0 auto;
}

/* Tablet */

@media (max-width: 950px) {
  .about-section {
    padding: 80px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-wrap,
  .about-image-fallback {
    min-height: 480px;
  }

  .about-image {
    height: 480px;
  }

  .about-content {
    max-width: 760px;
    margin: 0 auto;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .about-section {
    padding: 65px 0 70px;
  }

  .about-container {
    width: calc(100% - 28px);
    gap: 34px;
  }

  .about-image-wrap,
  .about-image-fallback {
    min-height: 380px;
    border-radius: 18px;
  }

  .about-image {
    height: 380px;
  }

  .about-image-badge {
    left: 15px;
    bottom: 15px;
    padding: 12px 14px;
  }

  .about-image-badge span {
    font-size: 16px;
  }

  .about-image-fallback::before {
    font-size: 34px;
  }

  .about-image-fallback::after {
    margin-top: 58px;
    font-size: 9px;
    letter-spacing: 2px;
  }

  .about-eyebrow {
    font-size: 9px;
    letter-spacing: 1.8px;
  }

  .about-content h2 {
    font-size: 31px;
  }

  .about-intro {
    margin-top: 15px;
    font-size: 13.5px;
    line-height: 1.7;
  }

  .about-description {
    font-size: 12.5px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .about-highlight {
    padding: 12px;
  }

  .about-highlight-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .about-highlight h3 {
    font-size: 15px;
  }

  .about-highlight p {
    font-size: 11.5px;
  }

  .about-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    margin-top: 23px;
  }

  .about-primary-button,
  .about-whatsapp-button {
    width: 100%;
  }

  .about-check {
    align-items: flex-start;
    font-size: 10.5px;
    line-height: 1.5;
  }
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-section {
  position: relative;
  padding: 85px 0;
  background: var(--primary);
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  top: -170px;
  border: 1px solid rgba(228, 180, 91, 0.25);
  border-radius: 50%;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  left: -120px;
  bottom: -120px;
  border: 1px solid rgba(228, 180, 91, 0.2);
  border-radius: 50%;
}

.cta-container {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.cta-decoration {
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  border: 1px solid rgba(228, 180, 91, 0.35);
  border-radius: 50%;
}

.cta-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.cta-content h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.14;
  font-weight: 700;
}

.cta-content h2 strong {
  color: var(--gold-light);
  font-weight: 700;
}

.cta-content > p {
  max-width: 650px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.cta-whatsapp,
.cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.cta-whatsapp {
  color: var(--primary);
  background: var(--gold-light);
}

.cta-whatsapp:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-call {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta-call:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Mobile */

@media (max-width: 600px) {
  .cta-section {
    padding: 65px 0 70px;
  }

  .cta-container {
    width: calc(100% - 28px);
  }

  .cta-decoration {
    width: 48px;
    height: 48px;
    margin-bottom: 17px;
  }

  .cta-eyebrow {
    font-size: 9px;
    letter-spacing: 1.9px;
  }

  .cta-content h2 {
    font-size: 31px;
  }

  .cta-content > p {
    margin-top: 15px;
    font-size: 13.5px;
    line-height: 1.7;
  }

  .cta-actions {
    flex-direction: column;
    gap: 9px;
    margin-top: 24px;
  }

  .cta-whatsapp,
  .cta-call {
    width: 100%;
    min-height: 46px;
  }
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.contact-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.contact-info {
  max-width: 780px;
  margin-bottom: 55px;
}

.contact-eyebrow,
.contact-map-heading > span,
.contact-form-heading > span {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-info h2 {
  margin: 0 0 18px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 700;
}

.contact-info h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.contact-intro {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 35px;
}

.contact-detail {
  min-height: 130px;
  padding: 22px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.contact-detail:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gold-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.contact-detail strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.contact-hours {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  border-radius: 0 14px 14px 0;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--primary);
}

.contact-hours div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-hours strong {
  color: var(--text);
  font-size: 14px;
}

.contact-hours span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}


/* Enquiry Form */

.contact-form-wrap {
  padding: 42px;
  background: var(--primary);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before,
.contact-form-wrap::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(228, 180, 91, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.contact-form-wrap::before {
  width: 240px;
  height: 240px;
  right: -90px;
  top: -100px;
}

.contact-form-wrap::after {
  width: 170px;
  height: 170px;
  left: -90px;
  bottom: -100px;
}

.contact-form-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.contact-form-heading > span {
  color: var(--gold-light);
}

.contact-form-heading h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 1.2;
}

.contact-form-heading p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-field {
  margin-bottom: 18px;
}

.contact-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-field input,
.contact-field select {
  height: 50px;
  padding: 0 15px;
}

.contact-field textarea {
  min-height: 115px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-field select {
  color: rgba(255, 255, 255, 0.85);
}

.contact-field select option {
  color: var(--text);
  background: var(--white);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(228, 180, 91, 0.14);
}

.contact-submit {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: var(--gold);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.contact-form-note {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.6;
}

.contact-form-note svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--gold-light);
}


/* Office Map */

.contact-map-section {
  margin-top: 55px;
}

.contact-map-heading {
  max-width: 800px;
  margin-bottom: 25px;
}

.contact-map-heading h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 1.2;
}

.contact-map-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-map {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}


/* Contact Mobile */

@media (max-width: 900px) {
  .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-wrap {
    padding: 32px 26px;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-container {
    width: min(100% - 28px, 1180px);
  }

  .contact-info {
    margin-bottom: 40px;
  }

  .contact-info h2 {
    font-size: 34px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-detail {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    padding: 17px;
  }

  .contact-detail-icon {
    flex: 0 0 auto;
  }

  .contact-form-wrap {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .contact-form-heading h3 {
    font-size: 27px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-map-section {
    margin-top: 42px;
  }

  .contact-map-heading h3 {
    font-size: 27px;
  }

  .contact-map {
    height: 350px;
    border-radius: 18px;
  }
}

/* Contact layout width correction */

.contact-info {
  max-width: none;
}

.contact-info .contact-intro {
  max-width: 780px;
}

.contact-details {
  width: 100%;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;
  background: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
}

.footer-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 70px;
  padding: 75px 0 55px;
}

.footer-brand {
  max-width: 430px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.footer-logo span {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-logo small {
  margin-top: 2px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-tagline {
  margin: 0 0 13px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.footer-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.8;
}

.footer-links h3,
.footer-contact h3 {
  margin: 3px 0 20px;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 21px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact a,
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact a {
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-contact svg,
.footer-address svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--gold-light);
}

.footer-address {
  margin-top: 5px;
  margin-bottom: 0;
}

.footer-disclaimer {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.footer-bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.footer-bottom span:last-child {
  color: var(--gold-light);
}


/* Floating WhatsApp */

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  z-index: 1000;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.floating-top {
  position: fixed;
  right: 24px;
  bottom: 86px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .floating-top {
    right: 16px;
    bottom: 82px;
    width: 44px;
    height: 44px;
  }
}

/* Footer Mobile */

@media (max-width: 800px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
    padding: 60px 0 45px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .footer-container {
    width: min(100% - 28px, 1180px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 50px 0 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-links h3,
  .footer-contact h3 {
    margin-bottom: 16px;
  }

  .footer-bottom {
    min-height: auto;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

.hero-main-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

/* =========================================================
   WHY CHOOSE US - PREMIUM FEATURE SECTION
   ========================================================= */

.why-section {
  width: 100%;
  padding: 105px 0;
  background: var(--white);
}

.why-container {
  width: min(92%, 1240px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: center;
}

/* LEFT CONTENT */

.why-content {
  width: 100%;
}

.why-kicker {
  margin-bottom: 18px;

  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.why-title {
  margin: 0;

  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -1.5px;
}

.why-title span {
  display: block;
  margin-top: 4px;
  color: var(--gold);
}

.why-description {
  max-width: 570px;
  margin: 24px 0 30px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* REQUIREMENT FIRST */
.why-highlight {
  width: 100%;
  min-height: 108px;

  padding: 22px 24px;

  display: flex;
  align-items: center;

  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 14px;

  box-sizing: border-box;
}
.why-number {
  flex-shrink: 0;

  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
}

.why-highlight-content {
  min-width: 0;
}

.why-highlight-content h3 {
  margin: 0 0 6px;

  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 700;
}

.why-highlight-content p {
  margin: 0;

  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* RIGHT SIDE - SIX CARDS */

.why-grid {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  position: relative;

  min-height: 160px;
  padding: 22px;

  display: flex;
  align-items: flex-start;
  gap: 16px;

  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 15px;

  box-sizing: border-box;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 139, 36, 0.45);
  box-shadow: var(--shadow-md);
}

/* CARD ICON */

.why-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);

  background: var(--white);
  border: 1px solid rgba(201, 139, 36, 0.35);
  border-radius: 12px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.06);
}

/* CARD CONTENT */

.why-card-content {
  min-width: 0;
  padding-top: 1px;
}

.why-card-content h3 {
  margin: 0 0 7px;

  color: var(--primary);

  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.why-card-content p {
  margin: 0;

  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* GOLD BOTTOM ACCENT */

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 139, 36, 0.45);
  box-shadow: var(--shadow-md);
}

/* TABLET */

@media (max-width: 1000px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .why-description {
    max-width: 720px;
  }

  .why-highlight {
    max-width: 720px;
  }
}

/* MOBILE */

@media (max-width: 650px) {
  .why-section {
    padding: 70px 0;
  }

  .why-container {
    width: min(92%, 600px);
    gap: 32px;
  }

  .why-title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .why-description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.75;
  }

  .why-highlight {
    min-height: auto;
    padding: 18px;
    gap: 14px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .why-card {
    min-height: 135px;
    padding: 18px;
    gap: 14px;
  }

  .why-icon {
    width: 44px;
    height: 44px;
  }

  .why-card-content h3 {
    font-size: 17px;
  }

  .why-card-content p {
    font-size: 13px;
  }
}

/* =========================================================
   SERVICE CATEGORY SYSTEM
   ========================================================= */

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-category-card {
  position: relative;
  min-height: 270px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-category-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height 0.35s ease;
}

.service-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 139, 36, 0.4);
  box-shadow: var(--shadow-lg);
}

.service-category-card:hover::before {
  height: 100%;
}

.service-category-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.service-category-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--gold-pale);
  border: 1px solid rgba(201, 139, 36, 0.3);
  border-radius: 14px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.service-category-card:hover .service-category-icon {
  color: var(--white);
  background: var(--primary);
  transform: scale(1.05);
}

.service-category-count {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.service-category-content {
  flex: 1;
  padding-top: 28px;
}

.service-category-content h3 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 700;
}

.service-category-content p {
  max-width: 430px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.service-category-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.service-category-card:hover .service-category-link {
  color: var(--gold);
  gap: 11px;
}


/* =========================================================
   CATEGORY SERVICES HEADER
   ========================================================= */

.category-services-wrapper {
  scroll-margin-top: 100px;
}

.category-services-header {
  margin-bottom: 35px;
}

.back-to-categories {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--white);
  color: var(--primary);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.back-to-categories:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateX(-3px);
}

.category-services-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.category-services-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--gold-pale);
  border: 1px solid rgba(201, 139, 36, 0.3);
  border-radius: 14px;
}

.category-services-title > div:last-child > span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.category-services-title h2 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
}

.category-services-title p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================================
   CATEGORY SERVICES MOBILE
   ========================================================= */

@media (max-width: 1000px) {
  .service-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* =========================================================
   NATIVE ANDROID - MOBILE CATEGORY CARDS
========================================================= */

@media (max-width: 600px) {
  .service-category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-category-card {
    min-height: 0;
    padding: 16px;
    border-radius: 16px;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);

    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease;
  }

  .service-category-card:active {
    transform: scale(0.985);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .service-category-card::before {
    width: 3px;
  }

  .service-category-top {
    gap: 12px;
  }

  .service-category-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;

    border-radius: 12px;
  }

  .service-category-count {
    font-size: 9px;
    letter-spacing: 0.9px;
  }

  .service-category-content {
    padding-top: 16px;
  }

  .service-category-content h3 {
    font-size: 19px;
    line-height: 1.25;
  }

  .service-category-content p {
    margin-top: 7px;

    font-size: 12px;
    line-height: 1.55;

    max-width: none;
  }

  .service-category-link {
    margin-top: 14px;

    font-size: 11.5px;

    gap: 6px;

    min-height: 40px;
  }

  .service-category-link svg {
    width: 15px;
    height: 15px;
  }
}

  .category-services-header {
    margin-bottom: 28px;
  }

  .back-to-categories {
    min-height: 44px;
    margin-bottom: 22px;
  }

  .category-services-title {
    gap: 13px;
  }

  .category-services-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 11px;
  }

  .category-services-title h2 {
    font-size: 29px;
  }

  .category-services-title p {
    font-size: 12.5px;
    line-height: 1.65;
  }
}

/* =========================================================
   PRIME LOAN - MOBILE APP STYLE HEADER
   ========================================================= */

.mobile-header,
.mobile-menu,
.mobile-menu-overlay {
  display: none;
}

.main-navigation button,
.brand-logo {
  font: inherit;
}


/* =========================================================
   DESKTOP NAVIGATION BUTTON RESET
   ========================================================= */

.main-navigation button {
  border: none;
  padding: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.main-navigation button:hover {
  color: var(--primary);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .site-header {
    display: none;
  }

  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 1100;

    width: 100%;
    height: 64px;

    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);

    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);

    box-sizing: border-box;
  }

  .mobile-brand {
    min-width: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .mobile-brand .brand-content {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-brand .brand-logo-image {
    width: 38px;
    height: 38px;
    object-fit: contain;
  }

  .mobile-brand .brand-name {
    font-size: 18px;
    line-height: 1;
  }

  .mobile-brand .brand-subtitle {
    margin-top: 3px;
    font-size: 7px;
    letter-spacing: 1.4px;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-call-button,
  .mobile-menu-button {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    box-sizing: border-box;
  }

  .mobile-call-button {
    color: var(--primary);
    background: var(--gold-pale);
    border: 1px solid rgba(201, 139, 36, 0.28);
  }

  .mobile-menu-button {
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
    cursor: pointer;
  }

  .mobile-call-button:active,
  .mobile-menu-button:active {
    transform: scale(0.94);
  }


  /* =====================================================
     MOBILE DRAWER
     ===================================================== */

  .mobile-menu {
    position: fixed;
    top: 64px;
    right: 0;

    width: min(88%, 380px);
    height: calc(100vh - 64px);

    z-index: 1200;

    display: block;

    background: var(--cream);

    transform: translateX(105%);
    transition: transform 0.32s ease;

    overflow-y: auto;

    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.12);
  }

  .mobile-menu-open {
    transform: translateX(0);
  }

  .mobile-menu-inner {
    padding: 18px;
  }

  .mobile-menu-header {
    min-height: 64px;
    padding: 0 4px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
  }

  .mobile-menu-header span {
    display: block;

    color: var(--gold);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
  }

  .mobile-menu-header strong {
    display: block;

    margin-top: 4px;

    color: var(--primary);

    font-family: "Playfair Display", serif;
    font-size: 19px;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);
    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 10px;

    cursor: pointer;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;

    padding: 12px 0;
  }

  .mobile-menu nav button {
    width: 100%;
    min-height: 52px;

    display: flex;
    align-items: center;

    padding: 0 14px;

    color: var(--text);
    background: transparent;

    border: none;
    border-radius: 12px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    text-align: left;
    cursor: pointer;
  }

  .mobile-menu nav button:active {
    background: var(--gold-pale);
    color: var(--primary);
    transform: scale(0.98);
  }

  .mobile-menu-whatsapp,
  .mobile-menu-call {
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 8px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 800;
  }

  .mobile-menu-whatsapp {
    color: var(--white);
    background: var(--primary);
  }

  .mobile-menu-call {
    color: var(--primary);
    background: var(--white);
    border: 1px solid var(--border);
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;

    z-index: 1150;

    display: block;

    border: none;
    background: rgba(0, 0, 0, 0.28);

    cursor: pointer;
  }
}


/* =========================================================
   EXTRA SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {

  .mobile-header {
    padding: 0 10px;
  }

  .mobile-brand .brand-name {
    font-size: 17px;
  }

  .mobile-call-button,
  .mobile-menu-button {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    width: 92%;
  }
}

/* =========================================================
   HEADER BUTTON FIXES
   ========================================================= */

/* Logo button should look exactly like the original brand link */
.brand-logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}


/* Desktop navigation buttons */
.main-navigation button {
  position: relative;
  display: inline-flex;
  align-items: center;

  padding: 10px 0;
  margin: 0;

  border: none;
  outline: none;
  background: transparent;

  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
}


/* Gold hover / active-style line */
.main-navigation button::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 2px;

  width: 0;
  height: 2px;

  background: var(--gold);
  border-radius: 999px;

  transition: width 0.3s ease;
}

.main-navigation button:hover {
  color: var(--primary);
}

.main-navigation button:hover::after {
  width: 100%;
}


/* Keep mobile buttons clean */
@media (max-width: 768px) {

  .mobile-brand {
    border: none;
    outline: none;
    background: transparent;
  }

  .mobile-menu nav button {
    border: none;
    outline: none;
  }
}

/* =========================================================
   QUICK SERVICES BUTTONS
========================================================= */

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 16px;

  border: 1px solid var(--primary);
  border-radius: 10px;

  background: var(--primary);
  color: var(--white);

  font-family: inherit;
  font-size: 12px;
  font-weight: 700;

  line-height: 1;
  text-decoration: none;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-link svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.service-link:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);

  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(123, 0, 43, 0.16);
}

.service-link:hover svg {
  transform: translateX(3px);
}


/* =========================================================
   VIEW ALL FINANCIAL SERVICES BUTTON
========================================================= */

.services-view-all {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-top: 42px;
}

.services-view-all button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 48px;
  padding: 12px 22px;

  border: 1px solid var(--primary);
  border-radius: 12px;

  background: var(--primary);
  color: var(--white);

  font-family: inherit;
  font-size: 13px;
  font-weight: 700;

  line-height: 1;
  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.services-view-all button svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.services-view-all button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);

  transform: translateY(-2px);

  box-shadow: 0 10px 22px rgba(123, 0, 43, 0.18);
}

.services-view-all button:hover svg {
  transform: translateX(3px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .service-link {
    min-height: 44px;
    padding: 9px 14px;

    border-radius: 9px;

    font-size: 11px;
  }

  .services-view-all {
    margin-top: 30px;
  }

  .services-view-all button {
    min-height: 46px;
    padding: 11px 18px;

    border-radius: 11px;

    font-size: 12px;
  }
}

/* =========================================================
   NATIVE ANDROID - MOBILE BOTTOM NAVIGATION
========================================================= */

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    height: 68px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;

    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--border);

    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);

    z-index: 1200;

    padding:
      5px
      6px
      calc(5px + env(safe-area-inset-bottom));

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mobile-bottom-nav-item {
    min-width: 0;
    min-height: 56px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 4px;

    padding: 6px 4px;

    border: none;
    outline: none;
    background: transparent;

    color: var(--muted);

    font-family: inherit;
    font-size: 10px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;

    transition:
      color 0.2s ease,
      transform 0.2s ease;
  }

  .mobile-bottom-nav-item svg {
    flex-shrink: 0;
  }

  .mobile-bottom-nav-item:hover,
  .mobile-bottom-nav-item:focus-visible {
    color: var(--primary);
  }

  .mobile-bottom-nav-item:active {
    transform: scale(0.94);
  }

  /* Keep page content above the fixed bottom navigation */
  body {
    padding-bottom: 68px;
  }
}


/* Smaller Android screens */

@media (max-width: 380px) {
  .mobile-bottom-nav {
    height: 64px;
  }

  .mobile-bottom-nav-item {
    min-height: 52px;
    font-size: 9px;
  }

  body {
    padding-bottom: 64px;
  }
}


/* Hide bottom navigation on desktop */

@media (min-width: 769px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}

/* =========================================================
   MOBILE FLOATING ACTION BUTTONS
========================================================= */

@media (max-width: 768px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 82px;
    width: 52px;
    height: 52px;
    z-index: 1300;
  }

  .floating-top {
    right: 16px;
    bottom: 144px;
    width: 44px;
    height: 44px;
    z-index: 1300;
  }
}


/* =========================================================
   NATIVE ANDROID - INDIVIDUAL SERVICE CARDS
   ========================================================= */

@media (max-width: 600px) {

  .all-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .all-service-card {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;

    padding: 15px 13px;

    border-radius: 16px;

    background: var(--white);
    border: 1px solid var(--border);

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.055);

    transition:
      transform 0.16s ease,
      box-shadow 0.16s ease;
  }

  .all-service-card:active {
    transform: scale(0.975);

    box-shadow:
      0 2px 7px rgba(0, 0, 0, 0.045);
  }

  .all-service-card::before {
    width: 3px;
  }

  .all-service-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    border-radius: 12px;

    margin-bottom: 13px;
  }

  .all-service-content {
    width: 100%;
  }

  .all-service-category {
    margin-bottom: 6px;

    font-size: 8px;
    letter-spacing: 0.9px;
    line-height: 1.3;
  }

  .all-service-content h3 {
    font-size: 16px;
    line-height: 1.3;

    min-height: 42px;
  }

  .all-service-content p {
    margin: 7px 0 12px;

    font-size: 11.5px;
    line-height: 1.55;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .all-service-link {
    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 8px 8px;

    border-radius: 9px;

    background: var(--gold-pale);
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    gap: 5px;

    transition:
      background 0.16s ease,
      transform 0.16s ease;
  }

  .all-service-link:active {
    transform: scale(0.96);
    background: var(--cream-dark);
  }

  .all-service-link svg {
    width: 14px;
    height: 14px;
  }
}


/* =========================================================
   EXTRA SMALL ANDROID SCREENS
   ========================================================= */

@media (max-width: 380px) {

  .all-services-grid {
    gap: 10px;
  }

  .all-service-card {
    padding: 13px 11px;
    border-radius: 14px;
  }

  .all-service-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;

    margin-bottom: 11px;
  }

  .all-service-content h3 {
    font-size: 15px;
    min-height: 39px;
  }

  .all-service-content p {
    font-size: 11px;
  }

  .all-service-link {
    min-height: 38px;
    font-size: 10.5px;
  }
}

/* =========================================================
   SERVICES DIRECTORY - NATIVE ANDROID STYLE
   ========================================================= */

.services-directory-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.services-directory-heading > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.services-directory-heading h1 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.services-directory-heading h1 strong {
  color: var(--gold);
  font-weight: 700;
}

.services-directory-heading p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Category directory */

.services-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.services-directory-card {
  width: 100%;
  min-height: 245px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.055);
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.services-directory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 0, 43, 0.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
}

.services-directory-card:active {
  transform: scale(0.985);
}

.services-directory-card:focus-visible {
  outline: 3px solid rgba(201, 139, 36, 0.28);
  outline-offset: 3px;
}

.services-directory-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.services-directory-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--primary);
  background: var(--gold-pale);
  border: 1px solid rgba(201, 139, 36, 0.25);
}

.services-directory-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--gold-pale);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.services-directory-content {
  flex: 1;
  padding-top: 20px;
}

.services-directory-content h2 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 21px;
  line-height: 1.25;
}

.services-directory-content p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.services-directory-action {
  min-height: 44px;
  margin-top: 20px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 7px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.services-directory-card:hover
.services-directory-action {
  background: var(--primary-dark);
}

/* Tablet */

@media (max-width: 1000px) {
  .services-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */

@media (max-width: 600px) {
  .services-directory-heading {
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .services-directory-heading > span {
    margin-bottom: 9px;
    font-size: 9px;
    letter-spacing: 1.6px;
  }

  .services-directory-heading h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .services-directory-heading p {
    margin-top: 13px;
    font-size: 12px;
    line-height: 1.65;
  }

  .services-directory-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-directory-card {
    min-height: 0;
    padding: 17px;
    border-radius: 17px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.055);
  }

  .services-directory-card:hover {
    transform: none;
  }

  .services-directory-card:active {
    transform: scale(0.985);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.045);
  }

  .services-directory-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 12px;
  }

  .services-directory-count {
    min-height: 26px;
    padding: 4px 9px;
    font-size: 8px;
    letter-spacing: 0.7px;
  }

  .services-directory-content {
    padding-top: 15px;
  }

  .services-directory-content h2 {
    font-size: 20px;
    line-height: 1.25;
  }

  .services-directory-content p {
    margin-top: 7px;
    font-size: 11.5px;
    line-height: 1.55;
  }

  .services-directory-action {
    width: 100%;
    min-height: 44px;
    margin-top: 15px;
    border-radius: 10px;
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .services-directory-grid {
    gap: 10px;
  }

  .services-directory-card {
    padding: 14px;
    border-radius: 15px;
  }

  .services-directory-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .services-directory-content h2 {
    font-size: 18px;
  }

  .services-directory-content p {
    font-size: 11px;
  }

  .services-directory-action {
    min-height: 42px;
    font-size: 10.5px;
  }
}

/* =========================================================
   CONTACT DETAILS - 3 CARD LAYOUT
   ========================================================= */

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.contact-detail {
  position: relative;
  min-height: 230px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.055);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.contact-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.contact-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
  border-color: rgba(123, 0, 43, 0.2);
}

.contact-detail:active {
  transform: scale(0.985);
}

.contact-detail:focus-visible {
  outline: 3px solid rgba(201, 139, 36, 0.28);
  outline-offset: 3px;
}

.contact-detail-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--gold-pale);
  border: 1px solid rgba(201, 139, 36, 0.22);
}

.contact-detail-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-detail-content > span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-detail-content strong {
  display: block;
  color: var(--primary);
  font-size: 19px;
  line-height: 1.35;
}

.contact-detail-content small {
  display: block;
  max-width: 260px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* WhatsApp */

.contact-detail-whatsapp .contact-detail-icon {
  color: #159447;
  background: #e9f8ef;
  border-color: rgba(21, 148, 71, 0.18);
}

.contact-detail-whatsapp .contact-detail-content strong {
  color: #159447;
}

/* Address */

.contact-detail-address {
  cursor: pointer;
}

.contact-detail-address .contact-detail-icon {
  color: var(--gold);
  background: var(--gold-pale);
}

.contact-detail-address .contact-detail-content strong {
  max-width: 290px;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
}

/* Mobile */

@media (max-width: 900px) {
  .contact-details {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-detail {
    min-height: 0;
    padding: 20px;
    flex-direction: row;
    align-items: center;
    text-align: left;
    border-radius: 17px;
  }

  .contact-detail-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    margin: 0 15px 0 0;
    border-radius: 14px;
  }

  .contact-detail-content {
    align-items: flex-start;
  }

  .contact-detail-content > span {
    margin-bottom: 4px;
    font-size: 9px;
  }

  .contact-detail-content strong {
    font-size: 16px;
  }

  .contact-detail-content small {
    max-width: none;
    margin-top: 4px;
    font-size: 11px;
  }

  .contact-detail-address .contact-detail-content strong {
    max-width: none;
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  .contact-details {
    gap: 12px;
    margin-top: 22px;
  }

  .contact-detail {
    min-height: 92px;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  }

  .contact-detail:active {
    transform: scale(0.985);
  }

  .contact-detail-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    margin-right: 13px;
    border-radius: 12px;
  }

  .contact-detail-content > span {
    font-size: 8px;
    letter-spacing: 0.9px;
  }

  .contact-detail-content strong {
    font-size: 15px;
  }

  .contact-detail-content small {
    font-size: 10.5px;
    line-height: 1.45;
  }

  .contact-detail-address .contact-detail-content strong {
    font-size: 10.5px;
    line-height: 1.5;
  }
}

/* =====================================================
   CONTACT EMAIL
   ===================================================== */

.contact-email {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 14px;
  padding: 18px 22px;
  background: #ffffff;
  border-left: 3px solid #d89a16;
  border-radius: 0 14px 14px 0;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.contact-email-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #97002f;
}

.contact-email-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-email-content span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555555;
}

.contact-email-content strong {
  font-size: 16px;
  font-weight: 600;
  color: #97002f;
}

@media (max-width: 600px) {
  .contact-email {
    padding: 16px 18px;
    gap: 12px;
  }

  .contact-email-content strong {
    font-size: 15px;
    word-break: break-word;
  }
}
.contact-email-inline {
  color: #97002f;
  font-weight: 600;
  text-decoration: none;
}

.contact-email-inline:hover {
  text-decoration: underline;
}