:root {
  --primary: #0A3D4D;
  --secondary: #2C8A87;
  --accent: #D8C09A;
  --accent-hover: #C8AB7E;
  --cream: #F9F6F0;
  --heading: #292826;
  --taupe: #9A8A76;
  --white: #FFFFFF;
  --bg-color: #FBF7F0;
  --primary-dark: #22252A;
  --teal-accent: #114D43;
  --gold-accent: #C49A6C;
  --gold-light: #DBC5A4;
  --text-muted: #5E6267;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: url("../img/hero-img.webp") center center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, .92) 0%,
      rgba(255, 255, 255, .70) 18%,
      rgba(255, 255, 255, .35) 42%,
      rgba(255, 255, 255, 0) 70%);
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(900px, 90vw);
  height: min(900px, 90vw);
  transform: translate(-50%, -45%);
  background: radial-gradient(circle, rgba(255, 255, 255, .95), rgba(255, 255, 255, .25) 55%, transparent 78%);
  z-index: 2;
  pointer-events: none;
}

.hero-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 22px 0;
}

.navbar-brand img {
  width: clamp(180px, 18vw, 280px);
  height: auto;
}

.hero-navbar .nav-link {
  color: var(--heading);
  font-size: 17px;
  font-weight: 800;
  margin: 0 8px;
}

.hero-navbar .nav-link:hover,
.hero-navbar .nav-link.active {
  color: var(--secondary);
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  border: 0;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.dropdown-item {
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 700;
}

.dropdown-item:hover {
  background: #F1EEE8;
  color: var(--secondary);
}

@media(min-width:992px) {
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s;
    pointer-events: none;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 150px;
  padding-bottom: 100px;
}

.hero-content h1 {
  font-size: clamp(52px, 8vw, 130px);
  font-weight: 900;
  line-height: .88;
  color: var(--heading);
  text-transform: uppercase;
  margin: 0;
}

.hero-content h2 {
  margin-top: 20px;
  color: var(--secondary);
  font-size: clamp(26px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: clamp(4px, 1vw, 12px);
  text-transform: uppercase;
}

.hero-content p {
  max-width: 720px;
  margin: 6px auto;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.7;
  color: var(--heading);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 64px;
  border-radius: 50px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: .3s;
}

.hero-btn:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-3px);
}

.navbar-toggler {
  border: 0;
  font-size: 32px;
  color: var(--heading);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Container to hold both buttons side-by-side */
.hero-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

/* Base button style with the premium background color */
.hero-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', 'Bodoni MT', 'Didot', 'Georgia', serif !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px;

  color: #292826 !important;
  background-color: #BEAC85 !important;
  /* Your luxury background color */
  border: 2px solid #BEAC85 !important;
  /* Matches background for a seamless look */

  text-decoration: none;
  padding: 14px 34px !important;
  transition: all 0.3s ease;
}

/* Outlined Circle Around Phone Icon */
.hero-btn i {
  color: #292826 !important;
  font-size: 1.2rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #292826 !important;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* Premium Hover State */
.hero-btn:hover {
  background-color: #292826 !important;
  /* Flips the background color on hover */
  border-color: #292826 !important;
  color: #BFAE8A !important;
  /* Font color flips to the tan tone */
}

/* Inverts the icon circle on hover to match */
.hero-btn:hover i {
  color: #BFAE8A !important;
  border-color: #BFAE8A !important;
}

.hero-btn-one {
  color: #BEAC85 !important;
  background-color: #292826 !important;
  border: 2px solid #292826 !important;
}


.hero-btn-one i {
  color: #BEAC85 !important;


  border: 2px solid #BEAC85 !important;

}

/* Premium Hover State */
.hero-btn:hover {
  background-color: #292826 !important;
  /* Flips the background color on hover */
  border-color: #292826 !important;
  color: #BFAE8A !important;
  /* Font color flips to the tan tone */
}

/* Inverts the icon circle on hover to match */
.hero-btn:hover i {
  color: #BFAE8A !important;
  border-color: #BFAE8A !important;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 20px;
  margin-bottom: 28px;
}

.hero-location::before,
.hero-location::after {
  content: "";
  width: 110px;
  height: 4px;
  border-radius: 50px;
  background: #292826;
}

.hero-location span {
  color: #2E7481;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 12px;
  line-height: 1;
}

@media (max-width:991px) {

  .hero-location {
    gap: 18px;
  }

  .hero-location::before,
  .hero-location::after {
    width: 80px;
  }

  .hero-location span {
    font-size: 34px;
    letter-spacing: 8px;
  }

}

@media (max-width:575px) {

  .hero-location {
    gap: 12px;
    margin: 18px 0 24px;
  }

  .hero-location::before,
  .hero-location::after {
    width: 45px;
    height: 3px;
  }

  .hero-location span {
    font-size: 22px;
    letter-spacing: 4px;
  }

}

/* ===========================
   Responsive Hero Buttons
=========================== */

@media (max-width: 991.98px) {

  .hero-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    margin-top: 30px;
  }

  .hero-btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    text-align: center;
  }

}

@media (max-width: 575.98px) {

  .hero-btn {
    max-width: 280px;
    padding: 14px 22px !important;
    font-size: 1.25rem !important;
    letter-spacing: 1px;
  }

  .hero-btn i {
    width: 36px;
    height: 36px;
    font-size: 1rem !important;
  }

}




@media(max-width:991px) {
  .hero-navbar {
    position: absolute;
    padding: 16px 0;
  }

  .navbar-collapse {
    margin-top: 15px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  }

  .hero-navbar .nav-link {
    margin: 0;
    padding: 11px 0;
    font-size: 16px;
  }

  .dropdown-menu {
    box-shadow: none;
    background: #FBF6EF;
    margin: 5px 0 12px;
  }

  .hero-divider {
    opacity: .55;
  }


}

@media(max-width:575px) {
  .hero {
    min-height: 760px;
    background-position: center;
  }

  .hero-content {
    min-height: 760px;
    padding-top: 135px;
    padding-bottom: 70px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content h2 {
    font-size: 24px;
    letter-spacing: 4px;
  }

  .hero-content p {
    font-size: 16px;
    max-width: 92%;
  }

  .hero-btn {
    min-width: 190px;
    height: 58px;
  }
}

/* end hero */








/* start offers */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

:root {
  --cream: #FBF6EF;
  --dark: #292826;
  --teal: #0A5F63;
  --teal-dark: #073F42;
  --gold: #C89B55;
  --gold-light: #D8C09A;
  --text: #53565B;
}

.luxury-offer-section {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;
  background: var(--cream);
}

.offer-wrapper {
  position: relative;
  z-index: 3;
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  align-items: center;
  gap: 70px;
}

.offer-main-card {
  position: relative;
  padding: 70px 90px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(200, 155, 85, .35);
  border-radius: 36px;
  box-shadow: 0 35px 90px rgba(41, 40, 38, .08);
}

.offer-main-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(200, 155, 85, .28);
  border-radius: 28px;
  pointer-events: none;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border: 1px solid rgba(200, 155, 85, .65);
  border-radius: 50px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.offer-main-card h2 {
  margin: 28px 0px 18px;
  color: var(--dark);
  /* Made it smaller: Min 32px, scales with screen width, Max 54px */
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  /* Adjusted slightly so letters don't overlap at smaller sizes */
  font-weight: 900;
}

.offer-main-card h2 span {
  color: var(--teal);
}

.title-line {
  width: 145px;
  height: 3px;
  background: linear-gradient(to right, var(--teal) 0 65%, var(--gold) 65% 100%);
  margin-bottom: 28px;
}

.offer-main-card p {
  max-width: 560px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.6;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 32px 0 14px;
}

.currency {
  color: var(--gold);
  font-size: 38px;
  margin-bottom: 26px;
}

.amount {
  color: var(--teal);
  font-size: clamp(94px, 9vw, 140px);
  font-weight: 900;
  line-height: .78;
}

.only {
  color: var(--gold);
  font-size: 58px;
  font-family: cursive;
  font-style: italic;
  margin-bottom: 16px;
}

.service-line {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--teal);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.service-line span {
  width: 48px;
  height: 2px;
  background: var(--teal);
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
  padding: 18px 38px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  border-radius: 60px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 22px 40px rgba(200, 155, 85, .28);
}

.offer-feature-card {
  padding: 42px 56px;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  color: #fff;
  box-shadow: 0 35px 90px rgba(10, 95, 99, .26);
  text-align: center;
  animation: floatCard 5s ease-in-out infinite;
}

.feature-top-icon {
  width: 118px;
  height: 118px;
  margin: 0 auto 28px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-top-icon svg {
  width: 76px;
  height: 76px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2;
}

.offer-feature-card h3 {
  color: #F2D7A9;
  font-size: 36px;
  margin: 0;
  font-weight: 800;
}

.gold-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: var(--gold-light);
  margin: 24px 0 28px;
}

.gold-divider span {
  width: 90px;
  height: 1px;
  background: var(--gold-light);
}

.feature-list {
  max-width: 300px;
  margin: 0 auto;
}

.feature-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  text-align: left;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item p {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 600;
}

/* background shapes */
.offer-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.circle {
  border: 1.5px solid rgba(200, 155, 85, .35);
  animation: floatShape 10s ease-in-out infinite;
}

.circle-1 {
  width: 320px;
  height: 320px;
  left: -110px;
  top: 30px;
}

.circle-2 {
  width: 170px;
  height: 170px;
  right: 150px;
  top: -40px;
}

.circle-3 {
  width: 340px;
  height: 340px;
  right: -110px;
  top: 40px;
}

.dashed {
  border: 2px dashed rgba(10, 95, 99, .35);
  animation: spinShape 35s linear infinite;
}

.dashed-1 {
  width: 440px;
  height: 440px;
  right: 100px;
  top: -120px;
}

.dashed-2 {
  width: 390px;
  height: 390px;
  left: 48%;
  bottom: -210px;
}

.sparkle {
  position: absolute;
  color: var(--gold);
  font-size: 34px;
  animation: twinkle 3s ease-in-out infinite;
}

.sparkle-1 {
  left: 70px;
  top: 210px;
}

.sparkle-2 {
  left: 54%;
  top: 245px;
}

.sparkle-3 {
  right: 78px;
  top: 140px;
}

.dots {
  position: absolute;
  width: 92px;
  height: 92px;
  background-image: radial-gradient(rgba(200, 155, 85, .55) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: .6;
}

.dots-1 {
  left: 85px;
  top: 430px;
}

.dots-2 {
  right: 60px;
  bottom: 85px;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes spinShape {
  to {
    transform: rotate(360deg);
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: .45;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* responsive */
@media(max-width:1100px) {
  .offer-wrapper {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .offer-feature-card {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }
}

@media(max-width:768px) {
  .luxury-offer-section {
    padding: 80px 16px;
  }

  .offer-main-card {
    padding: 46px 28px;
  }

  .offer-main-card::before {
    inset: 8px;
  }

  .offer-main-card p {
    font-size: 18px;
  }

  .service-line {
    font-size: 12px;
    letter-spacing: 2px;
    gap: 10px;
  }

  .service-line span {
    width: 25px;
  }

  .offer-feature-card {
    padding: 36px 28px;
  }

  .feature-item {
    grid-template-columns: 60px 1fr;
  }

  .circle-1,
  .circle-3 {
    display: none;
  }
}

@media(max-width:480px) {
  .offer-main-card h2 {
    font-size: 44px;
  }

  .amount {
    font-size: 82px;
  }

  .only {
    font-size: 38px;
  }

  .currency {
    font-size: 28px;
  }

  .offer-btn {
    width: 100%;
    justify-content: center;
  }
}



/* end offers */







/* start about */
.premium-about {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background: #FBF6EF;
}

.pa-container {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.pa-content {
  animation: fadeLeft .9s ease forwards;
}

.pa-label {
  display: inline-flex;
  padding: 11px 24px;
  border: 1px solid rgba(200, 155, 85, .45);
  border-radius: 50px;
  color: #C89B55;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 26px;
}

.pa-content h2 {
  margin: 0;
  color: #292826;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.pa-content h2 span {
  color: #0A5F63;
}

.pa-line {
  width: 100%;
  max-width: 460px;
  height: 2px;
  margin: 32px 0;
  background: linear-gradient(to right, #0A5F63 0 42%, #C89B55 42% 55%, transparent 55%);
}

.pa-content p {
  max-width: 650px;
  color: #28323A;
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.pa-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 38px 0 44px;
  flex-wrap: wrap;
}

.pa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 19px 36px;
  border-radius: 60px;
  background: linear-gradient(135deg, #0A5F63, #073F42);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 22px 42px rgba(10, 95, 99, .28);
  transition: .35s;
}

.pa-btn:hover {
  transform: translateY(-4px);
  color: #fff;
}

.pa-video {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #292826;
}

.pa-video span {
  width: 58px;
  height: 58px;
  border: 1px solid #C89B55;
  color: #C89B55;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pa-video strong {
  display: block;
  color: #C89B55;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pa-video small {
  color: #292826;
}

.pa-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(200, 155, 85, .35);
  padding-top: 26px;
  gap: 18px;
}

.pa-stats div {
  text-align: center;
  border-right: 1px solid rgba(200, 155, 85, .35);
  padding: 0 14px;
}

.pa-stats div:last-child {
  border-right: 0;
}

.pa-stats strong {
  display: block;
  color: #0A5F63;
  font-size: 30px;
  line-height: 1;
}

.pa-stats span {
  display: block;
  margin-top: 8px;
  color: #292826;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.35;
  font-weight: 700;
}

.pa-image-wrap {
  position: relative;
  min-height: 650px;
  animation: fadeRight .9s ease forwards;
}

.pa-image-wrap img {
  width: 82%;
  height: 620px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  border-radius: 0 48px 48px 0;
  box-shadow: 0 35px 90px rgba(41, 40, 38, .18);
}

.pa-image-wrap::before {
  content: "";
  position: absolute;
  right: -18px;
  top: 42px;
  width: 82%;
  height: 620px;
  border: 8px solid #0A5F63;
  border-left: 0;
  border-radius: 0 56px 56px 0;
  z-index: -1;
}

.pa-ribbon {
  position: absolute;
  top: 0;
  left: 8%;
  width: 110px;
  padding: 22px 12px 24px;
  background: #0A5F63;
  color: #fff;
  text-align: center;
  z-index: 5;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 50% 100%, 0 86%);
}

.pa-ribbon span {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
  border: 2px solid #C89B55;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C89B55;
  font-size: 34px;
}

.pa-ribbon strong {
  display: block;
  text-transform: uppercase;
  line-height: 1.2;
}

.pa-ribbon small {
  display: block;
  color: #C89B55;
  margin-top: 12px;
  letter-spacing: 2px;
}

.pa-checklist {
  position: absolute;
  right: -20px;
  top: 190px;
  width: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  border-radius: 26px;
  box-shadow: 0 25px 65px rgba(41, 40, 38, .12);
}

.pa-checklist div {
  padding: 15px 0;
  border-bottom: 1px solid rgba(200, 155, 85, .25);
  color: #292826;
  font-weight: 800;
  font-size: 15px;
}

.pa-checklist div:last-child {
  border-bottom: 0;
}

.pa-trust-card {
  position: absolute;
  left: 0;
  bottom: 50px;
  max-width: 370px;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0A5F63, #073F42);
  color: #fff;
  box-shadow: 0 25px 60px rgba(10, 95, 99, .28);
}

.pa-trust-card span {
  color: #C89B55;
  font-size: 48px;
}

.pa-trust-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.35;
}

.pa-trust-card small {
  display: block;
  margin-top: 10px;
  color: #D8C09A;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

.pa-seal {
  position: absolute;
  right: 70px;
  bottom: 15px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #D8C09A;
  color: #292826;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, .8);
  box-shadow: 0 20px 45px rgba(200, 155, 85, .35);
}

.pa-seal small {
  text-transform: uppercase;
  font-weight: 800;
}

.pa-seal strong {
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.1;
}

/* Background animation shapes */
.pa-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pa-circle,
.pa-dashed {
  position: absolute;
  border-radius: 50%;
}

.pa-circle {
  border: 1.5px solid rgba(200, 155, 85, .35);
  animation: floatShape 9s ease-in-out infinite;
}

.pa-dashed {
  border: 2px dashed rgba(10, 95, 99, .35);
  animation: spinShape 34s linear infinite;
}

.c1 {
  width: 350px;
  height: 350px;
  left: -110px;
  top: -80px;
}

.c2 {
  width: 240px;
  height: 240px;
  right: -80px;
  top: 40px;
}

.d1 {
  width: 430px;
  height: 430px;
  right: 18%;
  bottom: -160px;
}

.pa-sparkle {
  position: absolute;
  color: #C89B55;
  font-size: 30px;
  animation: twinkle 3s ease-in-out infinite;
}

.s1 {
  left: 8%;
  top: 34%;
}

.s2 {
  right: 12%;
  top: 12%;
}

.pa-leaf {
  position: absolute;
  width: 52px;
  height: 28px;
  background: #6E9962;
  border-radius: 60% 0 60% 0;
  opacity: .55;
  filter: blur(1px);
  animation: leafFloat 7s ease-in-out infinite;
}

.l1 {
  top: 80px;
  left: 42%;
  transform: rotate(-25deg);
}

.l2 {
  bottom: 70px;
  left: 52%;
  transform: rotate(25deg);
}


.stat-icon {
  background-color: #D8C09A !important;
}


@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-45px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(45px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }
}

@keyframes spinShape {
  to {
    transform: rotate(360deg);
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: .45;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes leafFloat {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -24px;
  }
}


@media(max-width:1100px) {
  .pa-container {
    grid-template-columns: 1fr;
  }

  .pa-image-wrap img {
    width: 100%;
  }

  .pa-image-wrap::before {
    width: 100%;
  }

  .pa-checklist {
    right: 20px;
  }
}

@media(max-width:768px) {
  .premium-about {
    padding: 80px 16px;
  }

  .pa-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .pa-stats div:nth-child(2) {
    border-right: 0;
  }

  .pa-image-wrap {
    min-height: auto;
  }

  .pa-image-wrap img {
    height: 460px;
    border-radius: 34px;
  }

  .pa-image-wrap::before,
  .pa-checklist,
  .pa-ribbon,
  .pa-seal {
    display: none;
  }

  .pa-trust-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 20px;
  }
}

@media(max-width:480px) {
  .pa-content h2 {
    font-size: 48px;
  }

  .pa-stats {
    grid-template-columns: 1fr;
  }

  .pa-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(200, 155, 85, .25);
    padding-bottom: 18px;
  }
}


.pa-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid rgba(216, 192, 154, .45);
}

.stat-item {
  text-align: center;
  padding: 35px 18px 0;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(216, 192, 154, .45);
}

/* Icon */

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #F8F3EB;
  border: 1px solid rgba(216, 192, 154, .35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 26px;
  color: #0A6A73;
}

/* Number */

.stat-item strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  /* Smaller */
  font-weight: 700;
  color: #0A6A73;
  line-height: 1.1;
  margin-bottom: 10px;
}

/* Label */

.stat-item span {
  display: block;
  max-width: 130px;
  margin: auto;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #292826;
}

@media(max-width:992px) {

  .pa-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    border-top: none;
  }

  .stat-item {
    border: none !important;
    padding: 0;
  }

}

@media(max-width:576px) {

  .pa-stats {
    grid-template-columns: 1fr;
  }

  .stat-icon {
    width: 58px;
    height: 58px;
  }

  .stat-icon i {
    font-size: 22px;
  }

  .stat-item strong {
    font-size: 26px;
  }

  .stat-item span {
    font-size: 11px;
  }

}


.trust-icon {
  width: 54px;
  height: 54px;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* end about */




/* -------------------------------------------------------------- */




/* start why choose us */
.why-luxury {
  padding: 120px 0;
  background: linear-gradient(180deg, #fff, #fbf6ef);
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: auto auto 70px;
}

.section-title span {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 14px;
}

.section-title h2 {
  margin: 18px 0;
  color: var(--heading);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  font-family: "Playfair Display", serif;
}

.section-title p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-item {
  text-align: center;
  padding: 45px 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(216, 192, 154, .35);
  transition: .4s;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .05);
}

.why-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(10, 61, 77, .12);
}

.icon {
  width: 82px;
  height: 82px;
  margin: auto auto 25px;
  border-radius: 50%;
  background: #FBF6EF;
  border: 1px solid rgba(216, 192, 154, .45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon i {
  font-size: 34px;
  color: var(--secondary);
}

.why-item h3 {
  margin-bottom: 12px;
  color: var(--heading);
  font-size: 24px;
}

.why-item p {
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

@media(max-width:992px) {

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:576px) {

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    padding: 35px 25px;
  }

  .section-title h2 {
    font-size: 38px;
  }

}


.icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #2C8A87;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}




/* end why choose us */


/* start first section */

/* --- LUXURY COLOR PALETTE & DESIGN SYSTEM --- */
:root {
  --cr-dark-charcoal: #121315;
  --cr-card-charcoal: rgba(30, 30, 28, 0.65);
  --cr-gold-luxury: #C8AB7E;
  --cr-gold-bright: #EAD1A8;
  --cr-cream-white: #FBF6EF;
  --cr-border-glow: rgba(200, 171, 126, 0.25);
  --cr-serif: "Georgia", serif;
  --cr-sans: "Helvetica Neue", Arial, sans-serif;
  --cr-ease-lux: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cr-lux-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cr-dark-charcoal);
  color: var(--cr-cream-white);
  font-family: var(--cr-serif);
}

.cr-lux-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.cr-lux-bg-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform-origin: center;
}

.cr-lux-bg-orbit.orbit-solid-primary {
  width: 750px;
  height: 750px;
  margin-top: -375px;
  margin-left: -600px;
  border: 1px solid rgba(200, 171, 126, 0.18);
  animation: cr-orbit-clockwise 90s linear infinite;
}

.cr-lux-bg-orbit.orbit-dashed-outer {
  width: 1350px;
  height: 1350px;
  margin-top: -675px;
  margin-left: -450px;
  border: 1.5px dashed rgba(200, 171, 126, 0.15);
  animation: cr-orbit-counter 110s linear infinite;
}

.cr-lux-bg-orbit.orbit-solid-secondary {
  width: 1050px;
  height: 1050px;
  margin-top: -525px;
  margin-left: -750px;
  border: 1px solid rgba(200, 171, 126, 0.1);
  animation: cr-orbit-clockwise 140s linear infinite;
}

.cr-lux-bg-orbit.orbit-dotted-inner {
  width: 550px;
  height: 550px;
  margin-top: -275px;
  margin-left: -200px;
  border: 2px dotted rgba(200, 171, 126, 0.15);
  animation: cr-orbit-counter 55s linear infinite;
}

.cr-lux-glint {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  color: var(--cr-gold-bright);
  background: currentColor;
  opacity: 0.8;
  box-shadow: 0 0 12px 3px rgba(234, 209, 168, 0.7);
}

.cr-lux-layout-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.cr-lux-editorial-card {
  position: relative;
  z-index: 5;
  padding: 55px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 24px;
  background: var(--cr-card-charcoal);
  border: 1px solid rgba(200, 171, 126, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cr-lux-tagline {
  color: var(--cr-gold-luxury);
  font-family: var(--cr-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.cr-lux-hero-heading {
  margin: 0 0 10px;
  color: var(--cr-gold-luxury);
  font-family: var(--cr-serif);
  font-size: clamp(38px, 4vw, 54px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.cr-lux-body-text {
  margin: 0 0 15px;
  color: var(--cr-cream-white);
  font-family: var(--cr-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  text-align: justify;
  opacity: 0.9;
}

.cr-lux-action-trigger {
  display: inline-block;
  align-self: flex-start;
  margin-top: 15px;
  padding: 16px 48px;
  border: 1px solid var(--cr-gold-luxury);
  border-radius: 60px;
  background: rgba(30, 30, 28, 0.8);
  color: var(--cr-gold-luxury);
  box-shadow: 0 0 15px rgba(200, 171, 126, 0.15);
  font-family: var(--cr-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--cr-ease-lux);
}

.cr-lux-action-trigger:hover {
  background: var(--cr-gold-luxury);
  color: var(--cr-dark-charcoal);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 171, 126, 0.45);
}

.cr-lux-visual-stack {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cr-lux-image-porthole {
  position: relative;
  z-index: 2;
  width: 460px;
  height: 460px;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid var(--cr-gold-luxury);
  outline: 2px solid var(--cr-gold-bright);
  outline-offset: -8px;
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.6),
    0 25px 50px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(234, 209, 168, 0.7),
    0 0 80px rgba(200, 171, 126, 0.5),
    0 0 160px rgba(200, 171, 126, 0.35);
  transition: var(--cr-ease-lux);
}

.cr-lux-image-porthole img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cr-lux-visual-stack:hover .cr-lux-image-porthole {
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.4),
    0 30px 60px rgba(0, 0, 0, 0.8),
    0 0 45px rgba(234, 209, 168, 0.9),
    0 0 100px rgba(200, 171, 126, 0.7),
    0 0 200px rgba(200, 171, 126, 0.5);
}

.cr-lux-visual-stack:hover .cr-lux-image-porthole img {
  transform: scale(1.07);
}

.cr-lux-satellite-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  background: rgba(25, 25, 24, 0.75);
  border: 1px solid var(--cr-border-glow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: var(--cr-ease-lux);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.badge-pos-alpha {
  width: 130px;
  height: 130px;
  top: 170px;
  left: -20px;
  animation: cr-float-up-down 6s ease-in-out infinite alternate;
}

.badge-pos-beta {
  width: 130px;
  height: 130px;
  top: 60px;
  right: -20px;
  animation: cr-float-side-side 7s ease-in-out infinite alternate;
}

.cr-lux-badge-label {
  margin-top: 4px;
  color: var(--cr-cream-white);
  font-family: var(--cr-sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.cr-lux-metric-cluster-curved {
  position: absolute;
  bottom: -100px;
  z-index: 4;
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cr-lux-metric-pill {
  position: absolute;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1a1a19;
  border: 4px solid var(--cr-gold-bright);
  box-shadow:
    inset 0 0 15px rgba(234, 209, 168, 0.4),
    0 15px 35px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(234, 209, 168, 0.65),
    0 0 45px rgba(200, 171, 126, 0.45);
  text-align: center;
  pointer-events: auto;
  transition: var(--cr-ease-lux);
}

.cr-lux-metric-pill.pill-left {
  left: 8%;
  bottom: 40px;
}

.cr-lux-metric-pill.pill-center {
  bottom: 0;
  transform: scale(1.05);
}

.cr-lux-metric-pill.pill-right {
  right: 8%;
  bottom: 40px;
}

.cr-lux-metric-pill.pill-left:hover,
.cr-lux-metric-pill.pill-right:hover {
  border-color: #fff;
  transform: translateY(-8px) scale(1.08);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.6),
    0 20px 40px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(234, 209, 168, 0.9),
    0 0 65px rgba(200, 171, 126, 0.7);
}

.cr-lux-metric-pill.pill-center:hover {
  border-color: #fff;
  transform: translateY(-8px) scale(1.12);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.6),
    0 20px 40px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(234, 209, 168, 0.9),
    0 0 65px rgba(200, 171, 126, 0.7);
}

.cr-lux-pill-title {
  padding: 0 8px;
  color: var(--cr-cream-white);
  font-family: var(--cr-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.cr-lux-icon-wrapper,
.cr-lux-pill-graphic {
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cr-gold-bright);
}

.cr-lux-icon-wrapper svg,
.cr-lux-pill-graphic svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cr-lux-metric-pill:hover .cr-lux-pill-graphic {
  color: #fff;
  transform: scale(1.05);
  transition: var(--cr-ease-lux);
}

.graphic-drop::after,
.graphic-vapor::after,
.graphic-extract::after,
.graphic-timer::after,
.graphic-sparkle::after {
  display: none !important;
  content: "" !important;
}

@keyframes cr-orbit-clockwise {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cr-orbit-counter {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes cr-float-up-down {
  to {
    transform: translateY(-12px);
  }
}

@keyframes cr-float-side-side {
  to {
    transform: translateY(-10px) translateX(6px);
  }
}

@media (max-width: 1100px) {
  .cr-lux-section {
    padding: 95px 24px 160px;
  }

  .cr-lux-layout-grid {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .cr-lux-editorial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .cr-lux-body-text {
    text-align: center;
  }

  .cr-lux-action-trigger {
    align-self: center;
  }
}

@media (max-width: 650px) {
  .cr-lux-image-porthole {
    width: 320px;
    height: 320px;
  }

  .badge-pos-alpha {
    width: 105px;
    height: 105px;
    top: 110px;
    left: -10px;
  }

  .badge-pos-beta {
    width: 115px;
    height: 115px;
    top: 30px;
    right: -10px;
  }

  .cr-lux-badge-label {
    font-size: 10px;
  }

  .cr-lux-metric-cluster-curved {
    bottom: -130px;
  }

  .cr-lux-metric-pill {
    width: 95px;
    height: 95px;
  }

  .cr-lux-metric-pill.pill-left {
    left: 2%;
    bottom: 35px;
  }

  .cr-lux-metric-pill.pill-center {
    bottom: 5px;
  }

  .cr-lux-metric-pill.pill-right {
    right: 2%;
    bottom: 35px;
  }

  .cr-lux-pill-title {
    font-size: 10px;
  }
}


/* end first section */









/* start our services */

.services-editorial {
  padding: 140px 20px;
  background: #FBF6EF;
  position: relative;
  overflow: hidden;
}

/* Subtle luxury background elements */
.services-editorial::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -250px;
  top: -250px;
  border: 1px dashed rgba(216, 192, 154, 0.35);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}

.services-editorial::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -180px;
  bottom: -180px;
  border: 1px solid rgba(216, 192, 154, 0.25);
  border-radius: 50%;
}

.editorial-header {
  max-width: 680px;
  margin: 0 auto 80px;
  text-align: center;
}

.editorial-header span {
  color: #C89B55;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

/* Smaller, more elegant luxury headline */
.editorial-header h2 {
  margin: 0 0 20px;
  color: #292826;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.editorial-header p {
  color: #67635D;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
}

.editorial-wrapper {
  max-width: 1260px;
  margin: auto;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Luxury card shadow & dynamic zoom effect */
.editorial-image {
  position: sticky;
  top: 100px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(41, 40, 38, 0.06);
}

.editorial-image img {
  width: 100%;
  display: block;
  transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.editorial-wrapper:hover .editorial-image img {
  transform: scale(1.04);
}

.editorial-services {
  background: #ffffff;
  border-radius: 24px;
  padding: 10px 50px;
  box-shadow: 0 30px 70px rgba(41, 40, 38, 0.03);
}

/* Fluid luxury transitions */
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 20px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid rgba(216, 192, 154, 0.25);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  text-decoration: none;
  /* Added to keep links looking clean */
}

.service-row:last-child {
  border: none;
}

.service-row:hover {
  padding-left: 15px;
  background: linear-gradient(90deg, rgba(251, 246, 239, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

.number {
  color: #D8C09A;
  font-size: 24px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.service-text h3 {
  margin: 0 0 6px;
  color: #292826;
  font-size: 22px;
  font-weight: 700;
  transition: color 0.4s ease;
}

.service-text p {
  margin: 0;
  color: #7E7A74;
  font-size: 15px;
  line-height: 1.6;
}

.service-row i {
  font-size: 22px;
  color: #0A6A73;
  opacity: 0.6;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: right;
}

/* Multi-element response on hover */
.service-row:hover h3 {
  color: #0A6A73;
}

.service-row:hover i {
  opacity: 1;
  transform: translate(4px, -4px);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media(max-width: 1024px) {
  .editorial-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .editorial-image {
    position: relative;
    top: auto;
    max-width: 550px;
    margin: auto;
  }
}

@media(max-width: 576px) {
  .services-editorial {
    padding: 90px 16px;
  }

  .editorial-services {
    padding: 10px 24px;
  }

  .service-row {
    grid-template-columns: 40px 1fr 24px;
    gap: 15px;
    padding: 28px 0;
  }

  .service-row:hover {
    padding-left: 0;
    background: none;
  }

  .number {
    font-size: 18px;
  }

  .service-text h3 {
    font-size: 18px;
  }

  .service-text p {
    font-size: 14px;
  }
}

/* end our services */



/* start second section */


.pet-care-section {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background: #fff;
}

.pet-container {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.pet-label {
  color: #B79A52;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
}

.pet-content h2 {
  margin: 12px 0 18px;
  color: #111;
  font-size: clamp(42px, 5vw, 66px);
  line-height: .95;
  font-weight: 900;
}

.pet-content>p {
  max-width: 460px;
  color: #292826;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.pet-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.pet-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0A6A73;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pet-icon i {
  font-size: 24px;
}

.pet-feature h3 {
  margin: 0 0 6px;
  color: #111;
  font-size: 20px;
  font-weight: 900;
}

.pet-feature p {
  margin: 0;
  color: #292826;
  font-size: 15px;
  line-height: 1.5;
}

.pet-note {
  max-width: 420px;
  margin-top: 34px;
  padding: 24px;
  border-radius: 10px;
  background: #EFE1C4;
  border: 1px solid rgba(183, 154, 82, .6);
}

.pet-note em {
  display: block;
  color: #111;
  font-size: 16px;
  margin-bottom: 20px;
}

.pet-note a {
  color: #0A6A73;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

.pet-small {
  display: block;
  margin-top: 12px;
  color: #B79A52;
  font-weight: 700;
}

.pet-images {
  position: relative;
  min-height: 620px;
}

.pet-main-img {
  width: 66%;
  height: 620px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .18);
}

.pet-main-img img,
.pet-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pet-small-img {
  position: absolute;
  right: 0;
  top: 100px;
  width: 54%;
  height: 390px;
  border-radius: 12px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
}

@media(max-width:991px) {
  .pet-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .pet-images {
    min-height: 520px;
  }

  .pet-main-img {
    width: 70%;
    height: 520px;
  }

  .pet-small-img {
    height: 320px;
  }
}

@media(max-width:576px) {
  .pet-care-section {
    padding: 80px 16px;
  }

  .pet-images {
    min-height: auto;
  }

  .pet-main-img {
    width: 100%;
    height: 390px;
  }

  .pet-small-img {
    position: relative;
    top: auto;
    right: auto;
    width: 85%;
    height: 260px;
    margin: -90px 0 0 auto;
  }

  .pet-note {
    padding: 20px;
  }
}





/* end second section */

/* start process */

.process-section {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background: #FBF6EF;
}

.process-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -180px;
  top: -180px;
  border: 1px solid rgba(216, 192, 154, .45);
  border-radius: 50%;
}

.process-section::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -240px;
  bottom: -240px;
  border: 2px dashed rgba(44, 138, 135, .25);
  border-radius: 50%;
  animation: processSpin 35s linear infinite;
}

.process-container {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: auto;
}

.process-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.process-header span {
  color: #C89B55;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
}

.process-header h2 {
  margin: 18px 0;
  color: #292826;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 900;
}

.process-header p {
  color: #53565B;
  font-size: 19px;
  line-height: 1.7;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-line {
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: #292826;
  opacity: .35;
}

.process-step {
  position: relative;
  text-align: center;
  animation: processUp .8s ease forwards;
}

.step-number {
  width: 28px;
  height: 28px;
  margin: 0 auto 34px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  position: relative;
  z-index: 3;
}

.step-circle {
  width: 190px;
  height: 190px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: #F1E6D5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(41, 40, 38, .06);
  transition: .4s;
}

.step-circle.large {
  width: 240px;
  height: 240px;
}

.step-circle i {
  font-size: 36px;
  color: #0A6A73;
  margin-bottom: 14px;
}

.step-circle h3 {
  color: #0A6A73;
  font-size: 24px;
  margin: 0;
  font-weight: 900;
}

.process-step p {
  max-width: 220px;
  margin: auto;
  color: #292826;
  font-size: 15px;
  line-height: 1.6;
}

.process-step:hover .step-circle {
  transform: translateY(-10px);
  background: #fff;
}

@keyframes processSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes processUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:991px) {
  .process-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
  }

  .process-line {
    display: none;
  }
}

@media(max-width:576px) {
  .process-section {
    padding: 80px 16px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .step-circle,
  .step-circle.large {
    width: 190px;
    height: 190px;
  }
}

.step-arrow {
  position: relative;
  width: 1.5px;
  height: 62px;
  background: #292826;
  margin: 0 auto 20px;
  opacity: .75;
}

.step-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid #292826;
  border-bottom: 1.5px solid #292826;
  transform: translateX(-50%) rotate(45deg);
}


.step-circle {
  margin: 0 auto 20px;
}

.step-circle.large {
  margin-bottom: 20px;
}

/* end process */










/* start third section */
/* --- Luxury Commercial Section Variables & Base --- */
:root {
  --lux-dark: #111110;
  --lux-muted-dark: #222220;
  --lux-gold-gradient: linear-gradient(135deg, #E5C483 0%, #B89248 50%, #8F6E2D 100%);
  --lux-gold-solid: #C5A059;
  --lux-gold-light: rgba(197, 160, 89, 0.05);
  --lux-silk-bg: #FAF9F5;
  --lux-text-gray: #666663;
  --lux-text-light: #8A8A85;
  --lux-transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.luxury-commercial-section {
  position: relative;
  overflow: hidden;
  padding: 180px 60px;
  background-color: var(--lux-silk-bg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Premium Background Effects --- */
.lux-bg-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.lux-blur-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(223, 186, 115, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  top: -20%;
  right: -10%;
}

.lux-geometric-line {
  position: absolute;
  width: 1px;
  height: 70%;
  background: linear-gradient(to bottom, rgba(197, 160, 89, 0), rgba(197, 160, 89, 0.15) 50%, rgba(197, 160, 89, 0));
  left: 45%;
  top: 15%;
}

.lux-sparkle-star {
  position: absolute;
  color: var(--lux-gold-solid);
  font-size: 18px;
  opacity: 0.25;
  animation: luxTwinkle 5s ease-in-out infinite;
}

.ls-1 {
  top: 12%;
  left: 6%;
  animation-delay: 0s;
}

.ls-2 {
  bottom: 12%;
  right: 6%;
  animation-delay: 2.5s;
}

/* --- Container & Layout Geometry --- */
.lux-commercial-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 120px;
  align-items: center;
}

/* --- Left Column: Luxury Visual Frame --- */
.lux-image-wrapper {
  position: relative;
  padding-right: 60px;
}

.lux-image-frame {
  position: relative;
  clip-path: inset(0 0 0 0 round 2px);
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(17, 17, 16, 0.06);
  background-color: var(--lux-dark);
}

.lux-image-frame img {
  width: 100%;
  height: 740px;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) brightness(0.93) grayscale(0.1);
  transition: var(--lux-transition);
  transform: scale(1);
}

.lux-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 16, 0.25) 0%, rgba(17, 17, 16, 0) 60%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Image Interaction */
.lux-image-wrapper:hover .lux-image-frame img {
  transform: scale(1.03);
  filter: contrast(1.04) brightness(0.96) grayscale(0);
}

/* Minimalist Editorial Floating Badge */
.lux-floating-badge {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 280px;
  background: #FFFFFF;
  padding: 3px;
  box-shadow: 0 40px 90px rgba(17, 17, 16, 0.08);
  border-left: 1px solid rgba(197, 160, 89, 0.3);
  transform: translateY(0);
  transition: var(--lux-transition);
}

.lux-image-wrapper:hover .lux-floating-badge {
  transform: translateY(-8px);
  box-shadow: 0 50px 100px rgba(17, 17, 16, 0.12);
}

.lux-badge-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lux-badge-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--lux-gold-solid);
  font-weight: 600;
}

.lux-badge-title {
  color: var(--lux-dark);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.5px;
  font-family: 'Playfair Display', 'Didot', serif;
}

.lux-badge-desc {
  font-size: 10px;
  color: var(--lux-text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 4px 0 0 0;
}

/* --- Right Column: Text Editorial Architecture --- */
.lux-content-wrapper {
  display: flex;
  flex-direction: column;
}

.lux-pre-title {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--lux-gold-solid);
  font-weight: 600;
  margin-bottom: 20px;
}

.lux-main-title {
  color: var(--lux-dark);
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -1.5px;
  margin: 0 0 40px 0;
  font-family: 'Playfair Display', 'Didot', serif;
}

.lux-serif-accent {
  font-family: 'Playfair Display', 'Didot', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lux-gold-solid);
  background: var(--lux-gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lux-body-text p {
  color: var(--lux-text-gray);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: 0.1px;
}

.lux-body-text .lux-lead-paragraph {
  font-size: 18px;
  line-height: 1.8;
  color: var(--lux-dark);
  font-weight: 400;
  letter-spacing: -0.1px;
}

/* Luxury Feature Lists */
.lux-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  margin: 45px 0 55px 0;
  border-top: 1px solid rgba(197, 160, 89, 0.12);
  padding-top: 45px;
}

.lux-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.lux-icon-box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lux-gold-solid);
  flex-shrink: 0;
  transition: var(--lux-transition);
}

.lux-icon-box svg {
  width: 100%;
  height: 100%;
}

.lux-feature-item:hover .lux-icon-box {
  transform: scale(1.1);
  color: var(--lux-dark);
}

.lux-feature-text h4 {
  margin: 0 0 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--lux-dark);
  letter-spacing: -0.1px;
}

.lux-feature-text span {
  font-size: 13px;
  color: var(--lux-text-light);
  font-weight: 300;
}

/* Premium Interactive CTA Link Button */
.lux-action-area {
  display: block;
}

.lux-premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 24px 50px;
  background: var(--lux-dark);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  border: 1px solid var(--lux-dark);
  transition: var(--lux-transition);
  position: relative;
  z-index: 1;
}

.lux-premium-btn svg {
  width: 16px;
  height: 16px;
  transition: var(--lux-transition);
}

.lux-premium-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--lux-transition);
}

/* CTA Hover States */
.lux-premium-btn:hover {
  color: var(--lux-dark);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: 0 30px 60px rgba(17, 17, 16, 0.08);
}

.lux-premium-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.lux-premium-btn:hover svg {
  transform: translateX(8px);
}

/* --- Micro-Animations --- */
@keyframes luxTwinkle {

  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.45;
    transform: scale(1.1);
  }
}

/* --- Responsive Adaptations --- */
@media(max-width: 1200px) {
  .lux-commercial-container {
    gap: 80px;
  }

  .lux-image-frame img {
    height: 640px;
  }
}

@media(max-width: 991px) {
  .luxury-commercial-section {
    padding: 130px 40px;
  }

  .lux-commercial-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .lux-image-wrapper {
    padding-right: 0;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
  }

  .lux-image-frame img {
    height: 580px;
  }
}

@media(max-width: 600px) {
  .luxury-commercial-section {
    padding: 100px 24px;
  }

  .lux-main-title {
    margin-bottom: 30px;
  }

  .lux-features-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lux-image-frame img {
    height: 440px;
  }

  .lux-floating-badge {
    right: 0;
    bottom: -30px;
    width: 100%;
    padding: 5px;
    box-shadow: 0 20px 50px rgba(17, 17, 16, 0.1);
  }

  .lux-premium-btn {
    width: 100%;
    justify-content: space-between;
    padding: 22px 30px;
  }
}

/* end third section */







/* start faq */
/* --- Luxury Typography and Variables Setup --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --lux-charcoal: #1C1C1A;
  --lux-charcoal-muted: #383835;
  --lux-gold: #C5A059;
  --lux-bone-bg: #FBFBFA;
  --lux-border: rgba(28, 28, 26, 0.07);
  --lux-text-body: #62625F;
  --lux-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --lux-speed: 0.65s;
}

.lux-faq-section {
  position: relative;
  overflow: hidden;
  padding: 90px 40px;
  background-color: var(--lux-bone-bg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* --- Ambient Layer & Advanced Shapes System --- */
.lux-faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.lux-steam-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
  will-change: transform, opacity;
}

.ls-1 {
  width: 800px;
  height: 800px;
  bottom: -20%;
  left: -10%;
  animation: luxSteamMove 14s ease-in-out infinite alternate;
}

.ls-2 {
  width: 600px;
  height: 600px;
  top: -10%;
  right: -5%;
  animation: luxSteamMove 18s ease-in-out infinite alternate-reverse;
  animation-delay: 2s;
}

/* Base Abstract Shape Properties */
.lux-shape {
  position: absolute;
  border-radius: 50%;
  transform-origin: center center;
  will-change: transform, opacity;
}

/* Large Geometric Outlined Rings */
.lux-ring-1 {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(197, 160, 89, 0.15);
  left: -100px;
  top: 15%;
  animation: luxFloatShape 22s ease-in-out infinite;
}

.lux-ring-2 {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(28, 28, 26, 0.04);
  right: -50px;
  bottom: 10%;
  animation: luxFloatShape 18s ease-in-out infinite alternate;
  animation-delay: -3s;
}

/* Elegant Dashed Orbital Line */
.lux-orbit-dashed {
  width: 520px;
  height: 520px;
  border: 1px dashed rgba(197, 160, 89, 0.12);
  right: 8%;
  top: -120px;
  animation: luxLinearRotate 50s linear infinite;
}

/* Floating Luxury Micro-Orbs (Dust/Steam motes) */
.lux-micro-orb {
  background: rgba(197, 160, 89, 0.25);
  filter: blur(1px);
}

.mo-1 {
  width: 6px;
  height: 6px;
  left: 22%;
  bottom: 30%;
  animation: luxMoteFloat 9s ease-in-out infinite;
}

.mo-2 {
  width: 4px;
  height: 4px;
  right: 25%;
  top: 35%;
  animation: luxMoteFloat 12s ease-in-out infinite;
  animation-delay: -4s;
}

.lux-pinstripe {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(28, 28, 26, 0) 0%, var(--lux-border) 25%, var(--lux-border) 75%, rgba(28, 28, 26, 0) 100%);
  left: 35%;
  top: 0;
}

.lux-editorial-star {
  position: absolute;
  color: var(--lux-gold);
  font-size: 18px;
  opacity: 0.35;
  animation: luxFaqTwinkle 4s ease-in-out infinite;
}

.star-left {
  top: 15%;
  left: 5%;
}

.star-right {
  bottom: 20%;
  right: 5%;
  animation-delay: 2s;
}

/* --- Grid System & Layout Structure --- */
.lux-faq-container {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 90px;
  align-items: start;
}

/* --- Left Column: Sticky Editorial Content Block --- */
.lux-sidebar-sticky {
  position: sticky;
  top: 120px;
}

.lux-section-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--lux-gold);
  font-weight: 700;
  margin-bottom: 22px;
}

.lux-section-title {
  color: var(--lux-charcoal);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -1.5px;
  margin: 0 0 28px 0;
}

.lux-serif-text {
  font-family: 'Playfair Display', Didot, Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lux-charcoal-muted);
}

.lux-section-desc {
  color: var(--lux-text-body);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 360px;
  font-weight: 400;
}

/* --- Right Column: Minimal Architectural Accordion --- */
.lux-faq-list {
  display: flex;
  flex-direction: column;
}

.lux-faq-item {
  border-bottom: 1px solid var(--lux-border);
  background: transparent;
  transition: border-color var(--lux-speed) var(--lux-ease);
}

.lux-faq-item:first-child {
  border-top: 1px solid var(--lux-border);
}

/* Header Trigger Interface */
.lux-faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  gap: 20px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: var(--lux-charcoal);
  outline: none;
}

.lux-faq-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--lux-gold);
  letter-spacing: 1px;
  opacity: 0.8;
}

.lux-faq-text {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.4px;
  transition: color var(--lux-speed) var(--lux-ease);
}

/* Custom Minimalist Minimal Geometric Cross-Lines Icon */
.lux-faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lux-faq-icon::before,
.lux-faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--lux-charcoal);
  transition: transform var(--lux-speed) var(--lux-ease), background-color var(--lux-speed) var(--lux-ease), opacity var(--lux-speed);
}

.lux-faq-icon::before {
  width: 100%;
  height: 1.5px;
}

.lux-faq-icon::after {
  width: 1.5px;
  height: 100%;
}

/* Dropdown Content Frame Panels */
.lux-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--lux-speed) var(--lux-ease);
  will-change: max-height;
}

.lux-faq-content {
  padding: 0 40px 36px 60px;
}

.lux-faq-content p {
  margin: 0;
  color: var(--lux-text-body);
  font-size: 16px;
  line-height: 1.85;
}

/* --- Interactive Active State Triggers --- */
.lux-faq-trigger:hover .lux-faq-text {
  color: var(--lux-gold);
}

.lux-faq-item.active {
  border-bottom-color: rgba(197, 160, 89, 0.25);
}

.lux-faq-item.active .lux-faq-text {
  color: var(--lux-gold);
  font-weight: 500;
}

.lux-faq-item.active .lux-faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.lux-faq-item.active .lux-faq-icon::before {
  background-color: var(--lux-gold);
}

/* --- Professional Staggered Intersection Transitions --- */
.reveal-element {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1s var(--lux-ease), transform 1s var(--lux-ease);
  will-change: transform, opacity;
}

.reveal-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- CSS Structural Keyframe Animations --- */
@keyframes luxSteamMove {
  0% {
    transform: scale(1) translate(0px, 0px);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1) translate(20px, -15px);
    opacity: 0.8;
  }

  100% {
    transform: scale(1) translate(-5px, 5px);
    opacity: 0.5;
  }
}

@keyframes luxFloatShape {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(3deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes luxLinearRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes luxMoteFloat {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.2;
  }

  50% {
    transform: translateY(-25px) translateX(10px);
    opacity: 0.6;
  }
}

@keyframes luxFaqTwinkle {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.95);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}


/* --- FAQ Sidebar Image Enhancements --- */
.lux-sidebar-image-wrap {
  margin-top: 35px;
  /* Creates clean spatial breathing room under the text */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(216, 192, 154, 0.25);
  /* Subtle gold frame boundary */
  box-shadow: 0 20px 45px rgba(28, 28, 26, 0.05);
  /* Soft premium ambient shadow */
  max-width: 360px;
  /* Perfectly matches the max-width boundary of your text description */
}

.lux-sidebar-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--lux-ease);
}

/* Subtle elegant micro-interaction when hovering the sidebar area */
.lux-faq-sidebar:hover .lux-sidebar-img {
  transform: scale(1.03);
}

/* Responsive adjustment for tablet/mobile viewports */
@media(max-width: 991px) {
  .lux-sidebar-image-wrap {
    max-width: 100%;
    /* Spans full horizontal width comfortably on mobile layouts */
    margin-top: 25px;
  }
}


/* --- Responsive Layout Breaks --- */
@media(max-width: 1120px) {
  .lux-faq-container {
    gap: 40px;
  }

  .lux-pinstripe {
    left: 32%;
  }
}

@media(max-width: 991px) {
  .lux-faq-section {
    padding: 120px 30px;
  }

  .lux-faq-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .lux-pinstripe {
    display: none;
  }

  .lux-sidebar-sticky {
    position: relative;
    top: 0;
  }

  .lux-section-desc {
    max-width: 100%;
  }

  .lux-ring-1,
  .lux-ring-2,
  .lux-orbit-dashed {
    display: none;
  }

  /* Kept clean on smaller viewports */
}

@media(max-width: 600px) {
  .lux-faq-section {
    padding: 90px 20px;
  }

  .lux-faq-trigger {
    grid-template-columns: 40px 1fr 20px;
    padding: 26px 0;
    gap: 10px;
  }

  .lux-faq-text {
    font-size: 16px;
  }

  .lux-faq-content {
    padding: 0 0 28px 40px;
  }

  .lux-faq-content p {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* end faq */










/* start forth section  */


/*=========================
 FINAL BENEFITS SECTION
==========================*/

/* --- Typography Framework & Settings --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --c-charcoal: #1C1C1A;
  --c-charcoal-light: #2D2D2A;
  --c-gold: #C5A059;
  --c-gold-pale: #D8C09A;
  --c-muted: #67635D;
  --c-teal: #0A6A73;
  --c-luxury-bg: #FBF9F6;

  --b-radius: 24px;
  --anim-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --t-speed: 0.6s;
}

.benefits-final {
  position: relative;
  overflow: hidden;
  padding: 90px 40px;
  background: linear-gradient(180deg, var(--c-luxury-bg) 0%, #FFFFFF 100%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* --- Section Heading --- */
.section-heading {
  max-width: 780px;
  margin: 0 auto 100px;
  text-align: center;
}

.luxury-label {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 40px;
  color: var(--c-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-heading h2 {
  color: var(--c-charcoal);
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -1px;
  margin: 0 auto 20px;
  max-width: 720px;
}

.serif-accent {
  font-family: 'Playfair Display', Didot, Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--c-charcoal-light);
}

.section-heading p {
  color: var(--c-muted);
  font-size: 17px;
  line-height: 1.85;
  font-weight: 400;
}

/* --- Grid System Configuration --- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  align-items: stretch;
}

/* Refined Architectural Line replacing the heavy layout strip */
.benefit-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, rgba(197, 160, 89, 0) 0%, rgba(197, 160, 89, 0.2) 20%, rgba(197, 160, 89, 0.2) 80%, rgba(197, 160, 89, 0) 100%);
  z-index: 1;
}

/* --- Luxury Benefit Cards --- */
.benefit-card {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-radius: var(--b-radius);
  transition: transform var(--t-speed) var(--anim-smooth), box-shadow var(--t-speed) var(--anim-smooth), border-color var(--t-speed) var(--anim-smooth);
  border: 1px solid rgba(28, 28, 26, 0.04);
  box-shadow: 0 20px 50px rgba(28, 28, 26, 0.03);
}

.card-interior {
  padding: 80px 40px 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Subtle Editorial Number Tag */
.card-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.6;
}

/* Icon Foundations */
.icon-circle {
  position: absolute;
  left: 45px;
  top: -36px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--c-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.12);
  transition: background-color var(--t-speed) var(--anim-smooth), transform var(--t-speed) var(--anim-smooth);
}

.icon-circle i {
  font-size: 28px;
  color: var(--c-teal);
  transition: color var(--t-speed) var(--anim-smooth);
}

.benefit-card h3 {
  margin: 0 0 16px 0;
  color: var(--c-charcoal);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.benefit-card p {
  color: var(--c-muted);
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0;
}

/* Interactive States */
.benefit-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 30px 70px rgba(28, 28, 26, 0.08);
  border-color: rgba(197, 160, 89, 0.25);
}

.benefit-card:hover .icon-circle {
  background-color: var(--c-teal);
  transform: scale(1.05);
}

.benefit-card:hover .icon-circle i {
  color: #FFFFFF;
}

/* Feature/Active State Treatment */
.benefit-card.active {
  transform: translateY(-20px);
  border-color: rgba(197, 160, 89, 0.3);
  box-shadow: 0 30px 65px rgba(197, 160, 89, 0.1);
}

.benefit-card.active .icon-circle {
  background-color: var(--c-charcoal);
  border-color: var(--c-charcoal);
}

.benefit-card.active .icon-circle i {
  color: var(--c-gold);
}

/* --- Decorative Luxury Backdrop Shapes & Smoke --- */
.benefits-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Fluid Smoke/Steam Radiance Layers */
.lux-vapor-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(50px);
  will-change: transform, opacity;
}

.vg-1 {
  width: 700px;
  height: 700px;
  top: -10%;
  right: -5%;
  animation: luxSteamMove 16s ease-in-out infinite alternate;
}

.vg-2 {
  width: 600px;
  height: 600px;
  bottom: -15%;
  left: -5%;
  animation: luxSteamMove 20s ease-in-out infinite alternate-reverse;
}

/* Geometric Minimalist Ring Overlays */
.ring {
  position: absolute;
  border-radius: 50%;
  transform-origin: center center;
}

.ring1 {
  width: 440px;
  height: 440px;
  left: -150px;
  top: -100px;
  border: 1px solid rgba(197, 160, 89, 0.15);
}

.ring2 {
  width: 600px;
  height: 600px;
  right: -200px;
  top: 15%;
  border: 1px dashed rgba(10, 106, 115, 0.08);
  animation: spin 60s linear infinite;
}

.ring3 {
  width: 380px;
  height: 380px;
  bottom: -100px;
  left: 35%;
  border: 1px solid rgba(197, 160, 89, 0.12);
  animation: floatRing 12s ease-in-out infinite alternate;
}

/* Floating Micro Dust Particles */
.lux-dust-orb {
  position: absolute;
  background: rgba(197, 160, 89, 0.3);
  border-radius: 50%;
  filter: blur(0.5px);
}

.d-1 {
  width: 5px;
  height: 5px;
  left: 18%;
  bottom: 25%;
  animation: particleFloat 8s ease-in-out infinite;
}

.d-2 {
  width: 4px;
  height: 4px;
  right: 22%;
  top: 30%;
  animation: particleFloat 11s ease-in-out infinite -3s;
}

/* Elegant Sparkle Details */
.spark {
  position: absolute;
  color: var(--c-gold-pale);
  font-size: 22px;
  opacity: 0.4;
  animation: twinkle 4s ease-in-out infinite;
}

.s1 {
  left: 8%;
  top: 22%;
}

.s2 {
  right: 10%;
  top: 12%;
  animation-delay: 1.5s;
}

.s3 {
  left: 48%;
  bottom: 12%;
  animation-delay: 0.8s;
}

/* --- Production Scroll-Reveal Frames --- */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--anim-smooth), transform 1.2s var(--anim-smooth);
  will-change: transform, opacity;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Dynamic Animation Keyframes --- */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes floatRing {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes luxSteamMove {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  50% {
    transform: translate(25px, -20px) scale(1.08);
  }

  100% {
    transform: translate(-10px, 10px) scale(1);
  }
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.2;
  }

  50% {
    transform: translateY(-30px) translateX(15px);
    opacity: 0.7;
  }
}

/* --- Fully Responsive Breakpoints --- */
@media(max-width: 1200px) {
  .benefits-final {
    padding: 130px 30px;
  }

  .benefit-grid {
    gap: 24px;
  }

  .card-interior {
    padding: 70px 30px 40px;
  }
}

@media(max-width: 992px) {
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    max-width: 580px;
    margin: 0 auto;
  }

  .benefit-grid::before {
    display: none;
  }

  .benefit-card.active {
    transform: none;
  }

  .icon-circle {
    left: 35px;
  }

  .ring2,
  .ring3 {
    display: none;
  }

  /* Kept clean on handheld interfaces */
}

@media(max-width: 576px) {
  .benefits-final {
    padding: 90px 20px;
  }

  .section-heading {
    margin-bottom: 75px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .card-interior {
    padding: 65px 24px 35px;
  }

  .icon-circle {
    width: 64px;
    height: 64px;
    top: -32px;
  }

  .icon-circle i {
    font-size: 24px;
  }

  .benefit-card h3 {
    font-size: 21px;
  }
}




/* end forth section  */


/* start testimonials */

/* --- Typography Setup & System Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --lux-deep-teal: #0A5F63;
  --lux-dark-slate: #1C2B2B;
  --lux-gold: #C5A059;
  --lux-gold-light: #D8C09A;
  --lux-charcoal: #292826;
  --lux-text-gray: #5A5D5A;
  --lux-bg-gradient: linear-gradient(180deg, #FBF9F5 0%, #FFFFFF 60%, #F4F1EB 100%);
  --lux-smooth-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --lux-transition-speed: 0.6s;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 160px 40px;
  background: var(--lux-bg-gradient);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.testimonials-container {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
}

/* --- Section Header Layout --- */
.testimonials-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 90px;
}

.editorial-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 50px;
  color: var(--lux-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 24px;
}

.testimonials-header h2 {
  margin: 0 0 20px;
  color: var(--lux-dark-slate);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -1.5px;
}

.serif-text {
  font-family: 'Playfair Display', Didot, Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lux-deep-teal);
}

.testimonials-header p {
  color: var(--lux-text-gray);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}

/* --- Architectural Grid and Cards --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(216, 192, 154, 0.25);
  box-shadow: 0 20px 60px rgba(41, 40, 38, 0.03);
  transition: transform var(--lux-transition-speed) var(--lux-smooth-ease),
    box-shadow var(--lux-transition-speed) var(--lux-smooth-ease),
    border-color var(--lux-transition-speed) var(--lux-smooth-ease);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(10, 95, 99, 0.07);
  border-color: rgba(197, 160, 89, 0.5);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.quote {
  color: rgba(197, 160, 89, 0.2);
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: 0.4;
  font-weight: 900;
  transform: translateY(20px);
}

.stars {
  color: var(--lux-gold);
  letter-spacing: 3px;
  font-size: 15px;
}

.testimonial-card>p {
  color: var(--lux-charcoal);
  font-size: 16.5px;
  line-height: 1.85;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

/* Client Identity Frame */
.client {
  border-top: 1px solid rgba(200, 155, 85, 0.15);
  padding-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-avatar-wrapper {
  position: relative;
  width: 68px;
  height: 68px;
}

.client img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--lux-gold-light);
  padding: 4px;
  background: #FFFFFF;
}

.client h3 {
  margin: 0 0 4px 0;
  color: var(--lux-dark-slate);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.client span {
  color: var(--lux-gold);
  font-size: 14px;
  font-weight: 500;
}

/* --- Luxury Call To Action Panel --- */
.testimonial-cta {
  max-width: 1100px;
  margin: 90px auto 0;
  padding: 40px 50px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--lux-dark-slate) 0%, #073436 100%);
  border: 1px solid rgba(197, 160, 89, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 35px 80px rgba(7, 52, 54, 0.15);
  position: relative;
  overflow: hidden;
}

/* Ambient glow accent inside CTA */
.testimonial-cta::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
  right: -50px;
  top: -50px;
  pointer-events: none;
}

.cta-left-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

.cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(216, 192, 154, 0.4);
  color: var(--lux-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
}

.testimonial-cta h3 {
  margin: 0 0 6px 0;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.testimonial-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

.cta-action-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 50px;
  background: var(--lux-gold);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--lux-transition-speed) var(--lux-smooth-ease),
    transform var(--lux-transition-speed) var(--lux-smooth-ease);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.2);
}

.cta-action-button:hover {
  background: var(--lux-gold-light);
  transform: translateY(-2px);
}

.cta-action-button .arrow {
  transition: transform 0.3s var(--lux-smooth-ease);
}

.cta-action-button:hover .arrow {
  transform: translateX(4px);
}

/* --- Animated Vapor & Floating Vector Elements --- */
.testimonials-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Fluid Vapor Clouds */
.lux-testimonial-vapor {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(45px);
  will-change: transform, opacity;
}

.tv-1 {
  width: 700px;
  height: 700px;
  top: 5%;
  left: -10%;
  animation: luxTestimonialVaporAnim 15s ease-in-out infinite alternate;
}

.tv-2 {
  width: 600px;
  height: 600px;
  bottom: 5%;
  right: -5%;
  animation: luxTestimonialVaporAnim 20s ease-in-out infinite alternate-reverse;
  animation-delay: 2s;
}

.testimonial-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.12);
}

.tc-1 {
  width: 400px;
  height: 400px;
  left: -200px;
  top: 10%;
}

.tc-2 {
  width: 320px;
  height: 320px;
  right: -100px;
  bottom: 15%;
}

.testimonial-dashed {
  position: absolute;
  width: 580px;
  height: 580px;
  right: -150px;
  top: -150px;
  border: 1px dashed rgba(10, 95, 99, 0.06);
  border-radius: 50%;
  animation: testimonialSpin 80s linear infinite;
}

/* Luxury Background Floating Dust Motes */
.lux-testimonial-mote {
  position: absolute;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.2);
  filter: blur(0.5px);
}

.tm-1 {
  width: 5px;
  height: 5px;
  left: 25%;
  top: 40%;
  animation: moteFloat 10s ease-in-out infinite;
}

.tm-2 {
  width: 4px;
  height: 4px;
  right: 30%;
  bottom: 35%;
  animation: moteFloat 14s ease-in-out infinite -4s;
}

.testimonial-sparkle {
  position: absolute;
  color: var(--lux-gold-light);
  font-size: 20px;
  opacity: 0.35;
  animation: testimonialTwinkle 4s ease-in-out infinite;
}

.ts-1 {
  left: 8%;
  top: 25%;
}

.ts-2 {
  right: 12%;
  top: 20%;
  animation-delay: 2s;
}

.ts-3 {
  left: 5%;
  bottom: 30%;
  animation-delay: 1s;
}

/* --- Production Reveal Animations --- */
.reveal-testimonial {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.2s var(--lux-smooth-ease), transform 1.2s var(--lux-smooth-ease);
  will-change: transform, opacity;
}

.reveal-testimonial.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Structural Animation Keyframes --- */
@keyframes testimonialSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes testimonialTwinkle {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

@keyframes luxTestimonialVaporAnim {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -20px) scale(1.06);
  }

  100% {
    transform: translate(-10px, 10px) scale(1);
  }
}

@keyframes moteFloat {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.2;
  }

  50% {
    transform: translateY(-30px) translateX(15px);
    opacity: 0.6;
  }
}

/* --- Elegant Responsive Layout Engineering --- */
@media(max-width: 1100px) {
  .testimonials-section {
    padding: 120px 30px;
  }

  .testimonials-grid {
    gap: 24px;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .testimonial-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 30px;
  }

  .cta-action-button {
    width: 100%;
    justify-content: center;
  }
}

@media(max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 620px;
    margin: 0 auto;
  }

  .testimonial-cta {
    max-width: 620px;
    margin-top: 60px;
  }

  .tc-1,
  .tc-2,
  .testimonial-dashed {
    display: none;
  }

  /* Eliminate side clutter on mobile views */
}

@media(max-width: 576px) {
  .testimonials-section {
    padding: 90px 20px;
  }

  .testimonials-header {
    margin-bottom: 60px;
  }

  .testimonial-card {
    padding: 40px 24px;
  }

  .client {
    gap: 16px;
  }

  .client-avatar-wrapper {
    width: 60px;
    height: 60px;
  }

  .testimonial-cta {
    padding: 30px 24px;
    gap: 24px;
  }

  .cta-left-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .testimonial-cta h3 {
    font-size: 19px;
  }

  .testimonial-cta p {
    font-size: 15px;
  }
}


/* end testimonials */


/* start contact */

/*=========================
CONTACT SECTION
==========================*/

/* --- System Design Custom Variables --- */
:root {
  --contact-teal: #0A5F63;
  --contact-dark-slate: #1C2B2B;
  --contact-gold: #C5A059;
  --contact-gold-light: #D8C09A;
  --contact-charcoal: #292826;
  --contact-muted: #5E625F;
  --contact-input-bg: #FCFAF7;
  --contact-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 140px 40px;
  background: linear-gradient(180deg, #FDFDFD 0%, #FAF6F0 100%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: start;
}

/* --- Left Column Info Deck --- */
.contact-label {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--contact-gold);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-info h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 300;
  color: var(--contact-dark-slate);
  margin: 0 0 24px 0;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.serif-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--contact-teal);
}

.contact-info p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--contact-muted);
  margin: 0 0 45px 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-list i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--contact-teal);
  box-shadow: 0 10px 30px rgba(10, 95, 99, 0.05);
  border: 1px solid rgba(216, 192, 154, 0.25);
  flex-shrink: 0;
}

.contact-list strong {
  font-size: 19px;
  font-weight: 600;
  color: var(--contact-dark-slate);
}

.contact-list div {
  font-size: 16px;
  line-height: 1.7;
  color: var(--contact-charcoal);
  font-weight: 400;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--contact-teal);
}

.contact-list .days {
  font-weight: 600;
  color: var(--contact-muted);
}

/* --- Right Column Glass Form Card --- */
.contact-right {
  display: flex;
  flex-direction: column;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 55px;
  border-radius: 24px;
  box-shadow: 0 40px 90px rgba(41, 40, 38, 0.05);
  border: 1px solid rgba(216, 192, 154, 0.3);
}

.contact-form-card h3 {
  font-size: 28px;
  margin: 0 0 35px 0;
  font-weight: 400;
  color: var(--contact-dark-slate);
  letter-spacing: -0.5px;
}

.estimate-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.input-group {
  position: relative;
  width: 100%;
}

.estimate-form input,
.estimate-form textarea,
.estimate-form select {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(41, 40, 38, 0.1);
  border-radius: 12px;
  background: var(--contact-input-bg);
  font-size: 15.5px;
  color: var(--contact-charcoal);
  transition: border-color 0.4s var(--contact-ease), box-shadow 0.4s var(--contact-ease), background 0.4s var(--contact-ease);
  outline: none;
}

.estimate-form textarea {
  height: 130px;
  resize: none;
}

/* Custom styled Select wrapper arrow icons */
.select-wrapper::after {
  content: '▼';
  font-size: 10px;
  color: var(--contact-gold);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.estimate-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.estimate-form input:focus,
.estimate-form textarea:focus,
.estimate-form select:focus {
  background: #FFFFFF;
  border-color: var(--contact-teal);
  box-shadow: 0 0 0 4px rgba(10, 95, 99, 0.06);
}

.estimate-form button.submit-btn {
  padding: 20px;
  border: none;
  border-radius: 50px;
  background: var(--contact-teal);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.4s var(--contact-ease), background 0.4s var(--contact-ease), box-shadow 0.4s var(--contact-ease);
  box-shadow: 0 10px 25px rgba(10, 95, 99, 0.15);
  margin-top: 10px;
}

.estimate-form button.submit-btn:hover {
  background: var(--contact-dark-slate);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(28, 43, 43, 0.2);
}

/* --- Architectural Full Width Map Section --- */
.contact-map-full {
  max-width: 1320px;
  margin: 0 auto;
  height: 480px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(216, 192, 154, 0.25);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.04);
}

.contact-map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(1.02);
}

/* --- Fine Structural Vector & Ambient Animations --- */
.contact-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.lux-contact-vapor {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(50px);
}

.cv-1 {
  width: 600px;
  height: 600px;
  left: -10%;
  top: -10%;
  animation: contactMover 18s ease-in-out infinite alternate;
}

.cv-2 {
  width: 500px;
  height: 500px;
  right: -5%;
  bottom: -5%;
  animation: contactMover 22s ease-in-out infinite alternate-reverse;
}

.circle,
.dashed {
  position: absolute;
  border-radius: 50%;
}

.circle {
  border: 1px solid rgba(197, 160, 89, 0.15);
}

.c1 {
  width: 350px;
  height: 350px;
  left: -150px;
  top: -150px;
}

.c2 {
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: 10%;
}

.dashed {
  width: 550px;
  height: 550px;
  border: 1px dashed rgba(10, 95, 99, 0.08);
  right: -150px;
  top: -150px;
  animation: spinContact 90s linear infinite;
}

.spark {
  position: absolute;
  font-size: 24px;
  color: var(--contact-gold-light);
  opacity: 0.4;
  animation: twinkleContact 4s infinite ease-in-out;
}

.s1 {
  left: 6%;
  top: 15%;
}

.s2 {
  right: 8%;
  bottom: 35%;
  animation-delay: 2s;
}

/* --- Transition Classes --- */
.reveal-contact {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s var(--contact-ease), transform 1.2s var(--contact-ease);
  will-change: transform, opacity;
}

.reveal-contact.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Framework Animation Mechanics --- */
@keyframes spinContact {
  to {
    transform: rotate(360deg);
  }
}

@keyframes twinkleContact {

  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.95);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes contactMover {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(30px, -30px);
  }
}

.contact-list li {
  display: flex;
  gap: 20px;
  align-items: center;
  /* This centers the icon and text perfectly together */
  margin-bottom: 28px;
}

/* --- Fluid Structural Media Responsive Breakpoints --- */
@media(max-width: 1200px) {
  .contact-section {
    padding: 120px 30px;
  }

  .contact-container {
    gap: 50px;
  }

  .contact-form-card {
    padding: 40px;
  }
}

@media(max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 680px;
  }

  .contact-info {
    order: 2;
  }

  .contact-right {
    order: 1;
  }

  .contact-map-full {
    height: 380px;
    max-width: 680px;
  }

  .c1,
  .c2,
  .dashed {
    display: none;
  }

  /* Eliminate responsive background collision artifacts */
}

@media(max-width: 576px) {
  .contact-section {
    padding: 80px 20px;
  }

  .contact-container {
    margin-bottom: 50px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-card {
    padding: 35px 24px;
    border-radius: 20px;
  }

  .contact-form-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .contact-info h2 {
    font-size: 34px;
  }

  .contact-map-full {
    height: 280px;
    border-radius: 16px;
  }

  .contact-list li {
    gap: 14px;
  }
}

/* end contact */



/* start footer */





/*=========================
        FOOTER
==========================*/

.footer {
  position: relative;
  overflow: hidden;
  background: #292826;
  padding: 55px 20px 45px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(216, 192, 154, .08), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(44, 138, 135, .06), transparent 35%);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-copy {
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  margin-bottom: 28px;
  letter-spacing: .5px;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.footer-social a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(216, 192, 154, .25);
  color: #D8C09A;
  font-size: 22px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.footer-social a:hover {
  background: #D8C09A;
  color: #292826;
  transform: translateY(-6px);
  border-color: #D8C09A;
  box-shadow: 0 15px 35px rgba(216, 192, 154, .25);
}

/* Fluid Mobile Adaptation Rules */
@media(max-width:576px) {

  .footer {
    padding: 45px 16px 35px;
  }

  .footer-copy {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .footer-social {
    gap: 12px;
    flex-wrap: wrap;
    max-width: 340px;
    /* Prevents awkward single-icon breaks on tiny screens */
    margin: 0 auto;
  }

  .footer-social a {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

}

/* Footer Styles Upgrade */
.footer {
  background-color: var(--primary-dark);
  color: var(--cream);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.footer-zip-title {
  color: var(--accent);
  letter-spacing: 1px;
}

/* Zip code styling */
.footer-zip-grid .zip-tag {
  background-color: rgba(249, 246, 240, 0.05);
  color: var(--cream);
  border: 1px solid rgba(216, 192, 154, 0.2);
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease-in-out;
}

.footer-zip-grid .zip-tag:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.footer-divider {
  border-color: rgba(249, 246, 240, 0.1);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* Social media links styling */


/* end footer */

/* start service locations */

/* Service Locations Styling */
.locations-section {
  background-color: var(--white);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.locations-title {
  color: var(--heading);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.locations-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--gold-accent);
  border-radius: 2px;
}

.location-card-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  background-color: var(--cream);
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(10, 61, 77, 0.05);
  border-radius: 6px;
  transition: all 0.25s ease-in-out;
}

.location-card-link:hover {
  background-color: #074245;
  color: var(--white);
  border-color: #074245;
  box-shadow: 0 4px 12px rgba(10, 61, 77, 0.12);
  transform: translateY(-2px);
}

/* Luxury SVG Icon Color Configuration */
.location-card-link .marker-icon {
  width: 18px;
  height: 18px;
  fill: #D8C09A;
  /* Strict luxury gold baseline */
  transition: fill 0.25s ease-in-out, transform 0.25s ease-in-out;
}

.location-card-link:hover .marker-icon {
  fill: var(--gold-light);
  /* Shifts elegantly on hover */
  transform: scale(1.1);
}

.locations-section .text-muted-custom {
  color: var(--text-muted);
}

/* end service locations */