:root {
  --primary: #7a6654;
  --primary-dark: #4d4034;
  --primary-light: #a58d76;

  --sage: #78806b;
  --sage-dark: #59604f;
  --sage-light: #a9b09a;

  --cream: #f7f3ed;
  --cream-dark: #ebe4da;

  --white: #ffffff;
  --black: #171512;

  --text: #3f3933;
  --text-light: #766e66;

  --border: rgba(255, 255, 255, 0.2);

  --shadow: 0 20px 60px rgba(50, 40, 30, 0.12);

  --transition: all 0.35s ease;

  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.main-header {
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.35s ease;
}

.navbar {
    width: min(1340px, calc(100% - 30px));
    margin: auto;
    padding: 12px 16px;
    border-radius: 50px;
    background: rgba(90, 75, 60, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.main-header.scrolled .navbar {
    background: rgba(38, 29, 22, 0.96);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
}

.navbar-brand:hover {
  color: var(--white);
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.brand-logo svg {
  width: 100%;
  height: 100%;
}

.navbar-nav {
  gap: 8px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 15px !important;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--cream) !important;
}

.nav-appointment {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: var(--sage-dark);
  padding: 10px 18px 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-appointment:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}
.nav-appointmen .fas .fa-arrow-left {
  color: var(--sage-dark) !important;
}

.nav-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-btn-icon i,
.btn-icon i {
  color: var(--sage-dark) !important;
}

.navbar-toggler {
  border: 0;
  font-size: 22px;
  padding: 8px;
}
.navbar-toggler i {
    color: var(--white);

}
.navbar-toggler:focus {
  box-shadow: none;
}

.hero-section {
  position: relative;
  min-height: 850px;
  height: 100vh;
  background-image: url("../images/spa-hero.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 30px;
  margin: 15px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(43, 35, 29, 0.84) 0%,
    rgba(63, 49, 38, 0.57) 42%,
    rgba(48, 38, 30, 0.5) 100%
  );
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25, 21, 18, 0.7), transparent 45%);
}

.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 90px;
}

.hero-content {
  max-width: 680px;
  color: var(--white);
}

.hero-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #d8e19e;
  border-radius: 50%;
  box-shadow: 0 0 12px #d8e19e;
}

.hero-content h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.13;
  letter-spacing: -2px;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero-content h1 span {
  color: #e2d3bb;
}

.hero-content p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--sage-dark);
  color: var(--white);
  padding: 7px 22px 7px 8px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.main-btn:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--sage-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.play-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #b8d59c;
  transition: var(--transition);
}

.story-btn:hover {
  color: var(--white);
}

.story-btn:hover .play-icon {
  background: var(--white);
}

.hero-info-card {
  max-width: 310px;
  margin-right: auto;
  margin-bottom: 5px;
  padding: 34px;
  color: var(--white);
  background: rgba(85, 67, 52, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.card-top {
  font-size: 13px;
  font-weight: 700;
}

.card-top i {
  color: #d9e29b;
  margin-left: 6px;
}

.card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 22px 0;
}

.card-number {
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 12px;
}

.card-number span {
  font-size: 16px;
  font-weight: 600;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}

.card-rating i {
  color: #d9e29b;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 26px;
}

.service-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-direction: column;
  font-size: 11px;
}

.mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-section {
  padding: 120px 0;
  background: var(--cream);
}

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

.section-heading > span,
.small-title {
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 700;
}

.section-heading h2 {
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.25;
  font-weight: 800;
  margin-top: 12px;
}

.service-card {
  position: relative;
  height: 100%;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

.service-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--cream-dark);
  color: var(--sage-dark);
  font-size: 25px;
  margin-bottom: 28px;
}

.service-card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 0;
}

.categories-section {
  padding: 0 0 120px;
  background: var(--cream);
}

.categories-box {
  position: relative;
  overflow: hidden;
  padding: 80px;
  border-radius: 40px;
  background: var(--primary-dark);
  color: var(--white);
}

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

.categories-content h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.25;
  font-weight: 800;
  margin: 15px 0 20px;
}

.categories-content h2 span {
  color: #d8c5a9;
}

.categories-content p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
  font-size: 15px;
}

.category-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.category-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.category-list i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  font-size: 10px;
}

.category-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-content {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  backdrop-filter: blur(10px);
}

.visual-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #d8c5a9;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 18px;
}

.visual-content h3 {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 800;
}

.visual-content p {
  color: rgba(255, 255, 255, 0.6);
  margin: 8px 0 0;
}

.floating-circle {
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8c5a9;
}

.circle-one {
  top: 35px;
  right: 35px;
}

.circle-two {
  bottom: 30px;
  left: 45px;
}

.about-section {
  padding: 110px 0;
  background: var(--white);
  text-align: center;
}

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

.about-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.about-content > span {
  color: var(--sage-dark);
  font-weight: 700;
}

.about-content h2 {
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 800;
  margin: 12px 0 20px;
}

.about-content p {
  color: var(--text-light);
  line-height: 2;
  font-size: 15px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 14px 24px;
  background: var(--sage-dark);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
}

.about-btn:hover {
  background: var(--sage);
  color: var(--white);
}

.contact-section {
  padding: 0 0 100px;
  background: var(--white);
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 55px;
  border-radius: 35px;
  background: var(--cream);
}

.contact-box > div > span {
  color: var(--sage-dark);
  font-weight: 700;
}

.contact-box h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.3;
  font-weight: 800;
  margin: 12px 0 0;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 50px;
  background: #61745d;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background: #4f624c;
  color: var(--white);
  transform: translateY(-3px);
}

.whatsapp-btn i {
  font-size: 20px;
}

.floating-actions {
  position: fixed;
  left: 20px;
  bottom: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  width: 69px;
  height: 69px;
  font-size:20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
  position: relative;
}

.floating-btn:hover {
  color: var(--white);
  transform: translateY(-4px);
}

.whatsapp-floating {
  background: #60765b;
}

.phone-floating {
  background: var(--primary-dark);
}

.floating-btn span {
  position: absolute;
  left: 65px;
  background: var(--black);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  white-space: nowrap;
}

.floating-btn:hover span {
  opacity: 1;
  visibility: visible;
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 999;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 991px) {


    .main-header {
        top: 15px;
    }

    .navbar {
        width: calc(100% - 20px);
        border-radius: 25px;
        position: relative;
    }

    .navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--spa-white);
        font-size: 22px;
        cursor: pointer;
        position: relative;
        z-index: 1002;
    }

    .navbar-collapse {
        display: none;
        width: 100%;
        margin-top: 15px;
        padding: 15px;
        background: rgba(63, 51, 41, 0.96);
        border-radius: 20px;
    }

    .navbar-collapse.show {
        display: block;
    }

    .navbar-nav {
        margin-bottom: 15px !important;
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 10px !important;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    }

    .nav-appointment {
        width: fit-content;
    

}
  .hero-section {
    min-height: 900px;
    height: auto;
  }

  .hero-container {
    padding-top: 180px;
    padding-bottom: 70px;
  }

  .hero-info-card {
    margin: 50px 0 0;
    max-width: 100%;
  }

  .categories-box {
    padding: 55px 35px;
  }
}

@media (max-width: 767px) {
  .navbar-brand {
    font-size: 20px;
  }

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

  .hero-section {
    min-height: 920px;
    background-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(45, 36, 29, 0.58),
      rgba(43, 35, 29, 0.85)
    );
  }

  .hero-container {
    padding-top: 150px;
  }

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

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .hero-info-card {
    padding: 25px;
    margin-top: 45px;
  }

  .services-section {
    padding: 80px 0;
  }

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

  .service-card {
    padding: 28px;
  }

  .categories-section {
    padding-bottom: 80px;
  }

  .categories-box {
    padding: 45px 25px;
    border-radius: 28px;
  }

  .category-list {
    grid-template-columns: 1fr;
  }

  .category-visual {
    min-height: 340px;
    margin-top: 20px;
  }

  .visual-content {
    width: 230px;
    height: 230px;
  }

  .visual-content h3 {
    font-size: 22px;
  }

  .circle-one {
    right: 0;
  }

  .circle-two {
    left: 0;
  }

  .about-section {
    padding: 80px 0;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 25px;
    border-radius: 25px;
  }

  .floating-actions {
    left: 15px;
    bottom: 15px;
  }

  .back-top {
    right: 15px;
    bottom: 15px;
  }
}
@media (min-width: 992px) {

    .navbar-toggler {
        display: none;
    }

    .navbar-collapse {
        display: flex !important;
        align-items: center;
    }

}
@media (max-width: 450px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .main-btn,
  .story-btn {
    width: fit-content;
  }

  .hero-info-card {
    margin-top: 35px;
  }
}

.about-section {
  position: relative;
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.about-row {
  position: relative;
  z-index: 2;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 590px;
  margin: 0 auto;
  padding-left: 20px;
}

.about-image {
  position: relative;
  width: 100%;
  height: 610px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(77, 64, 52, 0.02),
    rgba(77, 64, 52, 0.12)
  );
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-image-wrapper:hover .about-image img {
  transform: scale(1.04);
}

.about-stat-card {
  position: absolute;
  top: -25px;
  right: -50px;
  width: 165px;
  min-height: 145px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(247, 243, 237, 1);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 45px rgba(50, 40, 30, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}

.stat-number {
  color: var(--primary-dark);
  font-family: Georgia, serif;
  font-size: 45px;
  line-height: 1;
  font-weight: 700;
}

.stat-text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 8px;
}

.about-image-decoration {
  position: absolute;
  left: -25px;
  bottom: 25px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--sage);
  border: 10px solid var(--white);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 4;
  box-shadow: 0 12px 30px rgba(50, 40, 30, 0.12);
}

.about-content {
  position: relative;
  padding-right: 65px;
  text-align: right;
}

.about-content::before {
  content: "";
  position: absolute;
  right: 25px;
  top: 5px;
  width: 1px;
  height: 670px;
  background: var(--sage-light);
  opacity: 0.9;
}

.about-label {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--cream);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.about-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.about-content h2 {
  color: var(--primary-dark);
  font-size: clamp(42px, 4vw, 50px);
  line-height: 1.55;
  font-weight: 800;
  margin-bottom: 28px;
}

.about-content h2 span {
  color: var(--primary-dark);
}

.about-description {
  color: var(--text-light);
  font-size: 15px;
  line-height: 2.1;
  max-width: 650px;
  margin-bottom: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 38px;
  margin-bottom: 35px;
}

.about-feature {
  display: flex;
  gap: 18px;
  padding: 0 25px;
  min-height: 105px;
  align-items: flex-start;
}

.about-feature:first-child {
  padding-right: 0;
  border-left: 1px solid var(--cream-dark);
}

.feature-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.about-feature h3 {
  color: var(--primary-dark);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 7px;
}

.about-feature p {
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}

.about-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 12px;
  border-radius: 50px;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.about-btn span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.about-btn > i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.about-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.about-btn:hover > i {
  transform: translateX(-3px);
}

.about-decoration {
  position: absolute;
  pointer-events: none;
}

.about-decoration-top {
  top: 0px;
  left: 20px;
  width: 220px;
  height: 300px;
  border-radius: 50%;
  transform: rotate(-35deg);
  opacity: 0.4;
}

.about-decoration-top::before,
.about-decoration-top::after {
  content: "";
  position: absolute;
  width: 75px;
  height: 120px;
  border-radius: 100% 0 100% 0;
}

.about-decoration-top::before {
  top: 30px;
  left: 35px;
  transform: rotate(25deg);
}

.about-decoration-top::after {
  top: 110px;
  left: 100px;
  transform: rotate(-20deg);
}

.about-decoration-bottom {
  right: 20px;
  bottom: -100px;
  width: 400px;
  height: 600px;
  border-radius: 50%;
  transform: rotate(90deg);
}

.about-decoration-bottom::before {
  content: "";
  position: absolute;
  inset: 45px;
  border-radius: 50%;
}

.about-section.animate .about-image-wrapper {
  animation: aboutImageIn 0.8s ease both;
}

.about-section.animate .about-content {
  animation: aboutContentIn 0.8s 0.15s ease both;
}

@keyframes aboutImageIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutContentIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1199px) {
  .about-content {
    padding-right: 40px;
  }

  .about-content::before {
    right: 10px;
  }

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

  .about-feature {
    padding: 0 15px;
  }

  .about-feature h3 {
    font-size: 18px;
  }
}

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

  .about-image-wrapper {
    max-width: 650px;
    margin-bottom: 70px;
    padding-left: 0;
  }

  .about-image {
    height: 560px;
    border-radius: 28px;
  }

  .about-stat-card {
    left: 25px;
  }

  .about-image-decoration {
    right: 20px;
    bottom: -25px;
  }

  .about-content {
    padding-right: 30px;
  }

  .about-content::before {
    right: 0;
    height: 330px;
  }

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

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

  .about-image-wrapper {
    margin-bottom: 65px;
  }

  .about-image {
    height: 460px;
    border-radius: 22px;
  }

  .about-stat-card {
    right: 11px;
    width: 110px;
    min-height: 125px;
    padding: 16px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-text {
    font-size: 12px;
  }

  .about-image-decoration {
    right: 10px;
    bottom: -25px;
    width: 75px;
    height: 75px;
    border-width: 7px;
    font-size: 23px;
  }

  .about-content {
    padding-right: 0;
  }

  .about-content::before {
    display: none;
  }

  .about-label {
    margin-bottom: 18px;
  }

  .about-content h2 {
    font-size: 38px;
    line-height: 1.35;
  }

  .about-description {
    font-size: 14px;
    line-height: 2;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .about-feature {
    padding: 0 !important;
    border: 0 !important;
    min-height: auto;
  }

  .about-feature h3 {
    font-size: 20px;
  }

  .about-decoration-top {
    width: 150px;
    height: 220px;
    left: 0px;
  }
}

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

  .about-image {
    height: 390px;
  }

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

  .about-description {
    font-size: 13px;
  }

  .about-feature {
    gap: 13px;
  }

  .feature-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    font-size: 19px;
  }

  .about-feature h3 {
    font-size: 17px;
  }

  .about-feature p {
    font-size: 11px;
  }

  .about-btn {
    font-size: 13px;
  }
}
.services-section {
  position: relative;
  padding: 110px 40px;
  background: var(--cream);
  overflow: hidden;
}

.services-section .container-fluid {
  max-width: 1500px;
  margin: auto;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}

.services-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-label i {
  font-size: 16px;
}

.services-header h2 {
  color: var(--primary-dark);
  font-size: clamp(40px, 4vw, 52px);
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
}

.services-intro {
  max-width: 500px;
}

.services-intro p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 22px;
}

.services-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 50px;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.services-phone:hover {
  color: var(--white);
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  z-index: 1;
}
.contact-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.services-grid::before,
.contact-section::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 500px;
  height: 500px;
  background-image: url(../images/bg-3.png);
  background-repeat: no-repeat;
  z-index: -1;
}
.contact-section::before {
  z-index: 1;
}
.service-card {
  position: relative;
  min-height: 580px;
  border-radius: 5px 80px 5px 80px;
  background: #eef1e6;
  overflow: hidden;
  transition: var(--transition);
}

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

.service-card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 50px;
}

.service-number {
  display: block;
  color: var(--black);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.service-divider {
  width: 100%;
  height: 1px;
  background: rgba(77, 64, 52, 0.16);
  margin: 30px 0 28px;
}

.service-card h3 {
  color: var(--black);
  font-size: 26px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 12px;
}

.service-card p {
  max-width: 440px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 2;
  margin: 0;
}

.service-round-image {
  position: absolute;
  left: -5px;
  bottom: -5px;
  width: 52%;
  height: 52%;
  border-radius: 0 100% 0 0;
  overflow: hidden;
  z-index: 2;
}

.service-round-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-round-image img {
  transform: scale(1.08);
}

.service-card-featured {
  position: relative;
  background: var(--primary-dark);
  color: var(--white);
}

.service-card-featured .service-card-image {
  position: absolute;
  inset: 0;
}

.service-card-featured .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card-featured:hover .service-card-image img {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 19, 16, 0.45) 0%,
    rgba(20, 19, 16, 0.35) 38%,
    rgba(20, 19, 16, 0.86) 100%
  );
}

.service-card-featured .service-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.service-card-featured .service-number {
  color: var(--white);
}

.service-card-featured .service-divider {
  background: rgba(255, 255, 255, 0.15);
}

.service-card-featured h3 {
  color: var(--white);
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.9);
}

.services-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 38px;
  padding: 22px 28px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(50, 40, 30, 0.06);
  position: relative;
  z-index: 1;
}

.service-location,
.service-availability {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.service-location i,
.service-availability i {
  color: var(--sage-dark);
  font-size: 16px;
}

.service-location {
  color: var(--primary-dark);
  font-weight: 800;
}

.services-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 50px;
  background: #63755d;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

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

.services-whatsapp i {
  font-size: 18px;
}

.service-card {
  opacity: 0;
  transform: translateY(30px);
}

.services-section.show-services .service-card {
  opacity: 1;
  transform: translateY(0);
}

.services-section.show-services .service-card:nth-child(1) {
  transition-delay: 0.05s;
}

.services-section.show-services .service-card:nth-child(2) {
  transition-delay: 0.1s;
}

.services-section.show-services .service-card:nth-child(3) {
  transition-delay: 0.15s;
}

.services-section.show-services .service-card:nth-child(4) {
  transition-delay: 0.2s;
}

.services-section.show-services .service-card:nth-child(5) {
  transition-delay: 0.25s;
}

.services-section.show-services .service-card:nth-child(6) {
  transition-delay: 0.3s;
}

.services-section.show-services .service-card:nth-child(7) {
  transition-delay: 0.35s;
}

.services-section.show-services .service-card:nth-child(8) {
  transition-delay: 0.4s;
}

@media (max-width: 1200px) {
  .services-section {
    padding: 90px 25px;
  }

  .services-grid {
    gap: 25px;
  }

  .service-card {
    min-height: 540px;
  }

  .service-card-content {
    padding: 38px;
  }

  .service-card h3 {
    font-size: 22px;
  }

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

  .service-icon {
    right: 38px;
    bottom: 35px;
  }
}

@media (max-width: 991px) {
  .services-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .services-intro {
    max-width: 650px;
  }

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

  .service-card {
    min-height: 520px;
  }

  .services-bottom {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 70px 15px;
  }

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

  .services-header h2 {
    font-size: 40px;
  }

  .services-intro p {
    font-size: 13px;
  }

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

  .service-card {
    min-height: 500px;
  }

  .service-card-content {
    padding: 35px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    max-width: 90%;
    font-size: 14px;
  }

  .service-round-image {
    width: 48%;
    height: 48%;
  }

  .services-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px;
  }

  .services-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 60px 12px;
  }

  .services-header h2 {
    font-size: 34px;
  }

  .service-card {
    min-height: 470px;
    border-radius: 22px;
  }

  .service-card-content {
    padding: 28px;
  }

  .service-number {
    font-size: 19px;
  }

  .service-divider {
    margin: 23px 0;
  }

  .service-card h3 {
    font-size: 21px;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.9;
  }

  .service-icon {
    right: 28px;
    bottom: 28px;
    font-size: 29px;
  }

  .service-card-featured .service-icon {
    right: 28px;
    bottom: 28px;
  }

  .service-round-image {
    width: 55%;
    height: 46%;
  }
}
.audience-section {
  position: relative;
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.audience-section::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 50px;
  width: 100px;
  height: 500px;
  background: url(../images/bg-4.png);
  opacity: 0.65;
  background-repeat: no-repeat;
  transform: rotate(20deg);
}

.audience-section::after,
.contact-section::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 420px;
  height: 420px;
  background: url(../images/bg-5.png);
  background-repeat: no-repeat;
}
.contact-section::after {
  right: 0;
  transform: scaleX(-1);
}
.audience-heading {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto 65px;
}

.audience-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  margin-bottom: 20px;
  border-radius: 50px;
  background: var(--cream);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 700;
}

.audience-label i {
  font-size: 15px;
}

.audience-heading h2 {
  color: var(--primary-dark);
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 22px;
}

.audience-heading h2 span {
  color: var(--sage-dark);
  font-style: italic;
}

.audience-heading p {
  max-width: 650px;
  margin: auto;
  color: var(--text-light);
  font-size: 15px;
  line-height: 2;
}

.audience-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  grid-template-rows: 340px 340px;
  gap: 22px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--primary-dark);
  box-shadow: 0 18px 50px rgba(50, 40, 30, 0.1);
  transition: var(--transition);
}

.audience-card-large {
  grid-row: span 2;
}

.audience-card-wide {
  grid-column: span 2;
}

.audience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.audience-card:hover img {
  transform: scale(1.07);
}

.audience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 27, 23, 0.08) 10%,
    rgba(30, 27, 23, 0.25) 42%,
    rgba(30, 27, 23, 0.92) 100%
  );
  z-index: 1;
}

.audience-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.audience-card-content > span {
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.85;
}

.audience-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  font-size: 19px;
}

.audience-card h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 9px;
}

.audience-card p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.9;
  margin: 0 0 16px;
}

.audience-card a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.audience-card a i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.audience-card a:hover {
  color: var(--white);
}

.audience-card a:hover i {
  transform: translateX(-4px);
  background: var(--sage-light);
}

.audience-card-large .audience-card-content {
  padding: 40px;
}

.audience-card-large h3 {
  font-size: 36px;
}

.audience-card-large .audience-icon {
  width: 58px;
  height: 58px;
  font-size: 22px;
}

.audience-card-wide .audience-card-content {
  padding-right: 40px;
}

.audience-footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 35px;
  padding: 22px 30px;
  border-radius: 20px;
  background: var(--cream);
}

.audience-footer-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.audience-footer-item i {
  color: var(--sage-dark);
  font-size: 16px;
}

.audience-footer-line {
  width: 1px;
  height: 25px;
  background: var(--primary-light);
  opacity: 0.4;
}

.audience-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 50px;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}

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

.audience-whatsapp i {
  font-size: 18px;
}

.audience-card {
  opacity: 0;
  transform: translateY(35px);
}

.audience-section.show-audience .audience-card {
  opacity: 1;
  transform: translateY(0);
}

.audience-section.show-audience .audience-card:nth-child(1) {
  transition: all 0.7s ease 0.05s;
}

.audience-section.show-audience .audience-card:nth-child(2) {
  transition: all 0.7s ease 0.15s;
}

.audience-section.show-audience .audience-card:nth-child(3) {
  transition: all 0.7s ease 0.25s;
}

.audience-section.show-audience .audience-card:nth-child(4) {
  transition: all 0.7s ease 0.35s;
}

@media (max-width: 991px) {
  .audience-section {
    padding: 90px 0;
  }

  .audience-heading {
    margin-bottom: 45px;
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 390px 300px 300px;
  }

  .audience-card-large {
    grid-row: span 1;
    grid-column: span 2;
  }

  .audience-card-wide {
    grid-column: span 2;
  }

  .audience-card-large h3 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .audience-section {
    padding: 70px 15px;
  }

  .audience-heading {
    margin-bottom: 35px;
  }

  .audience-heading h2 {
    font-size: 39px;
  }

  .audience-heading p {
    font-size: 13px;
    line-height: 1.9;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 430px);
    gap: 18px;
  }

  .audience-card-large,
  .audience-card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .audience-card-content,
  .audience-card-large .audience-card-content,
  .audience-card-wide .audience-card-content {
    padding: 28px;
  }

  .audience-card h3,
  .audience-card-large h3 {
    font-size: 29px;
  }

  .audience-card p {
    font-size: 12px;
  }

  .audience-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 25px;
  }

  .audience-footer-line {
    display: none;
  }

  .audience-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .audience-section {
    padding: 60px 12px;
  }

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

  .audience-grid {
    grid-template-rows: repeat(4, 390px);
  }

  .audience-card {
    border-radius: 23px;
  }

  .audience-card h3,
  .audience-card-large h3 {
    font-size: 25px;
  }

  .audience-icon {
    width: 45px;
    height: 45px;
  }
}
.why-section {
  position: relative;
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.why-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.why-shape-one {
  width: 420px;
  height: 420px;
  top: -220px;
  right: -180px;
  background: rgba(120, 128, 107, 0.09);
}

.why-shape-two {
  width: 100%;
  height: 350px;
  bottom: -170px;
  left: -130px;
  background-image: url(../images/bg-6.png);
  background-repeat: no-repeat;
}

.why-content {
  position: relative;
  z-index: 2;
  padding-left: 25px;
}

.why-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  margin-bottom: 22px;
  border-radius: 50px;
  background: var(--white);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(50, 40, 30, 0.05);
}

.why-label i {
  font-size: 16px;
}

.why-content h2 {
  color: var(--primary-dark);
  font-size: clamp(42px, 4.5vw, 52px);
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 25px;
}

.why-content h2 span {
  color: var(--sage-dark);
  font-style: italic;
}

.why-intro {
  max-width: 610px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 2.1;
  margin-bottom: 38px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 650px;
}

.why-feature {
  display: flex;
  gap: 17px;
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid rgba(77, 64, 52, 0.13);
}

.why-feature:nth-child(odd) {
  border-left: 1px solid rgba(77, 64, 52, 0.13);
  padding-left: 25px;
}



.why-number {
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 800;
  padding-top: 5px;
  min-width: 22px;
}

.why-feature-content {
  display: flex;
  gap: 13px;
}

.why-feature-icon {
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--white);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(50, 40, 30, 0.05);
}

.why-feature h3 {
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.5;
}

.why-feature p {
  color: var(--text-light);
  font-size: 11px;
  line-height: 1.8;
  margin: 0;
}

.why-action {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 35px;
}

.why-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 7px 10px 7px 20px;
  border-radius: 50px;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.why-btn span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-btn > i {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: var(--white);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.why-btn:hover {
  color: var(--white);
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.why-btn:hover > i {
  transform: translateX(-4px);
}

.why-phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.why-phone span {
  color: var(--text-light);
  font-size: 10px;
}

.why-phone strong {
  color: var(--primary-dark);
  font-size: 15px;
  direction: ltr;
}

.why-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 650px;
  margin: auto;
}

.why-main-image {
  position: absolute;
  inset: 0 30px 0 0;
  overflow: hidden;
  border-radius: 35px 120px 35px 35px;
  box-shadow: var(--shadow);
}

.why-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.why-image-wrapper:hover .why-main-image img {
  transform: scale(1.05);
}

.why-image-overlay {
  position: absolute;
  inset: 0 30px 0 0;
  border-radius: 35px 120px 35px 35px;
  background: linear-gradient(
    180deg,
    rgba(77, 64, 52, 0.02),
    rgba(77, 64, 52, 0.25)
  );
  pointer-events: none;
}

.why-badge {
  position: absolute;
  right: -5px;
  top: 75px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border: 8px solid var(--cream);
  box-shadow: 0 15px 40px rgba(50, 40, 30, 0.15);
  z-index: 3;
}

.why-badge-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.why-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
}

.why-badge span {
  font-size: 7px;
  opacity: 0.7;
  margin-top: 3px;
}

.why-info-card {
  position: absolute;
  bottom: 35px;
  left: -25px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 230px;
  padding: 17px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(50, 40, 30, 0.13);
  z-index: 4;
}

.why-info-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-info-card div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.why-info-card strong {
  color: var(--primary-dark);
  font-size: 14px;
}

.why-info-card span {
  color: var(--text-light);
  font-size: 10px;
}

.why-feature,
.why-image-wrapper {
  opacity: 0;
}

.why-section.show-why .why-feature {
  opacity: 1;
  animation: whyFeatureIn 0.7s ease forwards;
}

.why-section.show-why .why-image-wrapper {
  opacity: 1;
  animation: whyImageIn 0.9s ease forwards;
}

.why-section.show-why .why-feature:nth-child(1) {
  animation-delay: 0.1s;
}

.why-section.show-why .why-feature:nth-child(2) {
  animation-delay: 0.2s;
}

.why-section.show-why .why-feature:nth-child(3) {
  animation-delay: 0.3s;
}

.why-section.show-why .why-feature:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes whyFeatureIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whyImageIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  .why-content {
    padding-left: 0;
  }

  .why-image-wrapper {
    height: 580px;
    margin-top: 20px;
  }

  .why-main-image,
  .why-image-overlay {
    inset: 0;
    border-radius: 30px 100px 30px 30px;
  }

  .why-badge {
    right: 15px;
  }

  .why-info-card {
    left: 20px;
  }
}

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

  .why-content h2 {
    font-size: 39px;
  }

  .why-intro {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .why-feature,
  .why-feature:nth-child(odd) {
    padding: 18px 0;
    border-left: 0;
  }

  .why-feature:nth-child(1) {
    padding-top: 0;
  }

  .why-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .why-image-wrapper {
    height: 480px;
    margin-top: 20px;
  }

  .why-main-image,
  .why-image-overlay {
    border-radius: 25px 80px 25px 25px;
  }

  .why-badge {
    width: 125px;
    height: 125px;
    top: 35px;
    right: -5px;
  }

  .why-info-card {
    bottom: 20px;
    left: 10px;
    min-width: 210px;
  }
}

@media (max-width: 480px) {
  .why-section {
    padding: 60px 12px;
  }

  .why-content h2 {
    font-size: 34px;
  }

  .why-feature h3 {
    font-size: 15px;
  }

  .why-feature p {
    font-size: 10px;
  }

  .why-image-wrapper {
    height: 410px;
  }

  .why-badge {
    width: 110px;
    height: 110px;
    border-width: 6px;
  }

  .why-badge-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .why-badge strong {
    font-size: 14px;
  }

  .why-info-card {
    min-width: 195px;
    padding: 13px;
  }
}
.faq-section {
  position: relative;
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.faq-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.faq-decoration-one {
  width: 420px;
  height: 420px;
  right: -220px;
  top: -180px;
  background: var(--cream);
}

.faq-decoration-two {
  width: 280px;
  height: 280px;
  left: -150px;
  bottom: -150px;
  border: 1px solid rgba(122, 102, 84, 0.12);
}

.faq-intro {
  position: relative;
  z-index: 2;
}

.faq-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  margin-bottom: 22px;
  border-radius: 50px;
  background: var(--cream);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 700;
}

.faq-label i {
  font-size: 15px;
}

.faq-intro h2 {
  color: var(--primary-dark);
  font-size: clamp(42px, 4.5vw, 52px);
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 22px;
}

.faq-intro h2 span {
  color: var(--sage-dark);
  font-style: italic;
}

.faq-intro > p {
  max-width: 470px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 35px;
}

.faq-image {
  position: relative;
  width: 100%;
  max-width: 470px;
  height: 330px;
  overflow: hidden;
  border-radius: 30px 90px 30px 30px;
  box-shadow: var(--shadow);
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.faq-image:hover img {
  transform: scale(1.05);
}

.faq-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(40, 34, 28, 0.45));
}

.faq-image-card {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  min-width: 190px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(40, 34, 28, 0.15);
}

.faq-image-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--sage-dark);
  font-size: 17px;
}

.faq-image-card div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.faq-image-card strong {
  color: var(--primary-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
}

.faq-image-card span {
  color: var(--text-light);
  font-size: 9px;
}

.faq-list {
  position: relative;
  z-index: 2;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--cream-dark);
}

.faq-question {
  width: 100%;
  padding: 25px 5px;
  border: 0;
  outline: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--primary-dark);
  text-align: right;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
}

.faq-question > span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-question > span i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--sage-dark);
  font-size: 17px;
  transition: var(--transition);
}

.faq-plus {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--primary-dark);
  font-size: 12px;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  max-width: 650px;
  padding: 0 55px 25px 0;
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
  line-height: 2;
}

.faq-item.active .faq-question > span i {
  background: var(--sage-dark);
  color: var(--white);
}

.faq-item.active .faq-plus {
  background: var(--sage-dark);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-item {
  opacity: 0;
  transform: translateY(20px);
}

.faq-section.show-faq .faq-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.faq-section.show-faq .faq-item:nth-child(1) {
  transition-delay: 0.05s;
}

.faq-section.show-faq .faq-item:nth-child(2) {
  transition-delay: 0.1s;
}

.faq-section.show-faq .faq-item:nth-child(3) {
  transition-delay: 0.15s;
}

.faq-section.show-faq .faq-item:nth-child(4) {
  transition-delay: 0.2s;
}

.faq-section.show-faq .faq-item:nth-child(5) {
  transition-delay: 0.25s;
}

.faq-section.show-faq .faq-item:nth-child(6) {
  transition-delay: 0.3s;
}

.faq-section.show-faq .faq-item:nth-child(7) {
  transition-delay: 0.35s;
}

@media (max-width: 991px) {
  .faq-section {
    padding: 90px 0;
  }

  .faq-image {
    max-width: 600px;
    height: 380px;
    margin-bottom: 25px;
  }

  .faq-intro > p {
    max-width: 650px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 70px 15px;
  }

  .faq-intro h2 {
    font-size: 39px;
  }

  .faq-intro > p {
    font-size: 13px;
  }

  .faq-image {
    height: 300px;
    border-radius: 24px 70px 24px 24px;
  }

  .faq-image-card {
    right: 15px;
    bottom: 15px;
  }

  .faq-question {
    padding: 20px 0;
    font-size: 13px;
  }

  .faq-question > span {
    gap: 10px;
  }

  .faq-question > span i {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 13px;
  }

  .faq-plus {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .faq-answer p {
    padding: 0 46px 20px 0;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 60px 12px;
  }

  .faq-intro h2 {
    font-size: 34px;
  }

  .faq-image {
    height: 270px;
  }

  .faq-image-card {
    min-width: 165px;
    padding: 10px 12px;
  }

  .faq-image-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .faq-question {
    font-size: 12px;
  }

  .faq-answer p {
    font-size: 10px;
    line-height: 1.9;
  }
}
.premium-breaker {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.premium-breaker-wrap {
  position: relative;
  min-height: 650px;
}

.premium-breaker-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 73%;
  height: 590px;
  overflow: hidden;
  border-radius: 10px;
}

.premium-breaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.premium-breaker-wrap:hover .premium-breaker-image img {
  transform: scale(1.035);
}

.premium-breaker-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 25, 20, 0.08), transparent 50%);
}

.premium-breaker-tag {
  position: absolute;
  top: 35px;
  right: 35px;
  z-index: 2;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  backdrop-filter: blur(5px);
}

.premium-breaker-tag span {
  font-size: 13px;
  letter-spacing: 4px;
  margin-left: 4px;
}

.premium-breaker-tag small {
  margin-top: 3px;
  font-size: 8px;
  letter-spacing: 3px;
}

.premium-breaker-card {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 53%;
  min-height: 440px;
  padding: 60px 65px;
  background: var(--cream);
  box-shadow: 0 25px 70px rgba(50, 40, 30, 0.13);
  border-radius: 30px;
}

.premium-breaker-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(122, 102, 84, 0.18);
}

.premium-breaker-top span {
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
}

.premium-breaker-top i {
  color: var(--sage);
  font-size: 20px;
}

.premium-breaker-card h2 {
  margin: 0 0 25px;
  color: var(--primary-dark);
  font-size: clamp(42px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
}

.premium-breaker-card h2 em {
  color: var(--sage);
  font-style: italic;
}

.premium-breaker-card p {
  max-width: 510px;
  margin: 0 0 35px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 2;
}

.premium-breaker-bottom {
  display: flex;
  align-items: center;
  gap: 35px;
}

.premium-breaker-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.premium-breaker-btn i {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  font-size: 12px;
  transition: var(--transition);
}

.premium-breaker-btn:hover {
  color: var(--sage-dark);
}

.premium-breaker-btn:hover i {
  background: var(--primary);
  color: var(--white);
  transform: translateX(-4px);
}

.premium-breaker-availability {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-light);
  font-size: 11px;
}

.premium-breaker-availability span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.premium-breaker-number {
  position: absolute;
  right: 1%;
  bottom: 8px;
  color: rgba(122, 102, 84, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 130px;
  line-height: 1;
  font-weight: 400;
}

@media (max-width: 991px) {
  .premium-breaker {
    padding: 90px 0;
  }

  .premium-breaker-wrap {
    min-height: 700px;
  }

  .premium-breaker-image {
    width: 100%;
    height: 500px;
  }

  .premium-breaker-card {
    width: 70%;
    min-height: 400px;
    padding: 50px;
  }

  .premium-breaker-number {
    display: none;
  }
}

@media (max-width: 767px) {
  .premium-breaker {
    padding: 70px 0;
  }

  .premium-breaker-wrap {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .premium-breaker-image {
    position: relative;
    width: 100%;
    height: 390px;
    border-radius: 3px;
  }

  .premium-breaker-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 92%;
    margin: -70px auto 0;
    min-height: auto;
    padding: 40px 30px;
  }

  .premium-breaker-top {
    margin-bottom: 25px;
  }

  .premium-breaker-card h2 {
    font-size: 40px;
  }

  .premium-breaker-card p {
    font-size: 13px;
  }

  .premium-breaker-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .premium-breaker-image {
    height: 330px;
  }

  .premium-breaker-card {
    width: 94%;
    padding: 35px 25px;
  }

  .premium-breaker-card h2 {
    font-size: 34px;
  }

  .premium-breaker-tag {
    width: 68px;
    height: 68px;
    top: 20px;
    right: 20px;
  }

  .premium-breaker-tag span {
    font-size: 10px;
  }
}
.contact-section {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: var(--sage-dark);
  border-radius: 10px 80px 10px 80px;
  overflow: hidden;
}

.contact-info {
  position: relative;
  padding: 65px 48px 48px;
  color: var(--white);
}

.contact-heading {
  margin-bottom: 55px;
}

.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: var(--sage-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-label::before {
  content: "";
  width: 35px;
  height: 1px;
  background: var(--sage-light);
}

.contact-heading h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(42px, 4.3vw, 45px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
}

.contact-heading h2 span {
  color: var(--cream);
  font-style: italic;
}

.contact-heading p {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 2;
}

.contact-image {
  position: relative;
  height: 390px;
  overflow: hidden;
  border-radius: 24px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.contact-image:hover img {
  transform: scale(1.04);
}

.contact-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(25, 29, 22, 0.88),
    rgba(25, 29, 22, 0.05) 65%
  );
}

.contact-image-details {
  position: absolute;
  z-index: 2;
  right: 25px;
  left: 25px;
  bottom: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(120, 128, 107, 0.9);
  color: var(--white);
  font-size: 17px;
  backdrop-filter: blur(8px);
}

.contact-detail span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.contact-detail strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.contact-form-wrapper {
  position: relative;
  margin: 0;
  padding: 65px 55px;
  background: var(--sage);
  color: var(--white);
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-form-wrapper::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.contact-form-header {
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-form-header > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
}

.contact-form-header h3 {
  margin: 18px 0 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.55;
}

.contact-form-header h3 em {
  color: var(--cream);
  font-style: italic;
}

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

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 30px;
}

.form-group label {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
}

.form-group label span {
  color: var(--cream);
}

.input-wrapper {
  position: relative;
}

.input-wrapper > i {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  outline: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  transition: var(--transition);
}

.input-wrapper input,
.input-wrapper select {
  height: 68px;
  padding: 0 48px 0 18px;
}

.input-wrapper textarea {
  min-height: 165px;
  padding: 18px 48px 18px 18px;
  resize: none;
}

.input-wrapper textarea + i {
  top: 25px;
  transform: none;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.input-wrapper select {
  appearance: none;
  cursor: pointer;
}

.input-wrapper select option {
  color: var(--text);
  background: var(--white);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.form-message {
  margin-top: 28px;
}

.contact-form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 30px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 15px 20px 15px 25px;
  border: none;
  border-radius: 50px;
  background: var(--primary-dark);
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.contact-submit i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--primary-dark);
  transition: var(--transition);
}

.contact-submit:hover {
  background: var(--cream);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.contact-submit:hover i {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateX(-3px);
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.contact-note i {
  color: var(--cream);
  font-size: 15px;
}

@media (max-width: 1199px) {
  .contact-wrapper {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .contact-info {
    padding: 55px 35px 35px;
  }

  .contact-form-wrapper {
    padding: 55px 40px;
  }

  .contact-heading h2 {
    font-size: 48px;
  }

  .contact-image {
    height: 350px;
  }
}

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 60px 45px 45px;
  }

  .contact-heading h2 {
    max-width: 650px;
    font-size: 52px;
  }

  .contact-image {
    height: 430px;
  }

  .contact-form-wrapper {
    padding: 60px 45px;
  }
}

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

  .contact-info {
    padding: 45px 25px 25px;
  }

  .contact-heading {
    margin-bottom: 35px;
  }

  .contact-heading h2 {
    font-size: 40px;
  }

  .contact-heading p {
    font-size: 13px;
  }

  .contact-image {
    height: 400px;
    border-radius: 18px;
  }

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

  .contact-detail-icon {
    width: 45px;
    height: 45px;
  }

  .contact-form-wrapper {
    padding: 45px 25px;
  }

  .contact-form-header h3 {
    font-size: 40px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-submit {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .contact-heading h2 {
    font-size: 34px;
  }

  .contact-image {
    height: 380px;
  }

  .contact-image-details {
    right: 18px;
    left: 18px;
    bottom: 18px;
  }

  .contact-form-header h3 {
    font-size: 34px;
  }

  .input-wrapper input,
  .input-wrapper select {
    height: 62px;
  }
}
.luxury-footer {
  position: relative;
  overflow: hidden;
  padding: 0 0 25px;
  /* background:         */
  color: var(--white);
  margin: 15px;
  border-radius: 30px;
  z-index: 1;
}

.luxury-footer-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(77, 64, 52, 0.88), rgba(89, 96, 79, 0.94)),
    url("../images/footer.jpg") center / cover no-repeat;
  z-index: -1;
}

.luxury-footer::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  top: -280px;
  right: -180px;
  border: 1px solid rgba(247, 243, 237, 0.1);
  border-radius: 50%;
}

.luxury-footer::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -250px;
  left: -180px;
  border: 1px solid rgba(247, 243, 237, 0.08);
  border-radius: 50%;
}

.luxury-footer .container {
  position: relative;
  z-index: 2;
}

/* CTA */

.footer-cta {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 85px 0 70px;
}

.footer-cta-content {
  max-width: 700px;
}

.footer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--sage-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
}

.footer-eyebrow i {
  font-size: 15px;
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 58px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -2px;
}

.footer-cta h2 span {
  color: var(--cream);
  font-style: italic;
}

.footer-cta p {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 2;
}

.footer-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding: 8px 9px 8px 27px;
  border-radius: 50px;
  background: var(--cream);
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.footer-main-btn i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  transition: var(--transition);
}

.footer-main-btn:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-4px);
}

.footer-main-btn:hover i {
  background: var(--cream);
  color: var(--primary-dark);
  transform: translateX(-4px);
}

/* DIVIDER */

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
}

/* GRID */

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr 1.1fr;
  gap: 65px;
  padding: 70px 0;
}

/* ABOUT */

.footer-about {
  max-width: 320px;
}

.luxury-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
  color: var(--white);
  text-decoration: none;
}

.logo-symbol {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(165, 141, 118, 0.45);
  border-radius: 50%;
  color: var(--primary-light);
  font-size: 22px;
}

.logo-name {
  display: flex;
  flex-direction: column;
}

.logo-name strong {
  font-size: 27px;
  font-weight: 700;
}

.logo-name small {
  margin-top: 6px;
  color: var(--sage-light);
  font-size: 10px;
  letter-spacing: 4px;
}

.footer-about > p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 2;
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.phone-circle {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--white);
  transition: var(--transition);
}

.phone-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phone-text small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.phone-text strong {
  font-size: 13px;
  font-weight: 500;
}

.footer-phone-link:hover .phone-circle {
  background: var(--cream);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* NAV */

.footer-nav h3,
.footer-services h3,
.footer-info h3 {
  margin: 0 0 25px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li {
  margin-bottom: 15px;
}

.footer-nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 18px;
  transition: var(--transition);
  font-weight: 600;
}

.footer-nav a span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  opacity: 0.7;
}

.footer-nav a:hover {
  color: var(--cream);
  transform: translateX(-5px);
}

/* SERVICES */

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.service-tags a {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.service-tags a:hover {
  border-color: var(--primary-light);
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* INFO */

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.info-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(165, 141, 118, 0.16);
  color: var(--primary-light);
  font-size: 12px;
}

.info-item div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-item small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
}

.info-item strong {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.8;
  font-weight: 500;
}


.footer-bottom {
  min-height: 75px;
 display: flex;
 justify-content:space-between ;
  align-items: center;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-copy {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 12px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-top-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 10px;
  transition: var(--transition);
}

.footer-top-link i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-top-link:hover {
  color: var(--white);
}

.footer-top-link:hover i {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}


@media (max-width: 991px) {
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 75px 0 60px;
  }

  .footer-main-btn {
    margin-top: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 55px 40px;
  }

  .footer-about {
    max-width: 100%;
  }
}


@media (max-width: 767px) {
  .footer-cta {
    min-height: auto;
    padding: 70px 0 55px;
  }

  .footer-cta h2 {
    font-size: 48px;
  }

  .footer-cta p {
    font-size: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 55px 0;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 25px 0;
    gap: 22px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-top-link {
    justify-content: flex-start;
  }
}


@media (max-width: 480px) {
  .footer-cta h2 {
    font-size: 40px;
  }

  .footer-cta p {
    font-size: 11px;
  }

  .footer-main-btn {
    font-size: 11px;
  }

  .footer-main-btn i {
    width: 38px;
    height: 38px;
  }

  .footer-copy {
    flex-direction: column;
    gap: 6px;
  }
}

.designed-by {
  display: flex;
  align-items: center;
  gap: 10px;
}

.designed-by span {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.designer-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  padding: 6px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: all 0.3s ease;
}

.designer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
    border-radius: 10px;

}

.designer-logo:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
html[dir="ltr"] { 
  .about-content {
  text-align: left;
}
  .about-content::before {
 
  left: -25px;
} 
.about-stat-card {
  left: -50px;
}

.about-feature:first-child {
    border-right: 1px solid var(--cream-dark);
    border-left: none;
}
.services-grid::before, .contact-section::before {
    left: 1000px;
}
.why-feature:nth-child(odd) {
    border-right: 1px solid rgba(77, 64, 52, 0.13);
    border-left: 0;
}
.why-feature {
    
    padding: 22px 0px 22px 15px;
}
.footer-nav a:hover {
  transform: translateX(5px);
}
@media screen and (max-width:767px) {
  .about-stat-card {
  left: 20px;
}
}
body i.fa-arrow-right{
  display: flex;
}
body i.fa-arrow-left{
  display: none ;
}
}
body i.fa-arrow-right{
  display: none ;
}
body i.fa-arrow-left{
  display: flex ;
}
.language-switcher {
    display: flex;
    align-items: center;
}

.language-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 105px;
    height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.language-btn i {
    font-size: 15px;
    transition: transform 0.35s ease;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.language-btn:hover i {
    transform: rotate(20deg);
}

.language-btn:active {
    transform: translateY(0);
}

.language-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.main-header.scrolled .language-btn {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.main-header.scrolled .language-btn:hover {
    background: rgba(255, 255, 255, 0.13);
}
@media (max-width: 991.98px) {

    .language-switcher {
        width: auto;
    }

    .language-btn {
        min-width: 100px;
        height: 40px;
        padding: 0 14px;
        font-size: 13px;
    }

}

.mobile-lang {
    display: none;
}

@media (max-width: 991.98px) {

    .mobile-lang {
        display: flex;
        align-items: center;
        justify-content: center;

        margin-inline-start: auto;
        margin-inline-end: 15px;
    }

    .mobile-lang .lang-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;

        background: transparent;
        border: none;

        color: var(--primary-color);

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

        padding: 6px 8px;

        cursor: pointer;
    }

    .mobile-lang .lang-btn i {
        font-size: 16px;
    }

    .navbar-toggler {
        margin-inline-start: 0;
    }

    .nav-actions .language-switcher {
        display: none;
    }
}
