*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --primary: #0b0b0b;       /* main black: logo, headings, buttons */
  --secondary: #151515;     /* softer black: dark sections */
  --accent: #0b0b0b;        /* button/highlight black */

  --text-dark: #111111;     /* normal dark text */
  --text-muted: #6a6a6a;    /* paragraph/subtitle text */
  --text-light: #ffffff;    /* text on black */

  --bg-white: #f5f5f5;      /* main page background */
  --bg-light: #eeeeee;      /* soft light sections */
  --bg-grey: #e4e4e4;       /* carousel/section grey */

  --border: #d9d9d9;        /* thin clean border */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Cormorant Garamond', Georgia, "Times New Roman", serif;


  --contact-bg: #eeeeee;
  --contact-card: #f8f8f8;

  --navbar-bg: rgba(245, 245, 245, 0.88);
  --navbar-bg-solid: #eeeeee;

  --footer-bg: #0b0b0b;
  --footer-text: #ffffff;
  --footer-muted: #b8b8b8;
  --footer-border: rgba(255, 255, 255, 0.16);
}


body{
    font-family: 'Inter', sans-serif;
    background-color:var(--bg-white);
    color:var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}


/* navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  height: 82px;
  padding: 0 56px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background-color: transparent;
  border-bottom: 1px solid transparent;

  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navbar.scrolled {
    background: linear-gradient(
        90deg,
        #0b0b0b 0%,
        #2a241d 18%,
        #5d564d 38%,
        #8f7a55 58%,
        #c7b08a 78%,
        #f4f0e8 100%
    );

    border-bottom-color: rgba(183, 141, 69, 0.24);
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a,
.nav-mega > a {
  color: #dfdddb;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

.nav-menu a:hover,
.nav-mega > a:hover {
  color: #b78d45;
}

.nav-menu a.active,
.nav-mega > a.active {
    color: #d9b66f;
    position: relative;
}

.nav-menu a.active::after,
.nav-mega > a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1.5px;
    background: #d9b66f;
    border-radius: 2px;
}


.whatsapp-btn {
  padding: 11px 18px;

  background-color:#b78d45; 
  color: #15110c;
  text-decoration: none;

  font-size: 13px;
  font-weight: 800;

  border: 1px solid rgba(217, 182, 111, 0.35);
}

.whatsapp-btn:hover {
  background-color: #5b5955;
  color: #111111;
}

.nav-mega {
  position: static;
}

.nav-mega-head {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.nav-mega-head > a {
  color: #dfdddb;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
  display: inline-block;
}

.nav-mega-head > a:hover,
.nav-mega-head > a.active {
  color: #d9b66f;
}

.mega-toggle {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: none;
  background: transparent;
  box-shadow: none;

  color: #15110c;
  font-size: 0;
  line-height: 1;
  cursor: pointer;

  position: static;
}

.mega-toggle::before {
  content: "";
  width: 0;
  height: 0;

  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
}


.mega-menu {
  position: fixed;
  top: 65px;
  left: 65%;
  z-index: 999;

  width: min(980px, calc(100% - 80px));
  padding: 34px;

  background: linear-gradient(
    90deg,
    rgba(11, 11, 11, 0.96) 0%,
    rgba(42, 36, 29, 0.94) 20%,
    rgba(93, 86, 77, 0.92) 42%,
    rgba(143, 122, 85, 0.88) 64%,
    rgba(199, 176, 138, 0.88) 82%,
    rgba(244, 240, 232, 0.94) 100%
  );

  border: 1px solid rgba(183, 141, 69, 0.26);
  backdrop-filter: blur(14px);

  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px);

  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 34px;
}

.mega-menu-inner a {
  padding-bottom: 12px;

  color: #dfdddb;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;

  border-bottom: 1px solid rgba(183, 141, 69, 0.22);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.mega-menu-inner a:hover {
  color: #b78d45;
}

.nav-mega.mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}


/* hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background-color: #050505;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.78) 36%, rgba(0,0,0,0.2) 62%, rgba(0,0,0,0.08) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0.05));
}

.slide:nth-child(1) {
  background-image: url("../images/hero-luxury-1.png");
}

.slide:nth-child(2) {
  background-image: url("../images/hero-luxury-2.png");
}

.slide:nth-child(3) {
  background-image: url("../images/hero-luxury-3.png");
}


.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 220px));
  margin-left: 11%;
  padding-top: 140px;
  padding-bottom: 150px;
  color: #ffffff;
  text-align: left;
}

.hero-kicker {
  position: relative;
  margin-bottom: 34px;
  color: #d7b36a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.hero-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 80px;
  height: 2px;
  background: #d7b36a;
}

.hero-content h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: clamp(46px, 4.7vw, 74px);
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
}

.carousel-span {
    color: #D9B66F; /* Warm Champagne Gold */
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: 21px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  gap: 18px;
}

.hero-btn {
  height: 64px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 4px;

  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-btn::before {
  content: "";
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  z-index: -1;

  width: 170px;
  height: 170px;
  border-radius: 50%;

  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;

  pointer-events: none;
}

.hero-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-gold {
  background: #d9b66f;
  color: #111111;

  border: 1px solid #d9b66f;
}

.hero-btn-gold::before {
  background: radial-gradient(
    circle,
    #f4f0e8 0%,
    #d9b66f 28%,
    #8b6a32 58%,
    #15110c 100%
  );
}

.hero-btn-gold:hover {
  color: #ffffff;
  border-color: #d9b66f;
}

.hero-btn-outline {
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.hero-btn-outline::before {
  background: radial-gradient(
    circle,
    #fff1c9 0%,
    #d9b66f 35%,
    #b78d45 65%,
    #7a5420 100%
  );
}

.hero-btn-outline:hover {
  color: #111111;
  border-color: #d9b66f;
}


.hero-btn span {
  font-size: 26px;
  position: relative;
  z-index: 1;
}

.hero-bottom {
  position: absolute;
  left: 11%;
  right: 56px;
  bottom: 34px;
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.hero-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.hero-tags span {
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);

  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-tags span:first-child {
  padding-left: 0;
  border-left: none;
}

.hero-arrows {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.hero-arrows button {
  width: 50px;
  height: 50px;

  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  color: #ffffff;

  font-size: 24px;
  line-height: 1;
  cursor: pointer;

  transition: 0.25s ease;
}

.hero-arrows button:hover {
  background-color: #d9b66f;
  border-color: #d9b66f;
  color: #111111;
}

.hero-arrows button:last-child {
  border-color: #d9b66f;
}

@media (max-width: 900px) {
  .hero-content {
    width: calc(100% - 48px);
    margin-left: 24px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-bottom {
    left: 24px;
    right: 24px;
    bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-tags {
    gap: 10px;
  }

  .hero-tags span {
    padding: 0 10px 0 0;
    border-left: none;
    font-size: 12px;
  }
}

/* hero section ends */



/* intro section */
.intro-section {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 70px 56px 0;
  background:
    radial-gradient(circle at 32% 45%, rgba(217, 182, 111, 0.12), transparent 34%),
    #f4f0e8;
  border-bottom: 1px solid rgba(11, 11, 11, 0.08);
}


.intro-container {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 86px;
  align-items: start;
}

.intro-copy > span {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;

  color: #b78d45;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-copy > span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;

  width: 72px;
  height: 1px;
  background-color: #d9b66f;
}

.intro-copy h2 {
  margin-bottom: 18px;

  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1.02;
  font-weight: 500;
  color: #15110c;
}

.intro-copy p {
  max-width: 470px;
  margin-bottom: 12px;

  color: #5d564d;
  font-size: 15px;
  line-height: 1.7;
}

.intro-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  min-height: 46px;
  margin-top: 12px;
  padding: 0 24px;

  background-color: #d9b66f;
  color: #111111;
  text-decoration: none;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}


.intro-copy a span {
  margin: 0;
  color: inherit;
  font-size: 18px;
  letter-spacing: 0;
}


.intro-copy a span::after {
  display: none;
}


.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 8px;
}


.intro-stat {
  min-height: 128px;
  padding: 0 24px;
  text-align: center;
  border-left: 1px solid rgba(21, 17, 12, 0.12);
}

.intro-stat:first-child {
  border-left: none;
}

.intro-icon {
  height: 30px;
  margin-bottom: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-icon svg {
  width: 34px;
  height: 34px;

  fill: none;
  stroke: #b78d45;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.intro-stat-n {
  margin-bottom: 6px;

  font-family: var(--font-serif);
  color: #15110c;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}


.intro-stat-l {
  max-width: 96px;
  margin: 0 auto;

  color: #4f4942;
  font-size: 12px;
  line-height: 1.22;
  font-weight: 600;
}


.intro-skyline {
  position: absolute;
  left: 30%;
  right: 0;
  bottom: -42px;
  z-index: 1;

  width: 70%;
  height: 520px;
  object-fit: fill;
  object-position: center bottom;

  opacity: 0.24;
  mix-blend-mode: multiply;
  filter: grayscale(1) sepia(0.16);
}

/* intro section ends */


/* section services */
.services-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 56px;

  background:
    linear-gradient(rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.36)),
    url("../images/services-finance-bg.png") center / cover no-repeat;
}


.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(circle at 50% 0%, rgba(217, 182, 111, 0.12), transparent 30%);

  pointer-events: none;
}

.services-section::after {
  display: none;
}

.services-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.services-heading {
  max-width: 680px;
  margin: 0 auto 58px;
  text-align: center;
}

.services-heading::before {
  content: "WHAT WE DO FOR YOU";
  display: block;
  width: fit-content;
  margin: 0 auto 24px;
  padding-bottom: 10px;

  color: #d9b66f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;

  border-bottom: 1px solid #d9b66f;
}

.services-heading h2 {
  margin-bottom: 16px;

  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.05;
  font-weight: 500;
  color: #ffffff;
}

.services-heading p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  min-height: 300px;
  padding: 44px 34px 38px;

  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;

  text-align: center;
  border: 1px solid rgba(217, 182, 111, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 182, 111, 0.08), transparent 45%),
    rgba(10, 10, 10, 0.9);

  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, 0.025),
    0 18px 42px rgba(0, 0, 0, 0.22);

  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 2px;
  background-color: rgba(217, 182, 111, 0.78);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(217, 182, 111, 0.18), transparent 44%);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:nth-child(1) {
  background: radial-gradient(circle at 50% 0%, rgba(217, 182, 111, 0.08), transparent 45%), #10100f;
}

.service-card:nth-child(2) {
  background: radial-gradient(circle at 50% 0%, rgba(217, 182, 111, 0.08), transparent 45%), #17130d;
}

.service-card:nth-child(3) {
  background: radial-gradient(circle at 50% 0%, rgba(217, 182, 111, 0.08), transparent 45%), #0d1110;
}

.service-card:nth-child(4) {
  background: radial-gradient(circle at 50% 0%, rgba(217, 182, 111, 0.08), transparent 45%), #1b1710;
}

.service-card:nth-child(5) {
  background: radial-gradient(circle at 50% 0%, rgba(217, 182, 111, 0.08), transparent 45%), #0f0f12;
}

.service-card:nth-child(6) {
  background: radial-gradient(circle at 50% 0%, rgba(217, 182, 111, 0.08), transparent 45%), #18130d;
}


.service-icon,
.service-card h3,
.service-hint,
.service-card p {
  position: relative;
  z-index: 2;
}

.service-icon {
  transition: opacity 0.35s ease;
}

.service-icon svg {
  width: 54px;
  height: 54px;

  fill: none;
  stroke: #d9b66f;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  max-width: 280px;

  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.22;
  font-weight: 500;
  color: #ffffff;

  transition: opacity 0.35s ease;
}

.service-hint {
  margin-top: 2px;

  color: #d9b66f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: opacity 0.35s ease;
}

.service-card p {
  position: absolute;
  left: 44px;
  right: 44px;
  top: 50%;

  margin: 0;

  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;

  opacity: 0;
  transform: translateY(-50%);

  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 182, 111, 0.78);
  background-color: #1c1710;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover h3,
.service-card:hover .service-icon,
.service-card:hover .service-hint {
  opacity: 0.1;
}

.service-card:hover p {
  opacity: 1;
}


.services-more {
  margin-top: 54px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.services-more span {
  width: 42px;
  height: 2px;
  background-color: #d9b66f;
}

.services-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 150px;
  height: 48px;
  padding: 0 24px;

  background-color: #d9b66f;
  color: #111111;
  text-decoration: none;

  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .services-section {
    padding: 80px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* service section ends */


/* why choose us section */
.why-section {
  background-color: #f4f0e8;
  padding: 120px 56px;
}

.why-container {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 48px;

  align-items: start;
}

.why-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  background-color: #15110c;
  border: none;
}

.why-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.why-heading {
  max-width: 660px;
  margin-bottom: 42px;
}

.why-heading span {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;

  color: #b78d45;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-heading span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;

  width: 72px;
  height: 1px;
  background-color: #d9b66f;
}

.why-heading h2 {
  margin-bottom: 16px;

  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.08;
  font-weight: 500;
  color: #15110c;
}

.why-heading p {
  font-size: 17px;
  line-height: 1.75;
  color: #5d564d;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.why-card {
  min-height: 220px;
  padding: 24px 22px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;

  background-color: #e8ddca;
  border: 1px solid rgba(183, 141, 69, 0.2);

}

.why-card:nth-child(2) {
  background-color: #f0e7d8;
}

.why-card:nth-child(3) {
  background-color: #eadfcd;
}

.why-card:nth-child(4) {
  background-color: #eadfcd;
}

.why-icon {
  margin-bottom: 10px;
}

.why-icon svg {
  width: 54px;
  height: 58px;

  fill: none;
  stroke: #b78d45;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card-content {
  width: 100%;
  height: 180px;
  padding: 22px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  background-color: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.why-card:nth-child(2) .why-card-content,
.why-card:nth-child(3) .why-card-content {
  background-color: rgba(255, 255, 255, 0.28);
}

.why-card-content h3 {
  min-height: 58px;
  margin-bottom: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 23px;
  line-height: 1.25;
  font-weight: 800;
  color: #15110c;
}

.why-card-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #5d564d;
}
/* why choose us sectn ends */



/* testimonial(cream) */ 
.testimonials-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 182, 111, 0.14), transparent 30%),
    #f4f0e8;
  padding: 120px 0;
  overflow: hidden;
}

.testimonials-heading {
  text-align: center;
  padding: 0 56px;
  margin-bottom: 56px;
}

.testimonials-heading span {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;

  font-size: 12px;
  font-weight: 800;
  color: #b78d45;
  letter-spacing: 0.18em;
}

.testimonials-heading span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;

  width: 72px;
  height: 1px;

  background-color: #d9b66f;
  transform: translateX(-50%);
}

.testimonials-heading h2 {
  margin-bottom: 16px;

  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.08;
  color: #15110c;
}

.testimonials-heading p {
  font-size: 17px;
  line-height: 1.75;
  color: #5d564d;
  max-width: 560px;
  margin: 0 auto;
}

.testimonials-container {
  width: 100%;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  padding: 0 56px;

  transition: transform 0.6s ease;
}

.testimonial-slide-card {
  position: relative;
  flex: 0 0 680px;
  min-height: 330px;
  padding: 38px 42px 48px;

  background:
    radial-gradient(circle at 50% 0%, rgba(217, 182, 111, 0.08), transparent 45%),
    #10100f;

  border: 1px solid rgba(217, 182, 111, 0.3);
  overflow: hidden;

  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, 0.025),
    0 18px 42px rgba(21, 17, 12, 0.18);
}

.testimonial-slide-card:nth-child(2n) {
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 182, 111, 0.07), transparent 45%),
    #17130d;
}

.testimonial-slide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 42px;
  right: 42px;

  height: 2px;
  background-color: rgba(217, 182, 111, 0.78);
}

.testimonial-slide-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;

  width: 58px;
  height: 58px;

  background: linear-gradient(
    135deg,
    rgba(217, 182, 111, 0.08) 0%,
    rgba(217, 182, 111, 0.08) 50%,
    rgba(217, 182, 111, 0.32) 50%,
    rgba(217, 182, 111, 0.32) 100%
  );
}

.testimonial-slide-card hr {
  margin: 28px 0 30px;
  border: none;
  border-top: 1px solid rgba(217, 182, 111, 0.18);
}

.testimonial-quote {
  position: absolute;
  right: 42px;
  top: 26px;

  font-family: var(--font-serif);
  line-height: 1;
  color: rgba(217, 182, 111, 0.16);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.testimonial-avatar {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(217, 182, 111, 0.12);
  border: 1px solid rgba(217, 182, 111, 0.26);
  border-radius: 50%;
}

.testimonial-avatar svg {
  width: 32px;
  height: 32px;

  fill: none;
  stroke: #d9b66f;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-profile h4 {
  margin-bottom: 5px;

  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}

.testimonial-profile span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
}

.testimonial-slide-card p {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-bullets {
  margin-top: 42px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonial-bullet {
  width: 9px;
  height: 9px;

  border: none;
  border-radius: 50%;

  background-color: rgba(21, 17, 12, 0.25);
  cursor: pointer;

  transition: width 0.3s ease, background-color 0.3s ease;
}

.testimonial-bullet.active {
  width: 28px;
  border-radius: 999px;
  background-color: #d9b66f;
}
/* testimonial ends */

/* FAQ */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 90px 56px;

  background:
    linear-gradient(rgba(8, 7, 6, 0.08), rgba(8, 7, 6, 0.08)),
    url("../images/faq-section.png") center / cover no-repeat;
}

.faq-container {
  position: relative;
  z-index: 2;

  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.faq-left span {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;

  font-size: 14px;
  font-weight: 800;
  color: #d9b66f;
  letter-spacing: 0.18em;
}

.faq-left span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;

  width: 62px;
  height: 1px;
  background-color: #d9b66f;
}

.faq-left h2 {
  margin-bottom: 28px;

  font-family: var(--font-serif);
  font-size: 54px;
  line-height: 1.05;
  font-weight: 500;
  color: #ffffff;
}

.faq-left p {
  max-width: 430px;
  margin-bottom: 34px;

  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.faq-left a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 170px;
  height: 52px;
  padding: 0 24px;

  background-color: #d9b66f;
  color: #111111;
  text-decoration: none;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 520px;
}

.faq-item {
  width: 100%;
}

.faq-question {
  width: 100%;
  min-height: 72px;
  padding: 14px 22px 14px 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  background-color: rgba(255, 250, 241, 0.9);
  border: 1px solid rgba(183, 141, 69, 0.34);
  border-radius: 5px;

  color: #15110c;
  text-align: left;
  cursor: pointer;

  backdrop-filter: blur(8px);
}

.faq-question span:first-child {
  max-width: 640px;

  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.faq-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #c99d4f;
  border-radius: 50%;

  font-size: 24px;
  line-height: 1;
  color: #c99d4f;
  background-color: transparent;

  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  max-width: 650px;
  padding: 18px 26px 26px;

  font-size: 17px;
  line-height: 1.75;
  color: #5d564d;
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

.faq-item.active .faq-icon {
  background-color: #d9b66f;
  color: #15110c;
  border-color: #d9b66f;
  transform: rotate(45deg);
}

.faq-page {
  display: none;
  min-height: 450px;
}

.faq-page.active {
  display: block;
}

.faq-slider-controls {
  margin-top: 24px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.faq-bullet {
  width: 14px;
  height: 14px;

  border: none;
  border-radius: 50%;

  background-color: rgba(21, 17, 12, 0.25);
  cursor: pointer;

  transition: width 0.3s ease, background-color 0.3s ease;
}

.faq-bullet.active {
  width: 38px;
  border-radius: 999px;
  background-color: #d9b66f;
}

@media (max-width: 900px) {
  .faq-section {
    padding: 80px 24px;
    background-position: center;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-left h2 {
    font-size: 38px;
  }

  .faq-question span:first-child {
    font-size: 20px;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .faq-bullet {
    width: 16px;
    height: 16px;
  }

  .faq-bullet.active {
    width: 42px;
  }
}
/* faq ends */



/* contact section */
.contact-section {
  background:
    radial-gradient(circle at 28% 30%, rgba(217, 182, 111, 0.14), transparent 34%),
    #f4f0e8;
  color: #15110c;
  padding: 110px 56px;
}

.contact-container {
  max-width: 1180px;
  margin: 0 auto;

  padding: 56px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;

  background-color: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(183, 141, 69, 0.22);
  backdrop-filter: blur(8px);
}

.contact-content span {
  display: inline-block;
  margin-bottom: 18px;

  font-size: 12px;
  font-weight: 800;
  color: #b78d45;
  letter-spacing: 0.12em;
}

.contact-content h2 {
  margin-bottom: 20px;

  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.08;
  font-weight: 500;
  color: #15110c;
}

.contact-content p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.75;
  color: #5d564d;
}

.contact-meta {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(183, 141, 69, 0.22);
}

.contact-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-meta-item small {
  font-size: 10px;
  color: #b78d45;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-meta-item a,
.contact-meta-item span {
  font-size: 13px;
  font-weight: 700;
  color: #15110c;
  text-decoration: none;
}

.contact-meta-item a:hover {
  color: #b78d45;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-main-btn {
  display: block;
  text-align: center;
  background-color: #d9b66f;
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  padding: 16px 28px;
  text-decoration: none;
}

.contact-secondary-btn {
  display: block;
  text-align: center;
  border: 1px solid #b78d45;
  color: #15110c;
  font-size: 13px;
  font-weight: 800;
  padding: 16px 28px;
  text-decoration: none;
}

.contact-secondary-btn:hover {
  background-color: #b78d45;
  border-color: #15110c;
  color: #ffffff;
}

.contact-note {
  text-align: center;
  font-size: 11px;
  color: #5d564d;
  margin-top: 4px;
}
/* conatact section ends */


/* footer */
.footer {
  background-color: #0b0b0b;
  padding: 70px 56px 0;
  border-top: none;
}

.footer,
.footer * {
  color: rgba(255, 255, 255, 0.86);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-logo img {
  height: 58px;
  width: auto;
  display: block;
  margin-bottom: 24px;
}

.footer p,
.footer-brand p,
.footer-contact p,
.footer-col p,
.footer-bottom-inner p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.8;
}

.footer-links,
.footer-col {
  display: grid;
  gap: 14px;
}

.footer-links a,
.footer-col a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-col a:hover,
.footer-contact a:hover,
.footer-bottom-links a:hover {
  color: #d9b66f;
}

.footer-col h4,
.footer-contact h4 {
  margin-bottom: 24px;

  font-size: 13px;
  font-weight: 800;
  color: #b78d45;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-color: rgba(217, 182, 111, 0.34);
  text-decoration: none;
}

.social-btn:hover {
  border-color: #d9b66f;
}

.social-btn svg {
  width: 16px;
  height: 16px;

  fill: none;
  stroke: #d9b66f;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-countries {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.footer-countries span {
  padding: 4px 12px;

  color: #d9b66f;
  border-color: rgba(217, 182, 111, 0.34);

  font-size: 11px;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 58px;
  border-top-color: rgba(217, 182, 111, 0.18);
}

.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 13px;
}

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
  }
}

@media (max-width: 650px) {
  .footer {
    padding: 56px 24px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ======================================================
   LEGAL PAGES (Privacy Policy & Terms & Conditions)
   Matches Insight Edge Website Theme
   ====================================================== */
/* Legal pages */
.legal-body {
    background: #f4f0e8;
}

.legal-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 160px 56px 110px;
    min-height: 80vh;

    background: #fbf7ef;
    box-shadow: 0 20px 60px rgba(21, 17, 12, 0.06);
}

.legal-page h1 {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 500;
    color: #15110c;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(183, 141, 69, 0.3);
}

.legal-page h2 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: #15110c;
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.85;
    color: #5d564d;
    margin-bottom: 14px;
}

.legal-page ul {
    padding-left: 24px;
    margin-bottom: 14px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.85;
    color: #5d564d;
    margin-bottom: 6px;
}

.legal-page-body .navbar {
      background: linear-gradient(
    90deg,
    #1a1a1a 0%,
    #3a3835 28%,
    #8d877f 58%,
    #d8d1c7 82%,
    #f4f0e8 100%
);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 130px 24px 80px;
    }
    .legal-page h1 {
        font-size: 36px;
    }
}
/* footer ends */
/* ---------------index page ends------------ 
--------------------------------------------*/


/* service page hero */
.service-hero {
  min-height: 620px;
  padding: 160px 56px 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.48), rgba(244, 240, 232, 0.14)),
    url("../images/services-finance-bg.png") center / cover no-repeat;

  text-align: center;
}

.service-hero-content {
  max-width: 840px;
}

.service-hero-content span {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;

  color: #d9b66f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-hero-content span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;

  width: 72px;
  height: 1px;

  background-color: #d9b66f;
  transform: translateX(-50%);
}

.service-hero-content h1 {
  margin-bottom: 22px;

  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1.04;
  font-weight: 500;
  color: #ffffff;
}

.service-hero-content p {
  max-width: 680px;
  margin: 0 auto;

  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}


/* service list page */
.service-list-section {
  background:
    radial-gradient(circle at 24% 12%, rgba(217, 182, 111, 0.12), transparent 30%),
    #f4f0e8;
  padding: 110px 56px;
}

.service-list-container {
  max-width: 1280px;
  margin: 0 auto;
}

.service-list-section .services-heading {
  max-width: 720px;
  margin: 0 auto 62px;
  text-align: center;
}

.service-list-section .services-heading h2 {
  margin-bottom: 16px;

  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.08;
  font-weight: 500;
  color: #15110c;
}

.service-list-section .services-heading p {
  font-size: 17px;
  line-height: 1.75;
  color: #5d564d;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-page-card {
  overflow: hidden;

  background-color: #fbf7ef;
  border: 1px solid rgba(183, 141, 69, 0.22);

  box-shadow: 0 18px 42px rgba(21, 17, 12, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-page-card:nth-child(2n) {
  background-color: #efe4d2;
}

.service-page-card:nth-child(3n) {
  background-color: #f7eedf;
}

.service-page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 141, 69, 0.48);
  box-shadow: 0 24px 54px rgba(21, 17, 12, 0.14);
}

.service-page-card img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
  object-position: center;

  filter: saturate(0.88) contrast(1.04);
}

.service-page-card div {
  padding: 32px 30px 36px;
}

.service-page-card h3 {
  margin-bottom: 14px;

  font-family: var(--font-serif);
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
  color: #15110c;
}

.service-page-card p {
  margin-bottom: 26px;

  font-size: 15px;
  line-height: 1.75;
  color: #5d564d;
}

@media (max-width: 1000px) {
  .service-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-hero-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 650px) {
  .service-hero,
  .service-list-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-page-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-content h1 {
    font-size: 40px;
  }
}
/*-----------service page ends============ */

/* contact-html page */

.contact-hero {
  position: relative;
  overflow: hidden;

  padding: 170px 56px 105px;

  background:
    radial-gradient(circle at 22% 24%, rgba(217, 182, 111, 0.10), transparent 35%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.45), rgba(21, 17, 12, 0.35)),
    url("../images/contact-hero.png") center 60% /cover no-repeat;

  border-bottom: 1px solid rgba(183, 141, 69, 0.18);
  
}

.contact-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-hero span,
.contact-info span {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;

  font-size: 12px;
  font-weight: 800;
  color: #d9b66f;
  letter-spacing: 0.18em;
}

.contact-hero span::after,
.contact-info span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;

  width: 72px;
  height: 1px;
  background-color: #d9b66f;
}

.contact-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;

  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1.04;
  font-weight: 500;
  color: #ffffff;
}

.contact-hero p {
  max-width: 620px;

  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.contact-page-section {
  padding: 110px 56px;

  background:
    radial-gradient(circle at 76% 20%, rgba(217, 182, 111, 0.12), transparent 30%),
    #f4f0e8;
}

.contact-page-container {
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: stretch;
}

.contact-info {
  width: 100%;
  max-width: 470px;
}

.contact-info h2 {
  margin-bottom: 22px;

  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.08;
  font-weight: 500;
  color: #15110c;
}

.contact-info > p {
  width: 100%;
  margin-bottom: 42px;

  font-size: 17px;
  line-height: 1.8;
  color: #5d564d;
}

.contact-details {
  width: 100%;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(183, 141, 69, 0.24);
}

.contact-detail {
  padding: 22px 0;
  border-bottom: 1px solid rgba(183, 141, 69, 0.24);
}

.contact-detail small {
  display: block;
  margin-bottom: 6px;

  font-size: 12px;
  font-weight: 800;
  color: #b78d45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  color: #15110c;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.contact-detail a:hover {
  color: #b78d45;
}

.contact-form {
  height: 100%;
  padding: 52px;
  gap: 18px;

  display: flex;
  flex-direction: column;

  background-color: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(183, 141, 69, 0.26);
  box-shadow: 0 22px 54px rgba(21, 17, 12, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin: 0;
  padding: 0 24px;

  border: 1px solid rgba(183, 141, 69, 0.24);
  background-color: #fbf7ef;
  color: #15110c;

  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1;
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 66px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(93, 86, 77, 0.7);
}

.contact-form textarea {
  min-height: 260px;
  padding-top: 22px;
  padding-bottom: 22px;
  line-height: 1.7;
  resize: vertical;
  flex: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b78d45;
}

.contact-form button {
  min-width: 170px;
  width: 100%;
  height: 62px;
  padding: 0 26px;
  margin-top: 4px;

  border: none;
  background-color: #15110c;
  color: #ffffff;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #d9b66f;
  color: #111111;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #b78d45;
  background-color: #fffaf1;
}

.phone-group {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
}

.phone-group select {
    min-width: 160px;
}

.phone-group input[name="inquiry_subject"] {
  grid-column: 1 / -1;
}


@media (max-width: 900px) {
  .contact-hero,
  .contact-page-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-page-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-hero h1,
  .contact-info h2 {
    font-size: 42px;
  }

  .contact-form {
    padding: 28px;
  }
}

@media (max-width: 650px) {
  .form-row,
  .phone-group {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .phone-group input[name="inquiry_subject"] {
    grid-column: auto;
  }
}


/* Toast notification */
.toast {
    position: fixed;
    bottom: 100px;
    right: 32px;
    z-index: 9998;

    display: flex;
    align-items: center;
    gap: 12px;

    background: #15110c;
    border: 1px solid rgba(217, 182, 111, 0.35);
    padding: 14px 18px;

    min-width: 240px;
    max-width: 300px;

    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);

    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s ease;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(217, 182, 111, 0.12);
    border: 0.5px solid rgba(217, 182, 111, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-content h5 {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.toast-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}

.toast-close:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* contact map */
.map-section {
  padding: 0 56px 110px;
  background: #f4f0e8;
}

.map-container {
  max-width: 1180px;
  margin: 0 auto;
}

.map-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.map-heading span {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;

  color: #b78d45;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.map-heading span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;

  width: 72px;
  height: 1px;
  background-color: #d9b66f;
}

.map-heading h2 {
  margin-bottom: 14px;

  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1.08;
  font-weight: 500;
  color: #15110c;
}

.map-heading p {
  font-size: 17px;
  line-height: 1.7;
  color: #5d564d;
}

.map-frame {
  width: 100%;
  height: 430px;

  overflow: hidden;
  border: 1px solid rgba(183, 141, 69, 0.26);
  box-shadow: 0 22px 54px rgba(21, 17, 12, 0.1);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 900px) {
  .map-section {
    padding: 0 24px 80px;
  }

  .map-heading h2 {
    font-size: 36px;
  }

  .map-frame {
    height: 360px;
  }
}

/* about page hero */
.about-hero {
  position: relative;
  min-height: 720px;
  padding: 170px 56px 100px;

  display: flex;
  align-items: center;

  overflow: hidden;
  background-color: #070706;
}

.about-hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.72) 38%, rgba(5, 5, 5, 0.28) 72%, rgba(5, 5, 5, 0.16) 100%),
    url("../images/aboutus-hero.png") center / cover no-repeat;

  transform: scale(1.05);
  animation: aboutHeroZoom 14s ease-in-out infinite alternate;
}

.about-hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(circle at 62% 42%, rgba(217, 182, 111, 0.16), transparent 28%),
    linear-gradient(115deg, transparent 0%, transparent 44%, rgba(217, 182, 111, 0.12) 45%, transparent 46%),
    linear-gradient(125deg, transparent 0%, transparent 58%, rgba(217, 182, 111, 0.08) 59%, transparent 60%);

  opacity: 0.8;
  animation: aboutLinesMove 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;

  max-width: 680px;
  color: #ffffff;
}

.about-hero-content span {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;

  color: #d9b66f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.about-hero-content span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;

  width: 76px;
  height: 1px;
  background-color: #d9b66f;
}

.about-hero-content h1 {
  margin-bottom: 26px;

  font-family: var(--font-serif);
  font-size: 68px;
  line-height: 1.02;
  font-weight: 500;
}

.about-hero-content p {
  max-width: 600px;

  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
}

@keyframes aboutHeroZoom {
  from {
    transform: scale(1.05) translateX(0);
  }

  to {
    transform: scale(1.12) translateX(-18px);
  }
}

@keyframes aboutLinesMove {
  from {
    opacity: 0.45;
    transform: translateX(0);
  }

  to {
    opacity: 0.85;
    transform: translateX(-24px);
  }
}

@media (max-width: 900px) {
  .about-hero {
    min-height: 640px;
    padding: 150px 24px 80px;
  }

  .about-hero-content h1 {
    font-size: 44px;
  }

  .about-hero-content p {
    font-size: 17px;
  }
}

/* about story */
.about-story-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 182, 111, 0.13), transparent 32%),
    #f4f0e8;
  padding: 110px 56px;
}

.about-story-container {
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: start;
}

.about-story-copy span {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;

  color: #b78d45;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.about-story-copy span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;

  width: 72px;
  height: 1px;
  background-color: #d9b66f;
}

.about-story-copy h2 {
  margin-bottom: 24px;

  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.06;
  font-weight: 500;
  color: #15110c;
}

.about-story-copy p {
  max-width: 560px;
  margin-bottom: 18px;

  font-size: 17px;
  line-height: 1.85;
  color: #5d564d;
}

.about-story-points {
  display: grid;
  gap: 18px;
}

.about-story-point {
  padding: 30px 32px;

  background-color: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(183, 141, 69, 0.24);
  box-shadow: 0 18px 42px rgba(21, 17, 12, 0.08);
}

.about-story-point span {
  display: inline-block;
  margin-bottom: 18px;

  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  color: #b78d45;
}

.about-story-point h3 {
  margin-bottom: 10px;

  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #15110c;
}

.about-story-point p {
  font-size: 15px;
  line-height: 1.75;
  color: #5d564d;
}

@media (max-width: 900px) {
  .about-story-section {
    padding: 80px 24px;
  }

  .about-story-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-story-copy h2 {
    font-size: 40px;
  }
}

/* vision mission */
.about-vm-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 120px 56px;

  background:
    linear-gradient(rgba(5, 5, 5, 0.32), rgba(5, 5, 5, 0.52)),
    url("../images/vision-mission.png") center / cover no-repeat;
}

.about-vm-container {
  max-width: 1180px;
  margin: 0 auto;
}

.about-vm-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-vm-heading span {
  position: relative;
  display: inline-block;
  margin-bottom: 26px;

  color: #d9b66f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.about-vm-heading span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;

  width: 170px;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    #d9b66f 42%,
    #d9b66f 58%,
    transparent
  );

  transform: translateX(-50%);
}

.about-vm-heading span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19px;

  width: 9px;
  height: 9px;

  background: #d9b66f;
  transform: translateX(-50%) rotate(45deg);
}

.about-vm-heading h2 {
  max-width: 680px;
  margin: 0 auto;

  font-family: var(--font-serif);
  font-size: 50px;
  line-height: 1.12;
  font-weight: 500;
  color: #ffffff;
}

.about-vm-grid {
  max-width: 1050px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-vm-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  min-height: 430px;
  padding: 36px 48px 48px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  border: 1px solid rgba(217, 182, 111, 0.55);
  border-radius: 7px;

  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);

  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}

.about-vm-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 182, 111, 0.85);
  box-shadow: 0 32px 76px rgba(0, 0, 0, 0.34);
}

.about-vm-card.reveal.show:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(21, 17, 12, 0.18);
    border-color: rgba(217, 182, 111, 0.45);
}


/* top gold bar */
.about-vm-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 31%;
  right: 31%;
  height: 7px;
  z-index: 3;

  background: linear-gradient(90deg, #b78d45, #f4d08a, #b78d45);
  border-radius: 0 0 3px 3px;
}

/* Vision card background */
.about-vm-dark {
  background:
    linear-gradient(rgba(8, 8, 8, 0.38), rgba(8, 8, 8, 0.58)),
    url("../images/vision.png") center / cover no-repeat;
}

/* Mission card background */
.about-vm-light {
  background:
    linear-gradient(rgba(244, 240, 232, 0.18), rgba(244, 240, 232, 0.58)),
    url("../images/mision.png") 82% 100% / cover no-repeat;
}

.about-vm-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(217, 182, 111, 0.72);
  border-radius: 50%;
  background: rgba(217, 182, 111, 0.04);
  backdrop-filter: blur(4px);
}

.about-vm-icon svg {
  width: 42px;
  height: 42px;

  fill: none;
  stroke: #d9b66f;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-vm-card h3 {
  position: relative;
  margin-bottom: 26px;

  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.1;
  font-weight: 500;
}

.about-vm-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;

  width: 48px;
  height: 2px;

  background: #d9b66f;
  transform: translateX(-50%);
}

.about-vm-card p {
  max-width: 390px;

  font-size: 17px;
  line-height: 1.75;
}

.about-vm-dark h3 {
  color: #d9b66f;
}

.about-vm-dark p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 330px;
}

.about-vm-light h3 {
  color: #111111;
}

.about-vm-light p {
  max-width: 330px;
  color: #2f2a22;
}

.about-vm-light .about-vm-icon {
  background: rgba(217, 182, 111, 0.08);
}

@media (max-width: 900px) {
  .about-vm-section {
    padding: 90px 24px;
  }

  .about-vm-heading h2 {
    font-size: 38px;
  }

  .about-vm-grid {
    grid-template-columns: 1fr;
  }

  .about-vm-card {
    min-height: 440px;
    padding: 44px 28px;
  }

  .about-vm-card h3 {
    font-size: 34px;
  }

  .about-vm-card p {
    font-size: 16px;
  }
}



/* about presence */
.about-presence-section {
  position: relative;
  overflow: hidden;
  padding: 105px 56px;

  background:
    linear-gradient(
        rgba(244, 240, 232, 0.55),
        rgba(244, 240, 232, 0.70)
    ),
    url("../images/intro-dubai-skyline.png") center bottom / 95% auto no-repeat,
    #f4f0e8;
}

.about-presence-container {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: 0 auto;
}

.about-presence-copy {
  max-width: 720px;
  margin-bottom: 34px;
  
}

.about-presence-copy span {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;

  color: #b78d45;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.about-presence-copy span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;

  width: 72px;
  height: 1px;
  background-color: #d9b66f;
}

.about-presence-copy h2 {
  max-width: 700px;
  margin-bottom: 20px;

  font-family: var(--font-serif);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 500;
  color: #15110c;
}

.about-presence-copy p {
  max-width: 650px;

  font-size: 17px;
  line-height: 1.8;
  color: #5d564d;
}

.about-presence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 105px;
}

.about-presence-card {
  min-height: 210px;
  padding: 34px 30px;

  background-color: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(183, 141, 69, 0.24);
  box-shadow: 0 18px 42px rgba(21, 17, 12, 0.08);

  text-align: center;

  width: 100%;
  height: 100%;
  object-fit: contain;

}

.about-presence-card strong {
    display: block;
    margin-bottom: 18px;

    color: #B78D45;
    font-size: 3.6rem;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.about-presence-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #5d564d;

  max-width: 280px;
  margin: 0 auto;
}

/* Country map inside Presence cards */
.presence-map {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.presence-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    /* Convert black SVG to your champagne gold brand color (#D9B66F) */
    filter: brightness(0) saturate(100%)
            invert(73%) sepia(33%) saturate(512%)
            hue-rotate(8deg) brightness(96%) contrast(89%);
}

@media (max-width: 900px) {
  .about-presence-section {
    padding: 80px 24px;
    background-size: 130% auto;
  }

  .about-presence-copy h2 {
    font-size: 38px;
  }

  .about-presence-grid {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp Float Button-color theme full black*/
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;

  width: 56px;
  height: 56px;

  background: #15110c;
  border: 1px solid rgba(217, 182, 111, 0.65);
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(21, 17, 12, 0.32);

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.92);
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.wa-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-float:hover {
  background: #d9b66f;
  transform: scale(1.12);
  box-shadow: 0 12px 34px rgba(217, 182, 111, 0.34);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.wa-float:hover svg {
  fill: #111111;
}

.wa-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;

  background: #d9b66f;
  border-radius: 50%;
  border: 2.5px solid #15110c;

  animation: waPulse 2s infinite;
}

.wa-float:hover .wa-pulse {
  border-color: #d9b66f;
  background: #15110c;
}

@keyframes waPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.72;
  }
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 110px; /* sits above WhatsApp button */
    z-index: 999;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0B0B0B;
    color: #D9B66F;
    text-decoration: none;
    font-size: 28px;
    font-weight: 400;

    border: 1px solid rgba(217, 182, 111, 0.35);
    border-radius: 50%;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #D9B66F;
    color: #111111;
    border-color: #D9B66F;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .back-to-top {
        right: 20px;
        bottom: 100px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}


/* shared radial button hover for all pages */
.hero-btn,
.whatsapp-btn,
.intro-copy a,
.services-more a,
.faq-left a,
.contact-main-btn,
.contact-secondary-btn,
.service-page-card a,
.contact-form button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.hero-btn::before,
.whatsapp-btn::before,
.intro-copy a::before,
.services-more a::before,
.faq-left a::before,
.contact-main-btn::before,
.contact-secondary-btn::before,
.service-page-card a::before,
.contact-form button::before {
  content: "";
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  z-index: -1;

  width: 170px;
  height: 170px;
  border-radius: 50%;

  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.hero-btn:hover::before,
.whatsapp-btn:hover::before,
.intro-copy a:hover::before,
.services-more a:hover::before,
.faq-left a:hover::before,
.contact-main-btn:hover::before,
.contact-secondary-btn:hover::before,
.service-page-card a:hover::before,
.contact-form button:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.hero-btn:hover,
.whatsapp-btn:hover,
.intro-copy a:hover,
.services-more a:hover,
.faq-left a:hover,
.contact-main-btn:hover,
.contact-secondary-btn:hover,
.service-page-card a:hover,
.contact-form button:hover {
  transform: translateY(-2px);
}

/* gold buttons: black/champagne ball */
.hero-btn-gold::before,
.whatsapp-btn::before,
.intro-copy a::before,
.services-more a::before,
.faq-left a::before,
.contact-main-btn::before {
  background: radial-gradient(
    circle,
    #f4f0e8 0%,
    #d9b66f 28%,
    #8b6a32 58%,
    #15110c 100%
  );
}

.hero-btn-gold:hover,
.whatsapp-btn:hover,
.intro-copy a:hover,
.services-more a:hover,
.faq-left a:hover,
.contact-main-btn:hover {
  color: #ffffff;
  border-color: #d9b66f;
}

/* black / white buttons: champagne ball */
.hero-btn-outline::before,
.contact-secondary-btn::before,
.service-page-card a::before,
.contact-form button::before {
  background: radial-gradient(
    circle,
    #fff1c9 0%,
    #d9b66f 35%,
    #b78d45 65%,
    #7a5420 100%
  );
}

.hero-btn-outline:hover,
.contact-secondary-btn:hover,
.service-page-card a:hover,
.contact-form button:hover {
  color: #111111;
  border-color: #d9b66f;
}

/* make nav whatsapp match theme */
.whatsapp-btn {
  background: #d9b66f;
  color: #111111;
}

/* keep inner arrow/text above effect */
.hero-btn span,
.intro-copy a span {
  position: relative;
  z-index: 1;
}

/* premium button hover final */
.hero-btn,
.whatsapp-btn,
.intro-copy a,
.services-more a,
.faq-left a,
.contact-main-btn,
.contact-secondary-btn,
.service-page-card a,
.contact-form button {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  border-radius: 999px;

  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);

  transform: translateY(0) scale(1);

  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.hero-btn::before,
.whatsapp-btn::before,
.intro-copy a::before,
.services-more a::before,
.faq-left a::before,
.contact-main-btn::before,
.contact-secondary-btn::before,
.service-page-card a::before,
.contact-form button::before {
  content: "";
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  z-index: -1;

  width: 190px;
  height: 190px;
  border-radius: 50%;

  transform: translate(-50%, -50%) scale(0);
  opacity: 0;

  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;

  pointer-events: none;
}

.hero-btn:hover::before,
.whatsapp-btn:hover::before,
.intro-copy a:hover::before,
.services-more a:hover::before,
.faq-left a:hover::before,
.contact-main-btn:hover::before,
.contact-secondary-btn:hover::before,
.service-page-card a:hover::before,
.contact-form button:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.hero-btn:hover,
.whatsapp-btn:hover,
.intro-copy a:hover,
.services-more a:hover,
.faq-left a:hover,
.contact-main-btn:hover,
.contact-secondary-btn:hover,
.service-page-card a:hover,
.contact-form button:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 0 4px rgba(217, 182, 111, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-btn.tap-effect::before,
.whatsapp-btn.tap-effect::before,
.intro-copy a.tap-effect::before,
.services-more a.tap-effect::before,
.faq-left a.tap-effect::before,
.contact-main-btn.tap-effect::before,
.contact-secondary-btn.tap-effect::before,
.service-page-card a.tap-effect::before,
.contact-form button.tap-effect::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.hero-btn.tap-effect,
.whatsapp-btn.tap-effect,
.intro-copy a.tap-effect,
.services-more a.tap-effect,
.faq-left a.tap-effect,
.contact-main-btn.tap-effect,
.contact-secondary-btn.tap-effect,
.service-page-card a.tap-effect,
.contact-form button.tap-effect {
  transform: translateY(-3px) scale(1.02);
}



/* gold buttons */
.hero-btn-gold::before,
.whatsapp-btn::before,
.intro-copy a::before,
.services-more a::before,
.faq-left a::before,
.contact-main-btn::before,
.service-page-card a::before {
   background: radial-gradient(
    circle,
    #f4f0e8 0%,
    #d9b66f 28%,
    #8b6a32 58%,
    #15110c 100%
  );
}

.hero-btn-gold:hover,
.whatsapp-btn:hover,
.intro-copy a:hover,
.services-more a:hover,
.faq-left a:hover,
.contact-main-btn:hover,
.service-page-card a:hover {
  color: #ffffff;
  border-color: #d9b66f;
}

/* dark / white buttons */
.hero-btn-outline::before,
.contact-secondary-btn::before,
.contact-form button::before {
  background: radial-gradient(
    circle,
    #fff1c9 0%,
    #d9b66f 34%,
    #b78d45 62%,
    #6f4b18 100%
  );
}

.hero-btn-outline:hover,
.contact-secondary-btn:hover,
.contact-form button:hover {
  color: #111111;
  border-color: #d9b66f;
}

/* arrow movement */
.hero-btn span,
.intro-copy a span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-btn:hover span,
.intro-copy a:hover span {
  transform: translateX(5px);
}

/* keep service enquiry buttons gold */
.service-page-card a {
  background-color: #d9b66f;
  color: #111111;
  border: 1px solid #d9b66f;
}


h1,
h2,
h3,
.hero-content h1,
.intro-copy h2,
.services-heading h2,
.service-card h3,
.why-heading h2,
.why-card-content h3,
.testimonials-heading h2,
.faq-left h2,
.faq-question span:first-child,
.contact-content h2,
.footer-col h4,
.service-hero-content h1,
.service-list-section .services-heading h2,
.service-page-card h3,
.contact-hero h1,
.contact-info h2,
.map-heading h2,
.about-hero-content h1,
.about-story-copy h2,
.about-story-point h3,
.about-vm-heading h2,
.about-vm-card h3,
.about-presence-copy h2,
.about-presence-card strong {
  font-family: var(--font-serif);;
}


/* ==========================================
   SCROLL REVEAL
   ========================================== */

/* Initial hidden state */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    will-change: opacity, transform;
}

/* Final visible state */
.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Optional stagger delays */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ==========================================
   PAGE TRANSITIONS
   ========================================== */
.page-transition-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--transition-color, #0B0B0B);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.10s ease;
}

.page-transition-overlay.is-active {
    opacity: 1;
}

.page-transition-overlay.is-leaving {
    opacity: 1;
}

/* ====service page filter========= */
/* .service-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
}

.service-filter button {
    padding: 12px 22px;
    border: 1px solid rgba(183, 141, 69, 0.35);
    background: transparent;
    color: #15110c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: 0.3s ease;
}

.service-filter button:hover,
.service-filter button.active {
    background: #d9b66f;
    color: #111111;
    border-color: #d9b66f;
}

.service-page-card.hide {
    display: none;
} */


/* repair: service enquiry buttons */
.service-page-card a {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  min-width: 150px;
  height: 46px;
  margin: 0 auto;
  padding: 0 22px;

  background-color: #d9b66f;
  color: #111111;
  border: 1px solid #d9b66f;
  border-radius: 999px;
  text-decoration: none;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;

  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.service-page-card a:hover {
  color: #ffffff;
  border-color: #d9b66f;
}


/* ================================
   FINAL RESPONSIVE CSS
================================ */

/* hidden on desktop */
.nav-toggle {
  display: none;
}


/* tablet */
@media (max-width: 1100px) {
  .navbar {
    padding: 0 28px;
  }

  .nav-menu {
    gap: 22px;
  }

  .nav-right {
    gap: 22px;
  }

  .intro-container,
  .why-container,
  .faq-container,
  .contact-page-container,
  .about-story-container {
    grid-template-columns: 1fr;
    gap: 52px;
  }

 .intro-section {
    padding: 80px 40px 130px;
    min-height: 620px;
  }

  .intro-container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
  }

  .intro-copy h2 {
    font-size: 42px;
  }

  .intro-copy p {
    max-width: 460px;
  }

   .intro-stats {
    width: 360px;
    margin-left: auto;
    margin-right: -20px;
    margin-top: -20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 28px;
    padding-top: 28px;
  }

  .intro-stat {
    padding: 0 22px;
    border: none;
  }

  .intro-stat:nth-child(1),
  .intro-stat:nth-child(2) {
    border-bottom: 1px solid rgba(21, 17, 12, 0.12);
    padding-bottom: 24px;
  }

  .intro-stat:nth-child(3),
  .intro-stat:nth-child(4) {
    padding-top: 24px;
  }


  .intro-skyline {
    left: 50%;
    width: 120%;
    max-width: none;
    height: auto;
    min-height: 240px;
    bottom: -35px;
    transform: translateX(-50%);
  }
  
  .services-grid,
  .service-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-image {
    height: 520px;
    min-height: auto;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-slide-card {
    flex: 0 0 calc(100vw - 112px);
  }

  .faq-right {
    min-height: 460px;
  }

  .faq-page {
    min-height: 390px;
  }

  .contact-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-hero-content h1,
  .contact-hero h1,
  .about-hero-content h1 {
    font-size: 54px;
  }

  .about-presence-section {
    padding-bottom: 260px;
    background-size: auto, 96% auto, auto;
    background-position: center bottom;
  }

  .about-presence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 60px;
  }
}


/* mobile */
@media (max-width: 900px) {
  .navbar {
    height: 74px;
    padding: 0 22px;
  }

  .logo img {
    height: 34px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border: 1px solid rgba(217, 182, 111, 0.45);
    background: #15110c;
    cursor: pointer;
    z-index: 1002;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: #d9b66f;
    transition: 0.25s ease;
  }

  .navbar.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-right {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;

    padding: 26px 24px 30px;

    flex-direction: column;
    align-items: flex-start;
    gap: 22px;

    background: rgba(244, 240, 232, 0.98);
    border-bottom: 1px solid rgba(183, 141, 69, 0.24);
    backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);

    transition: 0.25s ease;

    pointer-events: none;
  }

  .navbar.menu-open .nav-right {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    pointer-events: auto;
  }

  .nav-menu {
    width: 100%;

    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-menu a,
  .nav-mega > a {
    color: #15110c;
    font-size: 15px;
  }

  .whatsapp-btn {
    background: #d9b66f;
    color: #15110c;
    border: 1px solid rgba(183, 141, 69, 0.35);
  }

  .whatsapp-btn:hover,
  .whatsapp-btn:active {
  background: #c9a45d;
  color: #15110c;
  border-color: #d9b66f;
}

  .mega-menu {
    position: static;

    width: 100%;
    margin-top: 12px;
    padding: 18px;

    display: none;
    max-height: 58vh;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    transform: none;

    background: rgba(255, 250, 241, 0.94);

  }

  .nav-mega {
    width: 100%;
  }

  .nav-mega-head {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.nav-mega-head > a {
  color: #15110c;
  font-size: 15px;
}

.mega-toggle {
  width: 34px;
  height: 34px;
  padding: 0;
  margin-left: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(183, 141, 69, 0.35);
  background: transparent;
  box-shadow: none;

  color: #15110c;
  font-size: 0;
  line-height: 1;
  cursor: pointer;

  position: static;
}

.nav-mega.mega-open .mega-toggle {
  transform: rotate(180deg);
}

  .nav-mega > a,
  .mega-menu-inner a {
    display: block;
    width: 100%;
  }

  .nav-mega.mega-open .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-mega > a.active::after {
    display: none;
  }

  .mega-menu-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mega-menu-inner a {
    color: #15110c;
    font-size: 13px;
  }

.nav-menu a,
.nav-mega-head > a,
.mega-menu-inner a {
  text-shadow: none;
}

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 44px);
    margin-left: 22px;
    padding-top: 120px;
    padding-bottom: 170px;
  }

  .hero-content h1,
  .service-hero-content h1,
  .contact-hero h1,
  .about-hero-content h1 {
    font-size: 40px;
    line-height: 1.06;
  }

  .hero-copy,
  .service-hero-content p,
  .contact-hero p,
  .about-hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    max-width: 320px;
    height: 56px;
    font-size: 13px;
  }

  .hero-bottom {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .hero-tags {
    gap: 8px 0;
  }

  .hero-tags span {
    font-size: 11px;
  }

  .slide:nth-child(1) {
    background-position: 63% center;
  }

  .intro-section,
  .services-section,
  .why-section,
  .testimonials-section,
  .faq-section,
  .contact-section,
  .service-hero,
  .service-list-section,
  .contact-hero,
  .contact-page-section,
  .about-hero,
  .about-story-section,
  .about-vm-section,
  .about-presence-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .intro-container,
  .why-container,
  .faq-container,
  .contact-page-container,
  .about-story-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-section {
    padding: 80px 24px 130px;
    min-height: auto;
  }

  .intro-container {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .intro-stats {
    width: 100%;
    margin: -20px 0 0;
    padding-top: 18px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4px;
    row-gap: 18px;
  }

  
  .intro-stat {
    position: relative;
    margin: 0;
    padding: 0 18px;
    border: none !important;
  }

  .intro-stat::after {
    display: none;
  }

  .intro-stat:nth-child(1)::after,
  .intro-stat:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    left: 45px;
    right: 45px;
    bottom: -17px;
    height: 1px;
    background: rgba(21, 17, 12, 0.12);
  }

  .intro-stat:nth-child(3),
  .intro-stat:nth-child(4) {
    padding-top: 26px;
  }

  .intro-skyline {
    width: 115%;
    max-width: none;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    min-height: 200px;
    bottom: -28px;
    opacity: 0.22;
  }

  .intro-copy h2 {
    font-size: 40px;
  }

  .intro-copy p {
    max-width: 100%;
    font-size: 16px;
  }


  .why-image {
    height: 420px;
    min-height: auto;
  }

  .why-cards,
  .services-grid,
  .service-page-grid,
  .about-vm-grid,
  .about-presence-grid {
    grid-template-columns: 1fr;
  }

  .why-card-content {
    height: auto;
    min-height: 165px;
  }

  .testimonial-slide-card {
    flex: 0 0 calc(100vw - 48px);
    padding: 32px 24px 40px;
  }

  .testimonials-track {
    padding: 0 24px;
    gap: 18px;
  }

  .testimonial-slide-card p {
    font-size: 15px;
  }

  .faq-left h2,
  .services-heading h2,
  .why-heading h2,
  .testimonials-heading h2,
  .contact-content h2,
  .contact-info h2,
  .about-story-copy h2,
  .about-vm-heading h2,
  .about-presence-copy h2 {
    font-size: 36px;
  }

  .faq-question span:first-child {
    font-size: 19px;
  }

  .faq-right {
    min-height: 430px;
  }

  .faq-page {
    min-height: 360px;
  }

  .contact-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 26px;
  }

  .contact-meta {
    flex-direction: column;
    gap: 18px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service-hero {
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.72),
      rgba(5, 5, 5, 0.52),
      rgba(5, 5, 5, 0.28)
    ),
    url("../images/services-finance-bg.png") 82% center / auto 100% no-repeat;
}


  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .service-card {
    min-height: auto;
    padding: 38px 28px;
    cursor: pointer;
  }

  .service-card h3,
  .service-card .service-icon,
  .service-card .service-hint {
    opacity: 1;
  }

  .service-card p {
    position: static;
    opacity: 0;
    transform: none;
    margin-top: 8px;
    pointer-events: none;
  }

  .service-card:hover h3,
  .service-card:hover .service-icon,
  .service-card:hover .service-hint {
    opacity: 1;
  }

  .service-card.is-open h3,
  .service-card.is-open .service-icon{
    opacity: 0.1;
  }

  .service-card.is-open .service-hint {
  opacity: 0;
  visibility: hidden;
  }

  .service-card.is-open p {
    opacity: 1;
  }

  .service-card:not(.is-open) {
    justify-content: center;
  }


   .service-card:not(.is-open) .service-icon svg {
    width: 64px;
    height: 64px;
  }

  .service-card:not(.is-open) h3 {
    font-size: 30px;
    max-width: 310px;
  }

  .service-card:not(.is-open)::before {
    z-index: 1;
  }

  
  .service-card:not(.is-open)::after {
    opacity: 1;
  }

  .service-card:not(.is-open) .service-icon,
  .service-card:not(.is-open) h3,
  .service-card:not(.is-open) .service-hint {
    transform: translateY(30px);
    position: relative;
    z-index: 2;
  }

  .service-card:nth-child(4n + 1):not(.is-open)::after {
    background:
      radial-gradient(circle at 85% 15%, rgba(217, 182, 111, 0.13), transparent 34%),
      linear-gradient(rgba(10, 10, 10, 0.50), rgba(10, 10, 10, 0.70)),
      url("../images/services-finance-bg.png") right top / cover no-repeat;
  }

  .service-card:nth-child(4n + 2):not(.is-open)::after {
    background:
      radial-gradient(circle at 15% 85%, rgba(217, 182, 111, 0.13), transparent 34%),
      linear-gradient(rgba(10, 10, 10, 0.50), rgba(10, 10, 10, 0.70)),
      url("../images/services-finance-bg.png") left bottom / cover no-repeat;
  }

  .service-card:nth-child(4n + 3):not(.is-open)::after {
    background:
      radial-gradient(circle at 15% 15%, rgba(217, 182, 111, 0.13), transparent 34%),
      linear-gradient(rgba(10, 10, 10, 0.50), rgba(10, 10, 10, 0.70)),
      url("../images/services-finance-bg.png") left top / cover no-repeat;
  }

  .service-card:nth-child(4n + 4):not(.is-open)::after {
    background:
      radial-gradient(circle at 85% 85%, rgba(217, 182, 111, 0.13), transparent 34%),
      linear-gradient(rgba(10, 10, 10, 0.50), rgba(10, 10, 10, 0.70)),
      url("../images/services-finance-bg.png") right bottom / cover no-repeat;
  }


  .about-vm-card {
  animation: vmMobileFloat 4.5s ease-in-out infinite;
}

.about-vm-card:nth-child(2) {
  animation-delay: 0.7s;
}

  .about-vm-card:active {
    transform: translateY(-5px);
  }

   .about-vm-dark {
    background:
      linear-gradient(
        90deg,
        rgba(8, 8, 8, 0.36),
        rgba(8, 8, 8, 0.7)
      ),
      url("../images/vision-mission.png") left bottom / 80% auto no-repeat;
  }

.about-presence-section {
    background-size: auto, 96% auto, auto;
    background-position: center bottom;
  }

  .about-presence-copy {
    margin-bottom: 28px;
  }

  .about-presence-grid {
    grid-template-columns: 1fr;
  }

  .service-page-card img {
    height: 260px;
    object-fit: cover;
    object-position: center 28%;
  }

  .service-page-body .contact-section {
  margin-top: -96px;
}

}

@media (min-width: 701px) and (max-width: 900px) {
  .intro-stats {
    width: min(520px, 100%);
    margin: -20px auto 0;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 34px;
    row-gap: 24px;
  }

  .intro-stat {
    padding: 0 22px;
  }

  .intro-stat:nth-child(1)::after,
  .intro-stat:nth-child(2)::after {
    left: 20px;
    right: 20px;
  }
}



/* small mobile */
@media (max-width: 520px) {
  
  .intro-section {
    padding: 70px 20px 110px;
  }

  .intro-container {
    gap: 36px;
  }

  .intro-copy h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .intro-copy p {
    font-size: 15px;
    line-height: 1.7;
  }

  .intro-copy a {
    width: 100%;
    justify-content: center;
  }

  .intro-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-stat {
    margin: 0 clamp(54px, 18vw, 95px);
    padding: 24px 18px;
    border-left: none;
    border-bottom: 1px solid rgba(21, 17, 12, 0.12);
  }


  .intro-stat:last-child {
    border-bottom: none;
  }

  .intro-skyline {
    width: 125%;
    max-width: none;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    min-height: 220px;
    bottom: -24px;
    opacity: 0.18;
  }


  .hero-content h1,
  .service-hero-content h1,
  .contact-hero h1,
  .about-hero-content h1 {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-arrows button {
    width: 44px;
    height: 44px;
  }

  
  .testimonial-slide-card {
    min-height: auto;
  }

  .faq-question {
    padding: 14px 18px;
  }

  .faq-right {
    min-height: 560px;
  }

  .faq-page {
    min-height: 490px;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wa-float {
    right: 20px;
  }

  .about-hero-bg {
    background-position: 66% center;
    background-size: cover;
  }

  .about-vm-card {
  animation-name: vmMobileFloatSmall;
  }

  .about-vm-dark {
    background:
      linear-gradient(
        90deg,
        rgba(8, 8, 8, 0.38),
        rgba(8, 8, 8, 0.74)
      ),
      url("../images/vision-mission.png") 0.5% bottom / 100% auto no-repeat;
  }

  .about-vm-light {
    background-position: 87% bottom;
    background-size: cover;
  }

  .about-presence-section {
  padding-bottom: 185px;
  background-size: auto, 145% auto, auto;
  background-position: center, center calc(100% + 55px), center;
  }

.about-presence-section + .contact-section {
  margin-top: -35px;
 }

  .about-presence-copy {
  margin-bottom: 0;
  }

.about-presence-grid {
  margin-top: 56px;
}

.service-list-section {
  padding-bottom: 15px;
}

.service-hero {
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.70),
      rgba(5, 5, 5, 0.45),
      rgba(5, 5, 5, 0.18)
    ),
    url("../images/services-finance-bg.png") 88% center / auto 100% no-repeat;
}


.service-page-body .contact-section {
  margin-top: -67px;
}

.contact-page-body .contact-page-section {
  padding-bottom: 95px;
}

.contact-page-body .map-section {
  padding-top: 0px;
  padding-bottom: -20px;
}


}

@keyframes vmMobileFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes vmMobileFloatSmall {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 900px) {
  .wa-float {
    right: 20px;
    bottom: 24px;
    width: 54px;
    height: 54px;
  }

  .back-to-top {
    right: 20px;
    bottom: 100px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 560px) {
  .wa-float {
    right: 18px;
    bottom: 22px;
    width: 52px;
    height: 52px;
  }

  .back-to-top {
    right: 18px;
    bottom: 94px;
    width: 52px;
    height: 52px;
  }
}

@media (min-width: 561px) and (max-width: 768px) {
  .wa-float {
    right: 16px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }

  .back-to-top {
    right: 16px;
    bottom: 84px;
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}

@media (min-width: 391px) and (max-width: 430px) {
  .about-presence-grid {
    margin-top: 76px;
  }
}


@media (max-width: 390px) {
  .about-presence-section {
    padding-bottom: 155px;
    background-size: auto, 155% auto, auto;
    background-position: center, center calc(100% + 48px), center;
  }

  .about-presence-grid {
    margin-top: 48px;
  }

  .about-presence-section + .contact-section {
    margin-top: -55px;
  }
}


@media (min-width: 901px) and (max-width: 1366px) {
  .services-section,
  .why-section,
  .testimonials-section,
  .faq-section,
  .contact-section,
  .about-story-section,
  .about-vm-section,
  .about-presence-section,
  .service-list-section,
  .contact-page-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {


  .navbar {
    padding: 0 28px;
  }

  .nav-right {
    gap: 22px;
  }

  .nav-menu {
    gap: 22px;
  }

  .nav-menu > a,
  .nav-mega,
  .nav-mega-head {
    flex-shrink: 0;
  }

  .nav-mega-head {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    width: auto;
  }

  .nav-mega-head > a {
    display: inline-block;
  }

  .mega-toggle {
    width: 8px;
    height: 10px;
    flex: 0 0 8px;
    padding: 0;
    margin: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: transparent;
    box-shadow: none;

    color: #dfdddb;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
  }

  .mega-toggle::before {
    border-left-width: 3.5px;
    border-right-width: 3.5px;
    border-top-width: 4px;
  }

  .nav-mega:hover .mega-menu,
  .nav-mega:focus-within .mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 14px);
  }

  .nav-mega.mega-open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }



  .about-vm-card {
    animation: vmMobileFloat 5.5s ease-in-out infinite;
  }

  .about-vm-card:nth-child(2) {
    animation-delay: 0.7s;
  }

  .about-presence-section {
    padding-bottom: 100px;
    background-size: auto, 96% auto, auto;
    background-position: center, center calc(100% - 55px), center;
  }

  .about-presence-copy {
    margin-bottom: 0;
  }

  .about-presence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 100px;
  }

  .contact-section {
    margin-top: -40px;
  }
}

@media (min-width: 1367px) {
  .about-presence-copy {
    transform: translateY(-58px);
  }

  .about-presence-grid {
    margin-top: 82px;
  }
}

@media (min-width: 1101px) and (max-width: 1500px) {
  .nav-menu {
    gap: 24px;
  }

  .nav-right {
    gap: 26px;
  }
}

@media (min-width: 1101px) {
  .mega-toggle {
    display: none;
  }

  .nav-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}



@media (min-width: 521px) and (max-width: 768px) {
  .wa-float {
    right: 18px !important;
    bottom: 72px !important;
    width: 50px !important;
    height: 50px !important;
  }

  .back-to-top {
    right: 18px !important;
    bottom: 142px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
  }
}

@media (max-width: 900px) {
  .wa-float {
    right: 18px !important;
    bottom: 72px !important;
    width: 50px !important;
    height: 50px !important;
  }

  .wa-float svg {
    width: 24px !important;
    height: 24px !important;
  }

  .back-to-top {
    right: 18px !important;
    bottom: 142px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
  }
}






