:root {
  --main-color: #b8905a;
  --main-color-dim: rgba(207, 163, 100, 0.5);
  --main-color-light: #e8c992;
  --secondary-color: black;
  --bg-dark: #110d0a;
  --text: #5c5348;
  --bg-light: #faf6f0;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.85);
}

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

body {
  background: var(--bg-light);
  font-family: 'Cairo', sans-serif;
  min-height: 100vh;
  color: var(--text);
}

html {
  scroll-behavior: smooth;
}

header {
  display: block;
  background: var(--white);
  position: relative;
  overflow: hidden;
}


.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  height: 80px;
  display: flex;
  align-items: center;
}

.logo-mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links li a {
  font-family: 'Cairo', sans-serif;
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--main-color);
  text-decoration: none;
  padding: 6px 16px;
  position: relative;
  transition: color 0.35s;
  white-space: nowrap;
  display: block;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 16px;
  left: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links li a:hover {
  color: var(--secondary-color);
}

.nav-links li a:hover::before {
  transform: scaleX(1);
}

/* Mobile Header */
.mobile-header {
  display: none;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}

.mobile-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 0% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.mobile-inner {
  height: 90px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mobile-logo-mark {
  height: 65px;
  display: flex;
  align-items: center;
}

.mobile-logo-mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.menu-btn {
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 101;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--main-color);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left center;
}

.menu-btn span:nth-child(1) {
  width: 28px;
}

.menu-btn span:nth-child(2) {
  width: 20px;
  background: var(--secondary-color);
}

.menu-btn span:nth-child(3) {
  width: 24px;
}

.menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) scaleX(1.1);
  width: 24px;
  transform-origin: center;
  background: var(--secondary-color);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) scaleX(1.1);
  width: 24px;
  transform-origin: center;
  background: var(--secondary-color);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 2, 4, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  height: 100dvh;
  background: var(--secondary-color);
  z-index: 100;
  transform: translateX(110%);
  transition: transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  direction: rtl;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}

.sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
      var(--main-color) 0%,
      rgba(184, 137, 58, 0.3) 60%,
      transparent 100%);
}

.sidebar.show {
  transform: translateX(0);
}

.sidebar-head {
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 100%);
}

.sidebar-close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 137, 58, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.4s;
}

.sidebar-close svg {
  width: 16px;
  height: 16px;
}

.sidebar-close:hover {
  background: rgba(184, 137, 58, 0.15);
  border-color: var(--main-color);
  color: var(--main-color);
  transform: rotate(90deg);
}

.sidebar-emblem {
  height: 68px;
  width: 140px;
}

.sidebar-head-divider {
  width: 100%;
  height: 1px;
  margin-top: 20px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(184, 137, 58, 0.5) 30%,
      rgba(232, 201, 146, 0.6) 50%,
      rgba(184, 137, 58, 0.5) 70%,
      transparent 100%);
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0 8px;
  scrollbar-width: none;
}

.sidebar-nav::-webkit-scrollbar {
  display: none;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 26px;
  text-decoration: none;
  position: relative;
  transition: background 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sidebar-link.active,
.sidebar-link:hover {
  background: rgba(184, 137, 58, 0.1);
}

.sidebar-link.active::before {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: var(--main-color);
  border-radius: 4px 0 0 4px;
}

.s-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(184, 137, 58, 0.1);
  border: 1px solid rgba(184, 137, 58, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--main-color);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}

.s-icon svg {
  width: 18px;
  height: 18px;
}

.sidebar-link:hover .s-icon,
.sidebar-link.active .s-icon {
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--secondary-color);
  transform: scale(1.08);
}

.s-text {
  flex: 1;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  transition: color 0.25s, transform 0.25s;
}

.sidebar-link:hover .s-text,
.sidebar-link.active .s-text {
  color: var(--main-color-light);
  transform: translateX(-3px);
}

.s-arrow {
  width: 20px;
  height: 20px;
  color: rgba(184, 137, 58, 0.3);
  flex-shrink: 0;
  transition: color 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-arrow svg {
  width: 14px;
  height: 14px;
}

.sidebar-link:hover .s-arrow,
.sidebar-link.active .s-arrow {
  color: var(--main-color);
  transform: translateX(-4px);
}

.sidebar-foot {
  padding: 18px 24px 28px;
  flex-shrink: 0;
}

.sidebar-foot-divider {
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(184, 137, 58, 0.35) 40%,
      rgba(184, 137, 58, 0.35) 60%,
      transparent 100%);
}

.sidebar-foot-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-bottom: 14px;
  text-align: center;
}

.sidebar-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.sidebar-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.sidebar-social-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.sidebar-social-btn:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--secondary-color);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 18px rgba(184, 137, 58, 0.4);
}



@media (max-width: 860px) {
  header {
    display: none;
  }

  .mobile-header {
    display: block;
  }
}

/* ━━ Page Hero Section ━━ */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  text-align: center;
  width: 100%;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Cairo', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.page-hero__eyebrow::before,
.page-hero__eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--main-color);
}

.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--main-color);
}

.page-hero__desc {
  font-family: 'Cairo', sans-serif;
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text);
}

/* Section Title */
.features-section__header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-section__title {
  font-family: 'Cairo', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 0.5rem;
}

.features-section__subtitle {
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  color: #666;
  text-align: center;
  margin-bottom: 1rem;
}

.features-section__lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.features-section__lines .line-big {
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.features-section__lines .line-medium {
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.features-section__lines .line-small {
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* Pre-Footer Contact */
.pre-footer-contact-alive {
  padding: 80px 0;
  background: radial-gradient(circle at 10% 20%, rgba(184, 137, 58, 0.05) 0%, transparent 80%), var(--bg-light);
  border-top: 1px solid rgba(184, 137, 58, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-wrap-dynamic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-btn-dynamic {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-sphere {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--main-color);
  box-shadow: 0 10px 25px rgba(184, 137, 58, 0.12);
  position: relative;
  transition: all 0.4s ease;
}

.pulse-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #25d366;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: mini-pulse 2s infinite;
}

@keyframes mini-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.contact-btn-dynamic:hover .icon-sphere {
  transform: scale(1.1) rotate(5deg);
  background: var(--main-color);
  color: #fff;
}

.text-group {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 12px;
}

.label-anim {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.val-anim {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary-color);
  font-family: 'Cairo', sans-serif;
  transition: color 0.3s ease;
}

.contact-btn-dynamic:hover .val-anim {
  color: var(--main-color);
}

.contact-sep {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(184, 137, 58, 0.3), transparent);
}

@media (max-width: 860px) {
  .pre-footer-contact-alive {
    padding: 40px 0;
  }

  .contact-wrap-dynamic {
    flex-direction: column;
    gap: 25px;
  }

  .contact-sep {
    display: none;
  }

  .text-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .icon-sphere {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .val-anim {
    font-size: 16px;
  }

  .label-anim {
    font-size: 11px;
  }

  .contact-btn-dynamic {
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
}

.site-footer {
  background: #ffffff;
  color: var(--secondary-color);
  font-family: 'Cairo', sans-serif;
  position: relative;
  overflow: hidden;
}

a {
  text-decoration: none;
}

.footer-top-rule {
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--main-color) 30%,
      var(--main-color-light) 50%,
      var(--main-color) 70%,
      transparent 100%);
  opacity: 0.7;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

.footer-body {
  padding: 72px 0 56px;
}

.footer-body .footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.8;
  color: var(--main-color);
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-light);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-btn svg {
  width: 17px;
  height: 17px;
}

.social-btn:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(184, 137, 58, 0.35);
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--main-color);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.heading-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 137, 58, 0.4), transparent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  font-weight: 800;
  color: #2f2f2fb4;
  text-decoration: none;
  transition: color 0.25s, gap 0.25s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links li a:hover {
  color: var(--main-color);
  gap: 14px;
}

.link-arrow {
  font-size: 20px;
  color: var(--main-color);
  opacity: 0.7;
  transition: opacity 0.25s;
}

.footer-links li a:hover .link-arrow {
  opacity: 1;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #2f2f2fb4;
  line-height: 1.5;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--main-color);
  margin-top: -2px;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact li a {
  color: #2f2f2fb4;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-contact li a:hover {
  color: var(--main-color);
}


.footer-branches {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-branch-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(184, 137, 58, 0.1);
  background: var(--main-color);
  transition: background 0.25s, border-color 0.25s;
  cursor: default;
}

.footer-branch-item:hover {
  color: var(--secondary-color);
}

.footer-branch-item:hover .branch-name {
  color: var(--secondary-color);
}

.branch-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  transition: .3s ease-in-out all;
}

.branch-address {
  display: block;
  font-size: 12px;
  color: #fff;
  margin-top: 2px;
}

.footer-all-branches {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--main-color);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.25s, color 0.25s;
}

.footer-all-branches svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}

.footer-all-branches:hover {
  color: var(--secondary-color);
  gap: 12px;
}

.footer-all-branches:hover svg {
  transform: translateX(-3px);
}



.footer-divider {
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(184, 137, 58, 0.25) 20%,
      rgba(184, 137, 58, 0.25) 80%,
      transparent 100%);
  margin: 0 48px;
}

.footer-bottom {
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-copy {
  font-size: 13px;
  color: var(--main-color);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-bottom-links a:hover {
  color: var(--main-color);
}

.bottom-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .footer-body .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-container {
    padding: 0 24px;
  }

  .footer-body .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-body {
    padding: 48px 0 36px;
  }

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

  .footer-divider {
    margin: 0 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header--left {
  text-align: right;
}

.section-header__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-header--left .section-header__ornament {
  justify-content: flex-start;
}

.section-header__ornament::before,
.section-header__ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--main-color), transparent);
}

.section-header__ornament-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184, 137, 58, 0.15), rgba(184, 137, 58, 0.05));
  border: 1px solid rgba(184, 137, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  font-size: 1.25rem;
}

.section-header__eyebrow {
  font-family: 'Cairo', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--main-color);
  display: block;
  margin-bottom: 1rem;
}

.section-header__title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--bg-dark);
  line-height: 1.3;
  margin: 0 0 1.25rem;
  position: relative;
}

.section-header__title--light {
  color: var(--white);
}

.section-header__title span {
  color: var(--main-color);
  position: relative;
}

.section-header__description {
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.section-header--left .section-header__description {
  margin: 0;
}

.section-header__description--light {
  color: rgba(255, 255, 255, 0.75);
}

.section-header--minimal {
  position: relative;
  padding-top: 2rem;
}

.section-header--minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--main-color), var(--main-color-light), var(--main-color));
  border-radius: 2px;
}

.section-header--minimal.section-header--left::before {
  left: 0;
  transform: none;
}

   /* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  min-height: 550px;
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  padding: 0 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content-inner {
  max-width: 800px;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title {
  font-family: 'Cairo', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--main-color);
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 800;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(184, 137, 58, 0.3);
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-hero-primary:hover {
  background: var(--main-color-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(184, 137, 58, 0.4);
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-arrow {
  transition: transform 0.3s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-hero-secondary:hover .btn-arrow {
  transform: translateX(-5px);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 860px) {
  .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    height: 100vh;
  }

  .hero-title {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
  }
}

.contact-panel {
  margin: 60px auto;
  max-width: 1100px;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(26, 21, 16, 0.10);
  border-radius: 24px;
  padding: 3rem 2rem;
  border: 1px solid rgba(184, 137, 58, 0.2);
  text-align: center;
  position: relative;
  z-index: 10;
}

.contact-panel__header {
  margin-bottom: 2.5rem;
}

.contact-panel__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184, 137, 58, 0.2), rgba(184, 137, 58, 0.05));
  border: 1px solid rgba(184, 137, 58, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(184, 137, 58, 0.1);
}

.contact-panel__title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--secondary-color);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.contact-panel__title span {
  color: var(--main-color);
}

.contact-panel__subtitle {
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

.contact-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.contact-action-btn {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 16px;
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(184, 137, 58, 0.2);
  background: #ffffff;
  color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-action-btn i {
  font-size: 1.6rem;
}

.contact-action-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(184, 137, 58, 0.15);
  border-color: var(--main-color);
}

.contact-action-btn--call {
  background: linear-gradient(135deg, rgba(184, 137, 58, 0.05), #ffffff);
}

.contact-action-btn--whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), #ffffff);
}

.contact-action-btn--whatsapp:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

@media (max-width: 768px) {
  .contact-panel {
    margin: 40px 20px;
    padding: 2.5rem 1.5rem;
  }

  .contact-action-btn {
    min-width: 100%;
    padding: 1rem;
  }
}

.unit-equipment {
  padding: 120px 0;
  background: #ffffff;
}

.equipment-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.equipment-content {
  order: 1;
}

.section-header-premium--right {
  text-align: right;
  align-items: flex-start !important;
}

.branch-info__underline--right {
  margin-right: 0 !important;
  margin-left: auto;
}

.kitchen-box {
  margin-top: 40px;
  background: #fbfaf8;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(184, 137, 58, 0.1);
}

.kitchen-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  color: var(--main-color);
}

.kitchen-header i {
  font-size: 2.2rem;
}

.kitchen-title {
  font-family: 'Cairo', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  color: var(--secondary-color);
}

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

.kitchen-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  font-family: 'Cairo', sans-serif;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

.kitchen-list li .dot {
  width: 10px;
  height: 10px;
  background: var(--main-color);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.equipment-visuals {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.image-large-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

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

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

.image-overlay-premium {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.image-small-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.image-small-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 160px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

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

.image-small-box:hover img {
  transform: scale(1.1);
}

@media (max-width: 1100px) {
  .equipment-row {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .unit-equipment {
    padding: 80px 0;
  }

  .equipment-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .equipment-content {
    order: 1;
  }

  .equipment-visuals {
    order: 2;
  }

  .section-header-premium--right {
    text-align: center;
    align-items: center !important;
  }

  .branch-info__underline--right {
    margin: 0 auto 1.5rem !important;
  }

  .kitchen-header {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .image-large-box {
    height: 300px;
  }

  .image-small-grid {
    gap: 12px;
  }

  .image-small-box {
    height: 100px;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .contact-panel {
    margin: 40px 20px;
    padding: 2.5rem 1.5rem;
  }

  .contact-action-btn {
    min-width: 100%;
    padding: 1rem;
  }
}


.section-header-premium {
  margin-bottom: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.branch-info__eyebrow {
  font-family: 'Cairo', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--main-color);
  display: block;
  margin-bottom: 1rem;
}

.branch-info__title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.branch-info__underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--main-color), transparent);
  margin-bottom: 1.5rem;
}

.hero-section {
  opacity: 1 !important;
  visibility: visible !important;
}

.branches-section-premium {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Branches Grid */
.branches-grid-lux {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.branch-item-lux {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  background: #f8f8f8;
}

.branch-link-lux {
  display: block;
  height: 100%;
  width: 100%;
}

.branch-img-box {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.branch-img-lux {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.branch-item-lux:hover .branch-img-lux {
  transform: scale(1.1);
}

.branch-overlay-lux {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      transparent 80%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.branch-info-lux {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 25px;
  z-index: 2;
  transition: transform 0.4s ease;
}

.branch-meta {
  margin-bottom: 8px;
  opacity: 0.8;
}

.branch-count {
  color: var(--main-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.branch-name-lux {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: 'Cairo', sans-serif;
}

.branch-loc-lux {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.branch-btn-lux {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(184, 137, 58, 0.8);
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.branch-item-lux:hover .branch-btn-lux {
  background: #fff;
  color: var(--secondary-color);
  transform: translateX(-5px);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.faq-section .section-header-premium {
  margin-bottom: 3rem;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion-item:hover {
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.faq-accordion-item.active {
  border-color: var(--main-color);
  box-shadow: 0 15px 50px rgba(201, 169, 98, 0.1);
}

.faq-accordion-header {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  text-align: right;
  direction: rtl;
}

.faq-accordion-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(201, 169, 98, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.faq-accordion-item.active .faq-accordion-icon {
  background: var(--main-color);
  color: var(--secondary-color);
}

.faq-accordion-title {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.faq-accordion-item.active .faq-accordion-title {
  color: var(--main-color);
}

.faq-accordion-arrow {
  font-size: 1.5rem;
  color: var(--text);
  transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-arrow {
  transform: rotate(180deg);
  color: var(--main-color);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-accordion-item.active .faq-accordion-body {
  max-height: 300px;
}

.faq-accordion-content {
  padding: 0 2rem 1.5rem;
  padding-right: calc(45px + 3rem);
}

.faq-accordion-content p {
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.faq-accordion-content p:last-child {
  margin-bottom: 0;
}

.faq-accordion-content strong {
  color: var(--main-color);
}

.faq-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(201, 169, 98, 0.08);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

.faq-note i {
  color: var(--main-color);
  font-size: 1rem;
}

.faq-link {
  color: var(--main-color);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

.faq-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.faq-cta {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2018 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.faq-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
  animation: faq-glow 3s ease-in-out infinite;
}

@keyframes faq-glow {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-10%, -10%);
  }
}

.faq-cta-text {
  font-family: 'Cairo', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--main-color);
  color: var(--secondary-color);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-cta-btn:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-cta-btn i {
  font-size: 1.2rem;
}

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

  .faq-accordion-header {
    padding: 1.25rem 1.5rem;
  }

  .faq-accordion-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .faq-accordion-title {
    font-size: 0.95rem;
  }

  .faq-accordion-content {
    padding: 0 1.5rem 1.25rem;
    padding-right: calc(40px + 2.5rem);
  }

  .faq-cta {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .faq-cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 1100px) {
  .branches-grid-lux {
    grid-template-columns: repeat(2, 1fr);
  }

  .branch-item-lux {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .branches-section-premium {
    padding: 60px 0;
  }

@media (max-width: 768px) {
    .branches-grid-lux {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
    }
}

  .branch-info-lux {
    padding: 15px;
  }

  .branch-name-lux {
    font-size: 18px;
  }

  .branch-loc-lux {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .branch-btn-lux {
    padding: 6px 12px;
    font-size: 11px;
  }

}

.why-calm-section {
  background: var(--bg-light);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
  direction: rtl;
}



.why-calm__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-calm__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.why-calm__eyebrow {
  font-family: 'Cairo', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--main-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.why-calm__eyebrow::before,
.why-calm__eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--main-color));
}

.why-calm__eyebrow::after {
  background: linear-gradient(90deg, var(--main-color), transparent);
}

.why-calm__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.why-calm__title span {
  color: var(--main-color);
  font-style: italic;
}

.why-calm__underline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.why-calm__underline span:nth-child(1) {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--main-color), transparent);
  border-radius: 2px;
}

.why-calm__underline span:nth-child(2) {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--main-color), transparent);
  border-radius: 2px;
  opacity: 0.5;
}

.why-calm__split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 90px;
}

.why-calm__content {
  position: relative;
}

.why-calm__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-right: 1.5rem;
  border-right: 3px solid var(--main-color);
}

.why-calm__desc {
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 2.5rem;
}

.why-calm__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.why-calm__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(184, 137, 58, 0.22);
  border-radius: 100px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  cursor: default;
}

.why-calm__pill:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 137, 58, 0.25);
}

.why-calm__pill i {
  font-size: 1rem;
  color: var(--main-color);
  transition: color 0.3s;
}

.why-calm__pill:hover i {
  color: var(--white);
}

.why-calm__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  background: var(--secondary-color);
  color: var(--main-color);
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  border: 2px solid var(--secondary-color);
}

.why-calm__cta:hover {
  background: transparent;
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.why-calm__visual {
  position: relative;
}

.why-calm__img-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26, 21, 16, 0.18);
}

.why-calm__img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  filter: brightness(0.92) saturate(0.95);
}

.why-calm__img-main:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}

.why-calm__img-frame {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(184, 137, 58, 0.35);
  border-radius: 10px;
  pointer-events: none;
  z-index: 2;
  transition: inset 0.4s ease, border-color 0.4s ease;
}

.why-calm__img-main:hover .why-calm__img-frame {
  inset: 0.6rem;
  border-color: rgba(184, 137, 58, 0.6);
}

.why-calm__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 130px;
  height: 130px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(26, 21, 16, 0.3);
  border: 3px solid var(--main-color);
  z-index: 3;
  animation: badge-float 4s ease-in-out infinite;
}

@keyframes badge-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.why-calm__badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--main-color);
  line-height: 1;
}

.why-calm__badge-label {
  font-family: 'Cairo', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
}

.why-calm__img-float {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 160px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(26, 21, 16, 0.2);
  border: 3px solid var(--white);
  z-index: 3;
  transition: transform 0.4s ease;
}

.why-calm__img-float:hover {
  transform: scale(1.05) rotate(-2deg);
}

.why-calm__img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media (max-width: 1100px) {
  .why-calm__split {
    gap: 3rem;
  }

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

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

  .why-calm__split {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .why-calm__visual {
    order: -1;
  }

  .why-calm__img-main img {
    height: 360px;
  }

  .why-calm__badge {
    width: 100px;
    height: 100px;
    bottom: -1rem;
    right: -0.5rem;
  }

  .why-calm__badge-num {
    font-size: 1.8rem;
  }

  .why-calm__img-float {
    width: 120px;
    height: 90px;
    top: -1rem;
    left: -1rem;
  }

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

  .why-calm__stat {
    padding: 2rem 1rem;
  }

  .why-calm__stat-value {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .why-calm__header {
    margin-bottom: 50px;
  }

  .why-calm__lead {
    font-size: 1.15rem;
  }

  .why-calm__img-float {
    display: none;
  }
}