/* <═══════════ GLOBAL RESET ═══════════> */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --salmon: #f4a99a;
  --salmon-light: #fdf0ed;
  --salmon-mid: #f7c4ba;
  --salmon-dark: #c46f5e;
  --salmon-deep: #8b3d30;
  --dark: #1e1e1e;
  --dark-mid: #252525;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.55);
  --white-faint: rgba(255, 255, 255, 0.15);
  --accent: #f4a99a;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* <═══════════ HEADER & NAV DESKTOP ═══════════> */
.nav-header-links {
  width: 100%;
  min-height: 90px;
  background: var(--salmon-light);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0px 20px;
  font-family: "Montserrat", sans-serif;
}

.logo {
  height: 150px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#check {
  display: none;
}

.CheckBtn {
  display: none;
  cursor: pointer;
  font-size: 30px;
  color: var(--salmon-dark);
}

/* NAV LINKS */
.list {
  display: flex;
  align-items: center;
  list-style: none;
}

.list li {
  margin: 0 20px;
  padding: 5px;
  transition: transform 0.3s ease;
}

.list li:hover {
  transform: translateY(-5px);
}

.list li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--salmon-dark);
  transition: color 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1.5px;
  font-weight: bold;
  text-transform: uppercase;
}

.list li a:hover {
  color: var(--salmon-deep);
  border-bottom: 1px solid #795f42;
}

/* <═══════════ HOME SECTION ═══════════> */
#h-container {
  width: 100%;
  min-height: 80vh;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.1) 55%),
    url('../Imgs/home-img.webp') center center / cover no-repeat;
  padding: 20px 8%;
}

.h-content {
  margin-top: 10%;
  max-width: 620px;
  color: mintcream;
  font-family: 'Cormorant Garamond', serif;
}

.h-content h1 {
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--salmon);
}

.h-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}

.h-content p {
  margin-bottom: 35px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

/* <═══════════ ABOUT US SECTION ═══════════> */

#about-section {
  padding: 70px 5% 80px;
  background: var(--salmon-light);
  position: relative;
  overflow: hidden;
  font-family: 'Jost', 'Montserrat', sans-serif;
}

/* Decorative background blobs */
#about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 169, 154, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#about-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 196, 186, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── EYEBROW ── */
.abt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.abt-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--salmon-dark);
}

.abt-eyebrow p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--salmon-dark);
  margin: 0;
}

/* ── SECTION HEADING ── */
.abt-heading {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#about-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  line-height: 1.15;
}

#about-section h1 em {
  font-style: italic;
  color: var(--salmon-dark);
}

.abt-heading-line {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 220px;
}

.abt-heading-line div {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--salmon-mid), transparent);
}

.abt-heading-line span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--salmon);
  flex-shrink: 0;
}

/* ── CONTAINER ── */
.about-container {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(196, 111, 94, 0.15), 0 4px 16px rgba(0, 0, 0, 0.07);
}

/* ── IMAGE SIDE ── */
.about-image {
  flex: 1.1;
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-container:hover .about-image img {
  transform: scale(1.04);
}

/* Floating badge on image */
.abt-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.abt-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--salmon-light);
  border: 1.5px solid var(--salmon-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.abt-badge-text a {
  text-decoration: none;
  cursor: pointer;
}

.abt-badge-text p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}

.abt-badge-text span {
  font-size: 10px;
  font-weight: 400;
  color: #9a7060;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── CONTENT SIDE ── */
.about-content {
  flex: 1;
  background: var(--white);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Corner accent */
.about-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--salmon-light);
  border-radius: 0 0 0 80px;
  pointer-events: none;
}

.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.about-content h2 em {
  font-style: italic;
  color: var(--salmon-dark);
}

.abt-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: #6b5148;
  line-height: 1.85;
  margin: 0 0 20px;
  letter-spacing: 0.3px;
  font-family: 'Jost', 'Montserrat', sans-serif;
  position: relative;
  z-index: 1;
}

/* Quote block */
.abt-quote {
  display: flex;
  align-items: flex-start;
  background: var(--salmon-light);
  border-left: 3px solid var(--salmon);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.abt-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--salmon-deep);
  margin: 0;
  line-height: 1.6;
}

/* Stats row */
.abt-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.abt-stat {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  background: var(--salmon-light);
  border: 1px solid rgba(244, 169, 154, 0.3);
  border-radius: 12px;
}

.abt-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--salmon-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.abt-stat span {
  font-size: 10px;
  font-weight: 400;
  color: #9a7060;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* <═══════════ OUR SERVICE SECTION ═══════════> */

#services-section {
  padding: 70px 6% 60px;
  background: #faf6f4;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#services-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 169, 154, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.section-title em {
  font-style: italic;
  color: var(--salmon-dark);
}

.section-para {
  font-family: 'Jost', 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #9a7060;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* Grid Layout */
.services-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Card */
.service-card {
  background: var(--white);
  border: 1px solid rgba(244, 169, 154, 0.25);
  border-radius: 16px;
  padding: 28px 16px 24px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--salmon-mid), var(--salmon));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
  border-radius: 0 0 16px 16px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(244, 169, 154, 0.22), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: var(--salmon-mid);
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* Circle Image */
.service-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--salmon-light);
  border: 2px solid var(--salmon-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card:hover .service-img {
  border-color: var(--salmon);
  box-shadow: 0 0 0 4px rgba(244, 169, 154, 0.18);
}

/* Title */
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #444;
  margin-bottom: 15px;
}

.service-card p {
  color: #000;

  font-family: 'Jost', 'Montserrat', sans-serif;
  font-size: 15.5px;
  color: #7a6058;
  line-height: 1.65;
  margin: 0;
}

/* ── DIVIDER ── */
.svc-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 50px auto 22px;
  max-width: 500px;
}

.svc-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--salmon-mid), transparent);
}

.svc-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--salmon);
  flex-shrink: 0;
}

.section-footer {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: var(--salmon-dark);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* <!═══════════ F A Q SECTION ═══════════>  */

/* ── SECTION ── */
#faq {
  background: var(--salmon-light);
  padding: 70px 5% 80px;
  font-family: 'Jost', 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
#faq::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 169, 154, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#faq::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 196, 186, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── CONTAINER ── */
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

/* ── EYEBROW ── */
.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.faq-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--salmon-dark);
}

.faq-eyebrow p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--salmon-dark);
  margin: 0;
}

/* ── HEADER ── */
.faq-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.main-title-faq {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  line-height: 1.15;
}

.main-title-faq em {
  font-style: italic;
  color: var(--salmon-dark);
}

/* Decorative divider under title */
.faq-title-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 220px;
  margin: 8px auto 12px;
}

.faq-title-divider div {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--salmon-mid), transparent);
}

.faq-title-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--salmon);
  flex-shrink: 0;
}

.subtitle-faq {
  font-size: 14px;
  font-weight: 300;
  color: #9a7060;
  letter-spacing: 0.04em;
}

/* ── TWO-COLUMN LAYOUT ── */
.content-wrapper {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* ── FAQ LIST (LEFT) ── */
.faq-list {
  flex: 2;
  min-width: 0;
}

/* ── FAQ ITEM ── */
.faq-item {
  background: var(--white);
  border: 1px solid rgba(244, 169, 154, 0.22);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: var(--salmon-mid);
  box-shadow: 0 6px 24px rgba(244, 169, 154, 0.15);
}

.faq-item.active {
  border-color: var(--salmon);
  box-shadow: 0 8px 28px rgba(244, 169, 154, 0.22);
}

/* ── FAQ QUESTION ── */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 500;
  color: var(--dark);
  font-size: 0.95rem;
  font-family: 'Jost', 'Montserrat', sans-serif;
  letter-spacing: 0.01em;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question {
  background: var(--salmon-light);
  color: var(--salmon-deep);
}

.faq-question span {
  flex: 1;
  padding-right: 16px;
}

/* ── TOGGLE ICON ── */
.toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--salmon-light);
  border: 1.5px solid var(--salmon-mid);
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
}

.faq-item.active .toggle-icon {
  background: var(--salmon);
  border-color: var(--salmon);
  transform: rotate(45deg);
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--salmon-dark);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s ease;
}

.faq-item.active .toggle-icon::before,
.faq-item.active .toggle-icon::after {
  background: var(--white);
}

.toggle-icon::before {
  width: 2px;
  height: 12px;
}

.toggle-icon::after {
  width: 12px;
  height: 2px;
}

/* ── FAQ ANSWER ── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  background: var(--salmon-light);
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 22px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #7a5c52;
  border-top: 1px solid var(--salmon-mid);
  padding-top: 14px;
  line-height: 1.75;
  font-family: 'Jost', 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
}

/* ── CONTACT CARD (RIGHT) ── */
.contact-card {
  flex: 1;
  background: var(--white);
  border: 1px solid rgba(244, 169, 154, 0.25);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(196, 111, 94, 0.12), 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.contact-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.contact-card-body {
  padding: 24px 28px 32px;
}

.contact-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-card h2 em {
  font-style: italic;
  color: var(--salmon-dark);
}

.contact-card p {
  font-size: 13px;
  font-weight: 300;
  color: #9a7060;
  line-height: 1.7;
  margin-bottom: 18px;
  font-family: 'Jost', 'Montserrat', sans-serif;
}

/* Divider inside card */
.contact-card-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-card-divider div {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--salmon-mid), transparent);
}

.contact-card-divider span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--salmon);
  flex-shrink: 0;
}

/* <═══════════ WHY CHOOSE US SECTION ═══════════> */

.why-section {
  background: #faf6f4;
  padding: 70px 8% 80px;
  font-family: 'Jost', 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 169, 154, 0.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 196, 186, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── EYEBROW ── */
.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.why-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--salmon-dark);
}

.why-eyebrow p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--salmon-dark);
  margin: 0;
}

/* ── TITLE ── */
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}

.why-title em {
  font-style: italic;
  color: var(--salmon-dark);
}

/* ── DIVIDER ── */
.why-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 220px;
  margin: 14px 0 52px;
}

.why-divider div {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--salmon-mid), transparent);
}

.why-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--salmon);
  flex-shrink: 0;
}

/* ── GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── CARD ── */
.why-card {
  background: var(--white);
  border: 1px solid rgba(244, 169, 154, 0.22);
  border-radius: 16px;
  padding: 28px 24px 26px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Bottom accent bar */
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--salmon-mid), var(--salmon));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
  border-radius: 0 0 16px 16px;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(244, 169, 154, 0.2), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: var(--salmon-mid);
}

.why-card:hover::after {
  transform: scaleX(1);
}

/* Ghost number */
.why-card-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(244, 169, 154, 0.18);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── ICON WRAP ── */
.why-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--salmon-light);
  border: 1.5px solid var(--salmon-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.why-card:hover .why-icon-wrap {
  background: var(--salmon-mid);
  border-color: var(--salmon);
}

.why-icon-wrap i {
  font-size: 22px;
  color: var(--salmon-dark);
  transition: color 0.3s ease, transform 0.35s ease;
}

.why-card:hover .why-icon-wrap i {
  color: var(--salmon-deep);
  transform: scale(1.15) rotate(6deg);
}

/* ── CARD TEXT ── */
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.why-card p {
  font-size: 13px;
  font-weight: 300;
  color: #7a5c52;
  line-height: 1.75;
  margin: 0;
}

/* <═══════════ TESTIMONIAL SECTION ═══════════> */

.testi-section {
  background: var(--salmon-light);
  padding: 70px 5% 80px;
  font-family: 'Jost', 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.testi-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 169, 154, 0.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.testi-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 196, 186, 0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── CONTAINER ── */
.testi-container {
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}


/* LEFT COLUMN */
.testi-left {
  flex: 1;
}

/* Eyebrow */
.testi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testi-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--salmon-dark);
}

.testi-eyebrow p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--salmon-dark);
  margin: 0;
}

/* Heading */
.testi-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 10px;
}

.testi-left h2 em {
  font-style: italic;
  color: var(--salmon-dark);
}

/* Divider */
.testi-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 200px;
  margin: 10px 0 18px;
}

.testi-divider div {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--salmon-mid), transparent);
}

.testi-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--salmon);
  flex-shrink: 0;
}

/* Description */
.testi-left>p {
  font-size: 14px;
  font-weight: 300;
  color: #9a7060;
  line-height: 1.75;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

/* Image wrapper */
.testi-img-wrap {
  position: relative;
  display: inline-block;
}

.testi-img-wrap img {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(196, 111, 94, 0.15);
  transition: transform 0.4s ease;
}

.testi-img-wrap:hover img {
  transform: translateY(-6px);
}


/* RIGHT COLUMN (SWIPER) */
.testi-right {
  flex: 1;
  height: 420px;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

/* Top & bottom fade masks */
.testi-right::before,
.testi-right::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

.testi-right::before {
  top: 0;
  background: linear-gradient(to bottom, #faf6f4, transparent);
}

.testi-right::after {
  bottom: 0;
  background: linear-gradient(to top, #faf6f4, transparent);
}

/* Swiper wrapper */
.testimonialSwiper {
  height: 100%;
  padding: 10px 4px;
}

/* Swiper scrollbar */
.swiper-scrollbar {
  background: rgba(244, 169, 154, 0.2);
  border-radius: 4px;
}

.swiper-scrollbar-drag {
  background: var(--salmon);
  border-radius: 4px;
}

/* ── SLIDE STATES ── */
.swiper-slide {
  opacity: 0.3;
  transform: scale(0.87);
  transition: all 0.4s ease;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.swiper-slide-prev,
.swiper-slide-next {
  opacity: 0.6;
  transform: scale(0.93);
}

/* ── TESTIMONIAL CARD ── */
.testimonial-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(244, 169, 154, 0.22);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Top accent bar — slides in when active */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--salmon-mid), var(--salmon));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.swiper-slide-active .testimonial-card {
  border-color: var(--salmon-mid);
  box-shadow: 0 10px 32px rgba(244, 169, 154, 0.22);
}

.swiper-slide-active .testimonial-card::before {
  transform: scaleX(1);
}

.swiper-slide-active .testimonial-card:hover {
  transform: scale(1.02);
}

/* ── AVATAR ── */
.testi-avatar {
  position: relative;
  flex-shrink: 0;
}

.testi-avatar img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--salmon-mid);
  display: block;
}

/* Outer glow ring on avatar */
.testi-avatar-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(244, 169, 154, 0.4);
}

/* ── CARD BODY ── */
.testi-card-body {
  flex: 1;
}

.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.testimonial-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.testi-card-stars {
  color: var(--salmon);
  font-size: 11px;
  letter-spacing: 1px;
}

.testimonial-card p {
  font-size: 12.5px;
  font-weight: 300;
  color: #7a5c52;
  line-height: 1.7;
  margin: 0;
}

/* Big decorative opening quote */
.testi-quote-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: rgba(244, 169, 154, 0.3);
  line-height: 0.8;
  float: left;
  margin-right: 4px;
  margin-top: 4px;
}

/* <═══════════ C T A SECTION ═══════════> */
.cta-section {
  background-color: var(--salmon);
  position: relative;
  overflow: hidden;
  padding: 80px 40px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 340px;
}

/* Monstera leaf — left */
.leaf-left,
.leaf-right {
  position: absolute;
  pointer-events: none;
}

.leaf-left {
  top: -10px;
  left: -20px;
  width: 200px;
  opacity: 0.85;
}

.leaf-right {
  bottom: -20px;
  right: -10px;
  width: 240px;
  opacity: 0.85;
}

.cta-section svg.monstera path {
  fill: none;
  stroke: #1a1a1a;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.35;
  max-width: 640px;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.cta-note {
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

/* <═══════════ FOOTER SECTION ═══════════> */
footer {
  background-color: var(--dark);
  padding: 60px 40px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  text-decoration: none;
}

/* Primary nav */
.footer-nav-primary {
  display: flex;
  gap: clamp(20px, 4vw, 52px);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-nav-primary a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-primary a:hover {
  color: var(--accent);
}

/* Divider */
.footer-divider {
  width: 100%;
  max-width: 700px;
  height: 1px;
  background: var(--white-faint);
  margin: 4px 0 24px;
}

/* Secondary nav */
.footer-nav-secondary {
  display: flex;
  gap: clamp(12px, 2.5vw, 32px);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.footer-nav-secondary a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-secondary a:hover {
  color: var(--white);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, transform 0.22s;
  cursor: pointer;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.social-btn i {
  font-size: 20px;
  color: white;
}

/* Legal row */
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--white-dim);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--white);
}

.footer-copyright {
  font-size: 0.80rem;
  font-weight: 300;
  color: var(--white-dim);
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 0px;
}

/* <═══════════ UNIVERSAL CLASS ═══════════> */
/* Button-5 */
.button-5 {
  display: inline-block;
  background: var(--salmon);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--accent);
  padding: 16px 36px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  text-align: center;
}

.button-5:hover {
  background: var(--white);
  color: #1a1a1a;
  border-color: var(--accent);
}

/* Button-6 */
.button-6 {
  display: inline-block;
  padding: 13px 34px;
  position: relative;
  text-align: center;
  z-index: 1;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
  border: 2px solid #1a1a1a;
}

.button-6:hover {
  background: transparent;
  color: #1a1a1a;
}

.button-6:active {
  transform: translateY(0);
}

/* <═══════════ SCROLL ON TOP IS HERE ═══════════> */
#scroll-on-top {
  background-color: var(--salmon-dark);
  color: var(--salmon-light);
  padding: 9px;
  border-radius: 9px;
  width: 35px;
  height: 35px;
  position: fixed;
  bottom: 6.5rem;
  right: 1.9rem;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2001;
  cursor: pointer;
  touch-action: manipulation;
}

#scroll-on-top span i {
  transition: transform 0.3s ease;
}

#scroll-on-top span i:hover {
  transform: scale(1.2);
  color: var(--salmon-deep);
}

/* <═══════════ WHATSAPP BUTTON IS HERE ═══════════> */
.whatsapp-sticky {
  position: fixed;
  bottom: 38px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  transition: transform 0.3s ease;
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
  opacity: 0;
  transform: translateY(50px);
}

.whatsapp-sticky.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-sticky:hover {
  animation: none;
  transform: scale(1.1);
  background-color: #128c7e;
}

/* Icon size within the button */
.whatsapp-sticky img {
  width: 35px;
  height: 35px;
}

/* Hover Effect */
.whatsapp-sticky:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* 1. The Notification Badge (Red Circle) */
.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff3b30;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.tooltip-text {
  position: absolute;
  right: 75px;
  background-color: #333;
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
}