@charset "UTF-8";
/* Playfair Display (headings) + Lato (body) — unified import */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap");

/* ============================================================
         GLOBAL / EXISTING STYLES
      ============================================================ */
#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7f4eb;
  z-index: 9999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s;
}
.spinner {
  position: relative;
  width: 140px;
  height: 140px;
}
.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top: 4px solid #c5a36a;
  border-right: 4px solid #c5a36a;
  animation: spin 1.2s linear infinite;
}
.spinner-ring2 {
  position: absolute;
  width: 110px;
  height: 110px;
  top: 15px;
  left: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom: 3px solid rgba(197, 163, 106, 0.6);
  border-left: 3px solid rgba(197, 163, 106, 0.6);
  animation: spinReverse 1.6s linear infinite;
}
.center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #c5a36a;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(197, 163, 106, 0.8);
  animation: pulse 1.5s infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.loader-hide {
  opacity: 0;
  visibility: hidden;
}

:root {
  /* ── Fonts ── */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Lato", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "SF Mono", "Fira Code", monospace;

  /* ── Type scale ── */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;

  /* ── Font weights ── */
  --font-normal:   400;
  --font-semibold: 600;
  --font-bold:     700;

  /* ── Colors ── */
  --color-primary:      #3d352a;
  --color-accent:       #c5a36a;
  --color-accent-hover: #a88b6b;
  --color-text:         #5c554d;
  --color-bg:           #ffffff;
  --color-bg-alt:       #f5f3ef;
  --color-border:       #eae5dd;

  /* ── Dark surface tokens ── */
  --color-dark-bg:         #121212;
  --color-dark-surface:    #1e1e1e;
  --color-dark-border:     #333333;
  --color-dark-text:       #e0e0e0;
  --color-dark-text-muted: #a0a0a0;

  /* ── Border radius ── */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.14);

  /* ── Spacing ── */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* ── Layout ── */
  --section-padding: 80px 0;
  --transition: all 0.25s ease;

  /* ── Legacy aliases (backward compatibility) ── */
  --primary-color:   #3d352a;
  --secondary-color: #f5f3ef;
  --accent-color:    #c5a36a;
  --text-color:      #5c554d;
  --white-color:     #ffffff;
  --border-color:    #eae5dd;
  --spacing-unit:    1rem;
  --body-font:       "Lato", -apple-system, BlinkMacSystemFont, sans-serif;
  --heading-font:    "Playfair Display", Georgia, serif;
}
body {
  margin: 0;
  padding: 0;
  padding-top: 100px;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--white-color);
  font-family: var(--body-font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(201, 164, 86, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}
.logo img {
  height: 67px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
nav ul li {
  margin: 0;
}
nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
nav ul li a:hover {
  color: var(--accent-color);
}
nav ul li a:hover::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* ========================================================
   BUTTON SYSTEM — two canonical classes + legacy aliases
   HTML: no class renames needed. CSS handles the mapping.
   ======================================================== */
.btn-primary,
.cta-button,
.btn-pack,
.submit-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: #ffffff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: 0.08em;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(197,163,106,0.3);
}
.btn-primary:hover,
.cta-button:hover,
.btn-pack:hover,
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(197,163,106,0.45);
  background: linear-gradient(135deg, var(--color-accent-hover), #967c5f);
  color: #ffffff;
}
/* Smaller pill in header */
header .cta-button,
header .btn-primary {
  padding: 0.8rem 1.8rem;
  font-size: var(--text-xs);
  letter-spacing: 1.5px;
}
.btn-secondary,
.su-btn-back {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: 0.08em;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-accent);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover,
.su-btn-back:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: translateY(-2px);
}
.hero {
  background-image:
    linear-gradient(rgba(40, 30, 20, 0.5), rgba(40, 30, 20, 0.5)),
    url(https://images.unsplash.com/photo-1596394516093-501ba68a0ba6?q=80&w=2070&auto=format&fit=crop);
  background-size: cover;
  background-position: center;
  color: var(--white-color);
  text-align: center;
  padding: calc(var(--spacing-unit) * 9) 0;
}
.hero h1 {
  font-family: var(--heading-font);
  font-size: 3.8rem;
  margin-bottom: var(--spacing-unit);
  font-weight: 700;
  line-height: 1.2;
}
.hero p {
  font-size: 1.25rem;
  max-width: 750px;
  margin: 0 auto calc(var(--spacing-unit) * 2.5) auto;
  opacity: 0.9;
}
section {
  padding: var(--section-padding);
}
h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  text-align: center;
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
}
.section-subtitle {
  text-align: center;
  font-size: var(--text-base);
  color: var(--color-text);
  max-width: 680px;
  margin: 0 auto var(--spacing-md);
  line-height: 1.75;
}
/* ── Reusable section header block ── */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}
/* ── Eyebrow pill ── */
.eyebrow-pill {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 1rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}
/* ========================================================
   CARD SYSTEM — unified base for all card types
   ======================================================== */
.card,
.concierge-card,
.pack-card,
.partner-card,
.service-item,
.info-card {
  background: var(--color-bg);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover,
.concierge-card:hover,
.pack-card:hover,
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.card.featured,
.concierge-card.featured,
.pack-card.featured {
  border: 1.5px solid var(--color-accent);
  box-shadow: var(--shadow-md);
}
.card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.card p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text);
}
.card .icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
}
.card strong {
  color: var(--color-primary);
  font-weight: var(--font-bold);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 4);
  align-items: center;
  margin-top: calc(var(--spacing-unit) * 4);
}
.benefits-list {
  list-style: none;
  padding: 0;
}
.benefits-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: calc(var(--spacing-unit) * 1.2);
  font-size: 1.1rem;
}
.benefits-list li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
}
.benefits-image {
  max-width: 300%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  margin-left: 8rem;
  object-fit: cover;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transform: translateX(80px) scale(1.5);
}
.benefits-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
h3,
h4 {
  font-family: var(--heading-font);
  color: var(--primary-color);
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.3rem;
  margin-top: 2rem;
}

footer {
  background-color: #2c261f;
  color: #d4cfc7;
  padding: 8rem 0 2rem;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--accent-color) 50%,
    var(--primary-color) 100%
  );
}
.footer-content {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 4rem;
}
.footer-content .footer-col:first-child {
  margin-right: 5%;
}
.footer-col {
  flex: 1;
  min-width: 180px;
}
.footer-map {
  flex: 2;
  width: 100%;
  overflow: visible;
  margin-right: 40px;
  margin-left: 20px;
}
.footer-map #chartdiv {
  width: 100%;
  height: 250px;
  max-width: 600px;
  margin: 0 auto;
}
.footer-col.footer-map {
  margin-right: 40px;
}
.footer-map h4 {
  margin-left: 0;
}
.footer-col h4 {
  color: var(--white-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
  position: relative;
  display: inline-block;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: -8px;
  left: 0;
  background-color: var(--accent-color);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col ul li a {
  color: #d4cfc7;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-icon {
  color: var(--accent-color);
  margin-top: 3px;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}
.footer-legal a {
  color: #d4cfc7;
  text-decoration: none;
  font-size: 0.85rem;
  margin-left: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.footer-legal a:hover {
  opacity: 1;
  color: var(--accent-color);
}

/* modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  background: rgba(255, 255, 255, 0.95);
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--accent-color);
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
}
.modal-backdrop.active .modal-content {
  transform: translateY(0) scale(1);
}
.modal-header {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 1.5rem 2rem;
  border-bottom: 3px solid var(--accent-color);
  flex-shrink: 0;
}
.modal-header h2 {
  margin: 0;
  color: var(--white-color);
  font-size: 2rem;
  text-align: left;
}
.modal-body {
  padding: 2.5rem;
  overflow-y: auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white-color);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
  z-index: 10;
}
.modal-close:hover {
  color: var(--accent-color);
}
.modal-body::-webkit-scrollbar {
  width: 8px;
}
.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.modal-body::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

/* ============================================================
   FAQ Accordion Styles
   ============================================================ */
.faq-container {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
}
.faq-container::-webkit-scrollbar {
  width: 6px;
}
.faq-container::-webkit-scrollbar-track {
  background: var(--secondary-color);
  border-radius: 3px;
}
.faq-container::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 3px;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white-color);
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.faq-question {
  margin: 0;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  background: var(--white-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: all 0.3s ease;
}
.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question {
  background: var(--primary-color);
  color: var(--white-color);
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
  color: var(--white-color);
}

.faq-answer {
  margin: 0;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
  transition: all 0.3s ease;
  background: var(--white-color);
}
.faq-item.active .faq-answer {
  padding: 16px 20px;
  max-height: 500px;
  overflow-y: auto;
}
.faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}

/* lang selector */
.lang-selector {
  position: relative;
  z-index: 1000;
}

/* Desktop: controls row is just a normal flex nav item */
li.nav-controls-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin-left: 0.5rem;
}

/* Hide divider on desktop - it's only for mobile */
.controls-divider {
  display: none;
}
.lang-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 0.85rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.lang-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  width: max-content;
  max-width: 90vw;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 9999;
}
.lang-dropdown.show {
  display: block;
}
.lang-dropdown li {
  margin: 0;
}
.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
}
.lang-dropdown li a:hover {
  background: var(--secondary-color);
  color: var(--accent-color);
}

/* back to top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #d8c196;
  color: black;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
#backToTop:hover {
  background-color: #524427;
  color: wheat;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/* theme toggle — desktop */
#themeToggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(163, 138, 101, 0.35);
  background: transparent;
  overflow: hidden;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
#themeToggle:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 10px rgba(163, 138, 101, 0.3);
  background: rgba(163, 138, 101, 0.06);
}
#themeToggle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* dark mode lang-dropdown override only — consolidated block is at end of file */
body.dark-mode .lang-dropdown {
  background-color: var(--color-dark-bg) !important;
  border: 1px solid var(--color-dark-border);
}
body.dark-mode .lang-dropdown a {
  color: var(--color-dark-text) !important;
}
body.dark-mode .lang-dropdown a:hover {
  background-color: var(--color-dark-surface);
  color: var(--color-dark-text) !important;
}

/* ============================================================
   DARK MODE — RESPONSIVE NAVBAR (mobile & tablet)
   ============================================================ */
@media (max-width: 900px) {
  body.dark-mode header {
    background: rgba(18, 18, 18, 0.96) !important;
    border-bottom-color: rgba(197, 163, 106, 0.15) !important;
  }
  body.dark-mode .logo {
    color: #f0e8d8;
  }
  body.dark-mode .menu-toggle span {
    background-color: #e0e0e0;
  }
  body.dark-mode nav {
    background: #1a1814 !important;
    border-top-color: rgba(197, 163, 106, 0.15) !important;
    border-bottom-color: var(--color-accent) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4) !important;
  }
  body.dark-mode nav ul li {
    border-bottom-color: rgba(255, 255, 255, 0.07) !important;
  }
  body.dark-mode nav ul li a {
    color: #e0e0e0 !important;
  }
  body.dark-mode nav ul li a:hover {
    color: var(--color-accent) !important;
  }
  body.dark-mode #themeToggle {
    border-color: rgba(197, 163, 106, 0.4) !important;
    background: rgba(197, 163, 106, 0.08) !important;
  }
  body.dark-mode #themeToggle:hover {
    border-color: var(--color-accent) !important;
    background: rgba(197, 163, 106, 0.15) !important;
  }
}

@media (max-width: 768px) {
  body.dark-mode header {
    background: rgba(18, 18, 18, 0.98) !important;
  }
  body.dark-mode nav {
    background: #1a1814 !important;
    border-bottom-color: var(--color-accent) !important;
  }
  body.dark-mode nav ul li {
    border-bottom-color: rgba(255, 255, 255, 0.07) !important;
  }
  body.dark-mode nav ul li a {
    color: #e0e0e0 !important;
  }
  body.dark-mode nav ul li a:hover {
    color: var(--color-accent) !important;
  }
}

#journey h2 {
  text-align: center;
}

#solutions h2 {
  text-align: center;
}

#about h2 {
  text-align: center;
}

/* active nav */
nav ul li a.active {
  color: #9b876e;
}
nav ul li a.active::after {
  width: 100%;
}

/* contact section */
#contact {
  background: var(--color-bg-alt);
  padding: var(--section-padding);
  min-height: 25vh;
  display: flex;
  align-items: center;
}
.contact-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 50px;
}
.contact-info-side {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.info-card {
  background: var(--color-bg);
  padding: 18px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 0.5px solid var(--color-border);
  max-width: 420px;
  min-height: 90px;
}
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(88, 66, 31, 0.3);
}

/* Phone flag dropdown styling inside info card */
.info-card .su-phone-field {
  margin-top: 8px;
  width: 100%;
}

.info-card .su-flag-btn {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.info-card .su-flag-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}

.info-card .su-flag-dd {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}

.info-card .su-flag-dd-search {
  padding: 8px;
  border-bottom: 1px solid #eee;
}

.info-card .su-flag-dd-search input {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

/* Hide amCharts watermark */
#chartdiv a[href*="amcharts.com"],
#chartdiv .am5-logo,
#chartdiv .am5-watermark {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.icon-box {
  background: linear-gradient(135deg, rgb(197, 163, 106), rgb(168, 138, 88));
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(197, 163, 106, 0.4);
}
.info-text h3 {
  font-size: 20px;
  margin: 0;
  color: #333;
  font-weight: 700;
}
.info-text p {
  font-size: 16px;
  margin: 6px 0 0;
  color: #666;
}
.contact-form-side {
  flex: 1.5;
  background: white;
  padding: 15px;
  border-radius: 30px;
  box-shadow: 0 20px 45px rgba(138, 117, 94, 0.18);
  border: 1px solid rgba(197, 163, 106, 0.15);
}
.form-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}
.form-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(to right, rgb(197, 163, 106), rgb(168, 138, 88));
  border-radius: 2px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
  margin-left: 3px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 2px solid #e8e0d3;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 14px;
  font-size: 16px;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #c5a36a;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(197, 163, 106, 0.1);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.su-captcha-area {
  margin: 30px 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
}
.su-captcha-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, rgb(197, 163, 106), rgb(168, 138, 88));
  color: white;
  border: none;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}

.submit-btn.loading {
  cursor: not-allowed;
  opacity: 0.7;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(197, 163, 106, 0.4);
  background: linear-gradient(135deg, rgb(168, 138, 88), rgb(197, 163, 106));
}
.submit-btn:active {
  transform: translateY(0);
}
.error {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
.form-response {
  margin-top: 20px;
  padding: 15px;
  display: none;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}
.form-response.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-response.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.dark-mode #contact {
  background: radial-gradient(circle at top right, black, #382317);
}
.dark-mode .contact-wrapper {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
}
.dark-mode .info-card {
  background: rgba(63, 43, 28, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.dark-mode .icon-box {
  background: rgb(201, 181, 148);
}
.dark-mode .info-text h3 {
  color: #fff;
}
.dark-mode .info-text p {
  color: #ddd;
}
.dark-mode .contact-form-side {
  background: rgba(104, 76, 55, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.dark-mode .form-group label {
  color: #fff;
}
.dark-mode .form-group input,
.dark-mode .form-group textarea {
  border: 1px solid #886f50;
  background: rgb(22, 21, 21, 0.5);
  color: #fff;
}
.dark-mode .form-group input:focus,
.dark-mode .form-group textarea:focus {
  border-color: #a7895d;
  background: #6b5440;
}
.dark-mode .submit-btn {
  background: linear-gradient(to right, #886f50, #5c4735);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.dark-mode .contact-form-side .form-group label {
  color: #ffffff !important;
}

/* verification overlay */
.form-blur-wrapper {
  position: relative;
  transition: filter 0.4s ease;
}
.form-blur-wrapper.blurred {
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
}
#verifyOverlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#verifyOverlay.active {
  opacity: 1;
  pointer-events: all;
}
.verify-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.verify-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 28px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgb(255, 255, 255);
  max-width: 400px;
  width: 100%;
  max-width: 90vw;
  padding: 52px 48px 44px;
  text-align: center;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
}
#verifyOverlay.active .verify-card {
  transform: translateY(0) scale(1);
}
.verify-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b89a7a, #e2c99a, #b89a7a);
}
.verify-panel {
  display: none;
  animation: fadeInUp 0.3s ease forwards;
}
.verify-panel.active {
  display: block;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.verify-spinner-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid #ece5d8;
  border-top-color: #b89a7a;
  border-right-color: #b89a7a;
  animation: spin 1s linear infinite;
  margin: 0 auto 24px;
}
.verify-card h3 {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  color: var(--primary-color);
  margin: 0 0 10px;
}
.verify-card p {
  color: var(--text-color);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0 0 20px;
}
.verify-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}
.verify-close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
  transform: scale(1.1);
}
.verify-close-btn:active {
  transform: scale(0.95);
}
.envelope-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #b89a7a, #e2c99a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  box-shadow: 0 8px 24px rgba(184, 154, 122, 0.35);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.countdown-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdf5e8;
  border: 1px solid #e2c99a;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.9rem;
  color: #8a6540;
  font-weight: 600;
  margin: 16px 0 24px;
}
.countdown-pill .timer-icon {
  color: #dc3545;
}
#verifyCountdown {
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}
.email-badge {
  background: #f5eee3;
  border: 1px dashed #c8aa86;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.88rem;
  color: #7a6040;
  margin: 0 0 20px;
  word-break: break-all;
}
.verify-ghost-btn {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: var(--body-font);
  transition: color 0.2s;
}
.verify-ghost-btn:hover {
  color: #a02622;
}
.success-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #27ae60, #52c77d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
  animation: pop 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes pop {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.success-circle svg {
  width: 36px;
  height: 36px;
}
.error-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e74c3c, #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3);
}
.error-circle svg {
  width: 36px;
  height: 36px;
}
.verify-retry-btn {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  border: none;
  padding: 13px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.verify-retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

/* ============================================================
         TOAST
      ============================================================ */
#toastContainer {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
  z-index: 5000;
}
.toast {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 16px;
  box-shadow:
    0 12px 40px rgba(220, 53, 69, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 600;
  max-width: 480px;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  backdrop-filter: blur(8px);
}
.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.toast.toast-success {
  background: linear-gradient(
    135deg,
    rgba(114, 220, 53, 0.95),
    rgba(46, 175, 41, 0.95)
  );
  color: white;
}
.toast.toast-error {
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.95),
    rgba(255, 107, 107, 0.95)
  );
  color: white;
}
.toast.toast-info {
  background: linear-gradient(
    135deg,
    rgba(59, 220, 53, 0.95),
    rgba(62, 168, 58, 0.95)
  );
  color: white;
}
.toast-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.toast-msg {
  flex: 1;
  line-height: 1.4;
}
.toast-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}
.toast-close:hover {
  opacity: 1;
}

/* ============================================================
         RTL
      ============================================================ */
[dir="rtl"] .logo {
  gap: 12px;
}
[dir="rtl"] .benefits-list li {
  padding-right: 30px;
  padding-left: 0;
}
[dir="rtl"] .benefits-list li::before {
  right: 0;
  left: auto;
}
[dir="rtl"] nav ul li a::after {
  right: 50%;
  left: auto;
  transform: translateX(50%);
}
[dir="rtl"] .lang-selector {
  margin-left: 0;
  margin-right: 1.5rem;
}
[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}
[dir="rtl"] .benefits-image {
  transform: translateX(-80px) scale(1.5);
}

/* ============================================================
         ★ NEW SIGNUP SECTION STYLES
      ============================================================ */
#signup {
  background: var(--color-bg);
  padding: var(--section-padding);
}

/* wider container override for signup */
#signup > .container {
  max-width: 1300px;
}

.signup-card {
  background: #fffbf7;
  border-radius: 24px;
  box-shadow:
    0 20px 60px rgba(61, 53, 42, 0.12),
    0 0 0 1px rgba(197, 163, 106, 0.18);
  overflow: visible;
  position: relative;
}
.signup-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b89a7a 0%, #e8d5a3 50%, #b89a7a 100%);
  border-radius: 24px 24px 0 0;
}
.signup-inner {
  padding: 1.8rem 3rem 1.6rem;
}
.signup-card h2 {
  font-family: var(--heading-font);
  font-size: 1.75rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 0.2rem;
}
.signup-card .signup-subtitle {
  text-align: center;
  color: var(--text-color);
  font-size: 0.85rem;
  margin-bottom: 1.4rem;
  opacity: 0.75;
}

/* step indicator */
.su-step-indicator {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2.5rem;
  padding-top: 25px;
}
.su-step-indicator::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #e8e0d4;
  border-radius: 6px;
  z-index: 0;
}
.su-progress-line {
  position: absolute;
  top: 46px;
  left: 0;
  height: 6px;
  width: 0%;
  background: linear-gradient(90deg, #c5a36a, #e8d5a3);
  border-radius: 6px;
  z-index: 1;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(197, 163, 106, 0.4);
}
.su-step {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.su-step::before {
  content: attr(data-step);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8e0d4;
  color: #999;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.su-step.active::before {
  background: linear-gradient(135deg, #c5a36a, #b89a7a);
  color: white;
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 4px 15px rgba(197, 163, 106, 0.5);
}
.su-step.completed::before {
  background: linear-gradient(135deg, #b89a7a, #9a7a5a);
  color: white;
  content: "✓";
  font-size: 1.3rem;
}
.su-step span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ccc;
  display: block;
  margin-top: 55px;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.su-step.active span {
  color: #8a6540;
  font-size: 1.15rem;
  transform: scale(1.05);
}
.su-step.completed span {
  color: #b89a7a;
  font-size: 1rem;
}

/* form step */
.su-form-step {
  display: none;
}
.su-form-step.active {
  display: block;
  animation: suFadeUp 0.28s ease;
}
@keyframes suFadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.su-mandatory {
  font-size: 0.72rem;
  color: #a0998f;
  font-style: italic;
  margin-bottom: 0.8rem;
}

/* rows */
.su-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 0.75rem;
}
.su-row2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 0.75rem;
}
.su-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.su-row1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.su-group {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}
.su-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--primary-color);
}
.su-group label .required-asterisk,
.su-logo-label .required-asterisk,
.su-stars-label .required-asterisk {
  color: inherit !important;
  font-size: 1.2em;
  font-weight: bold;
  margin-left: 2px;
}
.su-group input,
.su-group select {
  width: 100%;
  padding: 0.48rem 0.75rem;
  border: 1.5px solid #e2d9cc;
  border-radius: 9px;
  font-size: 0.82rem;
  font-family: var(--body-font);
  color: var(--primary-color);
  background: #fff;
  transition:
    border-color 0.22s,
    box-shadow 0.22s;
  box-shadow: 0 0 0 3px rgba(184, 154, 122, 0.13);
  background: #fffdf9;
  height: 36px;
  box-sizing: border-box;
}
.su-group input.input-ok {
  border-color: #52b788;
}
.su-group input.input-error,
.su-group select.input-error {
  border-color: #e74c3c;
  background: #fff8f8;
  animation: suShake 0.32s ease;
}
@keyframes suShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
}

.su-field-error {
  font-size: 0.64rem;
  color: #c0392b;
  display: flex;
  align-items: center;
  gap: 3px;
  opacity: 0;
  transform: translateY(-3px);
  transition:
    opacity 0.2s,
    transform 0.2s;
  min-height: 13px;
}
.su-field-error.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Country Dropdown with Flags */
.custom-country-dropdown {
  position: relative;
  width: 100%;
}

.country-selected {
  width: 100%;
  padding: 0.48rem 0.75rem;
  border: 1.5px solid #e2d9cc;
  border-radius: 9px;
  background: #fffdf9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  box-sizing: border-box;
  font-size: 0.82rem;
  font-family: var(--body-font);
  color: var(--primary-color);
}

.country-selected:hover {
  border-color: #b89a7a;
}

.country-selected:focus,
.country-selected:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(184, 154, 122, 0.13);
  background: #fffdf9;
  outline: none;
}

.country-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1.5px solid #e2d9cc;
  border-radius: 9px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 2px;
}

.country-option {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
  font-size: 0.82rem;
  font-family: var(--body-font);
  color: var(--primary-color);
}

.country-option:last-child {
  border-bottom: none;
}

.country-option:hover {
  background-color: #f8f9fa;
}

.country-option img {
  width: 16px;
  height: 12px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 2px;
  object-fit: cover;
  border: 1px solid #e2d9cc;
}

.country-selected img {
  width: 16px;
  height: 12px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 2px;
  object-fit: cover;
  border: 1px solid #e2d9cc;
}

.country-selected span:last-child {
  margin-left: auto;
  font-size: 0.8em;
  color: #666;
  transition: transform 0.2s ease;
}

.custom-country-dropdown.open .country-selected span:last-child {
  transform: rotate(180deg);
}

/* Error state for custom country dropdown */
.custom-country-dropdown.input-error .country-selected {
  border-color: #e74c3c;
  background: #fff8f8;
  animation: suShake 0.32s ease;
}

/* Success state for custom country dropdown */
.custom-country-dropdown.input-ok .country-selected {
  border-color: #52b788;
}

/* ----  PHONE FIELD WITH FLAG PICKER  ---- */
.su-phone-field {
  display: flex;
  border: 1.5px solid #e2d9cc;
  border-radius: 9px;
  overflow: visible;
  background: #fffdf9;
  transition:
    border-color 0.22s,
    box-shadow 0.22s;
  position: relative;
  margin-right: 1rem;
  height: 36px;
  box-sizing: border-box;
  z-index: 1;
}

/* Ensure parent containers don't clip the dropdown */
.su-group:has(.su-phone-field),
.su-row:has(.su-phone-field),
.su-form-step:has(.su-phone-field),
.signup-inner:has(.su-phone-field),
.form-blur-wrapper:has(.su-phone-field),
#signupForm:has(.su-phone-field),
.form-group:has(.su-phone-field),
#contactForm:has(.su-phone-field),
.contact-form-side:has(.su-phone-field) {
  overflow: visible !important;
}
.su-phone-field:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(184, 154, 122, 0.13);
}
.su-phone-field.input-error {
  border-color: #e74c3c;
}
.su-phone-field.input-ok {
  border-color: #52b788;
}

.su-flag-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 0.5rem;
  background: #f9f5ef;
  border: none;
  border-right: 1.5px solid #e2d9cc;
  border-radius: 7px 0 0 7px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s;
  min-width: 68px;
  height: 100%;
}
.su-flag-btn:hover {
  background: #f0e9df;
}
.su-flag-btn .fe {
  font-size: 1rem;
  line-height: 1;
  font-family:
    "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "EmojiSymbols",
    "EmojiOne", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.su-flag-btn .dc {
  font-size: 0.68rem;
  color: var(--primary-color);
  font-weight: 700;
}
.su-flag-btn .chv {
  font-size: 0.5rem;
  color: #bbb;
  margin-left: 1px;
}

.su-phone-field input[type="tel"] {
  border: none;
  border-radius: 0 9px 9px 0;
  flex: 1;
  padding: 0.48rem 0.75rem;
  box-shadow: none;
  background: transparent;
  font-size: 0.82rem;
  font-family: var(--body-font);
  min-width: 0;
  outline: none;
  height: 36px;
  box-sizing: border-box;
}

.su-flag-dd {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  max-width: 280px;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e2d9cc;
  border-radius: 8px;
  z-index: 99999;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.su-flag-dd.open {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@keyframes suDrop {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.su-flag-dd-search {
  padding: 0.4rem 0.6rem;
  border-bottom: 1px solid #f0e9df;
  position: sticky;
  top: 0;
  background: #fff;
}
.su-flag-dd-search input {
  width: 100%;
  border: 1.5px solid #e2d9cc;
  border-radius: 6px;
  padding: 0.32rem 0.6rem;
  font-size: 0.75rem;
  outline: none;
  box-sizing: border-box;
}
.su-flag-dd-search input:focus {
  border-color: var(--accent-color);
}
.su-flag-opt {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
  font-size: 0.82rem;
  font-family: var(--body-font);
  color: var(--primary-color);
}
.su-flag-opt:hover {
  background: #f5eedd;
  color: #333;
}
.su-flag-opt .fo-flag {
  font-size: 1rem;
  flex-shrink: 0;
  font-family:
    "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "EmojiSymbols",
    "EmojiOne", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.su-flag-opt .fo-name {
  flex: 1;
}
.su-flag-opt .fo-code {
  color: #bbb;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 8px;
}
.su-flag-dd::-webkit-scrollbar {
  width: 4px;
}
.su-flag-dd::-webkit-scrollbar-track {
  background: #f9f5ef;
}
.su-flag-dd::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 3px;
}

/* ----  LUXURY STAR RATING  ---- */
/* ---- STARS ---- */
.su-stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}
.su-stars-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--primary-color);
}
.su-luxury-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.48rem 0.75rem;
  height: 36px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #fffbf2, #fdf5e5);
  border: 1.5px solid #e2d9cc;
  border-radius: 9px;
  cursor: pointer;
  width: fit-content;
  position: relative;
  z-index: 1;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.su-luxury-stars:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(184, 154, 122, 0.1);
}
.su-star-gem {
  width: 24px;
  height: 24px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.16s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.su-star-gem:hover {
  transform: scale(1.2);
}
.su-star-gem svg {
  width: 24px;
  height: 24px;
  display: block;
}
.su-star-gem .s-empty {
  display: block;
}
.su-star-gem .s-filled {
  display: none;
  filter: drop-shadow(0 2px 3px rgba(197, 163, 106, 0.45));
}
.su-star-gem.lit .s-empty {
  display: none;
}
.su-star-gem.lit .s-filled {
  display: block;
}
.su-star-gem.lit {
  animation: suStarPop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  z-index: 2;
}
@keyframes suStarPop {
  0% {
    transform: scale(0.8);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.su-star-badge {
  margin-left: 4px;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.18s,
    transform 0.18s;
}
.su-star-badge.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---- LOGO UPLOAD ---- */
.su-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.su-logo-zone {
  border: 1.5px solid #e2d9cc;
  border-radius: 9px;
  padding: 0.48rem 0.75rem;
  height: 28px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex: 1;
  position: relative;
  background: #fffdf9;
  transition: all 0.2s ease;
}
.su-logo-zone:hover {
  border-color: var(--accent-color);
  background: #f5eedd;
}
.su-logo-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.su-logo-text .lt-main {
  font-size: 0.74rem;
  color: var(--primary-color);
  font-weight: 600;
}
.su-logo-text .lt-sub {
  font-size: 0.62rem;
  color: #aaa;
}
.su-logo-preview {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.6rem;
  background: #fdf5e8;
  border: 1.5px solid var(--accent-color);
  border-radius: 9px;
}
.su-logo-preview.show {
  display: flex;
}
.su-logo-preview img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #e2d9cc;
}
.su-logo-remove {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.15rem;
  border-radius: 4px;
  transition: background 0.12s;
}
.su-logo-remove:hover {
  background: #ffeae9;
}

/* ---- STANDALONE CHECKBOX ---- */
.su-checkbox-standalone {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  width: auto;
  height: auto;
  position: static;
}

/* ---- CHECKBOX STYLES ---- */
.su-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary-color);
  height: 28px;
  margin: 0;
  cursor: pointer;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0;
  box-shadow: none !important;
  outline: none !important;
  position: static !important;
  width: auto;
  min-width: auto;
  max-width: none;
}

/* Remove su-group container styling for checkbox - multiple approaches */
.su-group:has(.su-checkbox-label),
.su-row3 .su-group:nth-child(3),
.su-row3 .su-group:last-child {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: static !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  clip: auto !important;
  clip-path: none !important;
  filter: none !important;
}

/* Target checkbox container specifically */
#signupForm .su-row3 .su-group:nth-child(3),
.signup-card .su-row3 .su-group:nth-child(3) {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: static !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  clip: auto !important;
  clip-path: none !important;
  filter: none !important;
}

/* Extra aggressive targeting */
* .su-group:has(.su-checkbox-label),
* .su-row3 .su-group:nth-child(3),
* .su-row3 .su-group:last-child,
html body .su-group:has(.su-checkbox-label),
html body .su-row3 .su-group:nth-child(3),
html body .su-row3 .su-group:last-child {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: static !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  min-height: auto !important;
  max-width: none !important;
  max-height: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  clip: auto !important;
  clip-path: none !important;
  filter: none !important;
}

.su-checkbox {
  width: 14px;
  height: 14px;
  accent-color: var(--accent-color);
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.su-checkbox-text {
  color: var(--primary-color);
  letter-spacing: 0.07em;
  font-size: 0.68rem;
}

/* ---- ROW LOGO + STARS ---- */
.su-logo-stars-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.su-logo-stars-row .su-logo-wrap {
  flex: 1;
}
.su-logo-stars-row .su-stars-wrap {
  flex-shrink: 0;
  margin-left: 2rem;
}

/* ---- CAPTCHA toujours en dessous ---- */
.su-captcha-area {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.su-captcha-inner {
  display: flex;
  justify-content: center; /* ou center */
  width: 100%;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .su-logo-stars-row {
    flex-direction: column;
  }
  .su-captcha-area {
    margin-top: 1.5rem;
  }
}
/* ----  BUTTONS  ---- */
.su-btns {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}
.su-btns.right {
  justify-content: flex-end;
}
.su-btns.between {
  justify-content: space-between;
}

/* Style commun */
.su-btn-next,
.su-btn-submit {
  color: #fff;
  border: none;
  padding: 0.58rem 1.6rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    filter 0.18s;
}

/* NEXT (marron) */
.su-btn-next {
  background: linear-gradient(135deg, #b89a7a, #8a6540);
  box-shadow: 0 4px 14px rgba(184, 154, 122, 0.28);
}

/* SUBMIT (vert) */
.su-btn-submit {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  box-shadow: 0 4px 14px rgba(40, 167, 69, 0.3);
}
.su-btn-next:hover,
.su-btn-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 7px 20px rgba(184, 154, 122, 0.38);
}
.su-btn-back {
  background: transparent;
  color: var(--primary-color);
  border: 1.5px solid #e2d9cc;
  padding: 0.58rem 1.3rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.18s;
}
.su-btn-back:hover {
  border-color: var(--accent-color);
  color: #8a6540;
  background: #f5eedd;
}

/* centrer le bloc stars dans sa colonne */
/* Le conteneur parent qui wrappe logo + stars */

/* ============================================================
         RESPONSIVE - MAIN SECTIONS
      ============================================================ */
@media (max-width: 1107px) {
  body {
    font-size: 16px;
  }

  /* Hero Section */
  .hero {
    padding: calc(var(--spacing-unit) * 6) 0;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero p {
    font-size: 1.1rem;
    max-width: 650px;
  }

  /* Main Sections */
  section {
    padding: calc(var(--spacing-unit) * 3) 0;
  }

  h2 {
    font-size: 2.4rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
  }

  /* Container */
  .container {
    padding: 0 1.5rem;
  }

  /* Navigation */
  .logo {
    font-size: 1.6rem;
  }

  .logo img {
    height: 55px;
  }

  nav ul li a {
    font-size: 0.75rem;
    gap: 1.5rem;
  }
  .container {
    padding: 0 1.5rem;
  }
  header {
    padding: 1rem 0;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  /* ── MOBILE NAV: hamburger appears ── */
  .menu-toggle {
    display: flex;
    z-index: 1010;
  }

  /* Dropdown panel */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 2px solid var(--color-accent);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.38s ease,
      opacity 0.25s ease,
      padding 0.25s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    z-index: 1000;
  }
  nav.active {
    max-height: 600px;
    opacity: 1;
    pointer-events: all;
    padding: 1rem 1.5rem 1.5rem;
  }

  /* Stack items vertically */
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    width: 100%;
  }
  nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }
  nav ul li:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
  }
  nav ul li a {
    display: block;
    font-size: 0.95rem;
    padding: 0.85rem 0;
    color: var(--color-primary);
  }
  nav ul li a:hover {
    color: var(--color-accent);
    padding-left: 6px;
  }


  /* ── Controls row: lang flag + theme toggle side by side ── */
  nav ul li.lang-selector,
  nav ul li:has(#themeToggle) {
    border-bottom: none;
    width: auto;
  }

  /* Group lang + theme into one flex row */
  nav ul li.lang-selector {
    display: flex;
    align-items: center;
  }

  nav ul .nav-controls-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    margin-top: 0.25rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }

  /* Lang button pill style */
  nav ul .nav-controls-row .lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border: 1.5px solid rgba(163, 138, 101, 0.3);
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: border-color 0.2s, background 0.2s;
  }
  nav ul .nav-controls-row .lang-btn:hover {
    border-color: var(--color-accent);
    background: rgba(163, 138, 101, 0.05);
  }
  nav ul .nav-controls-row .lang-btn img {
    width: 20px;
    height: auto;
    border-radius: 2px;
  }

  /* Divider */
  nav ul .nav-controls-row .controls-divider {
    display: inline-block;
    width: 1px;
    height: 24px;
    background: var(--color-border);
    margin: 0 0.1rem;
    flex-shrink: 0;
  }

  /* Theme toggle in controls row */
  nav ul .nav-controls-row #themeToggle {
    width: 36px;
    height: 36px;
    padding: 5px;
    border: 1.5px solid rgba(163, 138, 101, 0.3);
    border-radius: 50%;
    background: transparent;
    flex-shrink: 0;
  }

  /* CTA button */
  nav ul li:has(.cta-button) {
    border-bottom: none;
    padding-top: 0.75rem;
    width: 100%;
  }
  nav ul li .cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    border-radius: 25px;
  }


  .hero {
    padding: 4rem 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  section {
    padding: 3rem 0;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .benefits-image {
    margin-top: 1rem;
    order: -1;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-info li {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal a {
    margin: 0;
  }
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }
  .modal-header {
    padding: 1rem 1.5rem;
  }
  .modal-header h2 {
    font-size: 1.5rem;
  }
  .modal-body {
    padding: 1.5rem;
  }
  .su-row,
  .su-row3 {
    grid-template-columns: 1fr;
  }
  .signup-inner {
    padding: 1.4rem 1.2rem 1.2rem;
  }
}
/* Responsive Design */
@media (max-width: 1400px) {
  .contact-wrapper {
    max-width: 1200px;
    gap: 40px;
  }
  .contact-form-side {
    padding: 45px;
  }
  .info-card {
    max-width: 380px;
    padding: 28px;
  }
}

@media (max-width: 1200px) {
  .contact-wrapper {
    gap: 35px;
  }
  .contact-form-side {
    padding: 40px;
  }
  .info-card {
    max-width: 350px;
    padding: 25px;
  }
  .icon-box {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  /* Hero Section */
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Main Sections */
  h2 {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Benefits Grid */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 3);
    text-align: center;
  }

  .benefits-image {
    max-width: 100%;
    margin-left: 0;
    transform: none;
  }

  .benefits-image:hover {
    transform: translateY(-5px);
  }

  /* Grid Layouts */
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
  }

  /* Contact Section */
  #contact {
    padding: 60px 15px;
  }
  .contact-wrapper {
    flex-direction: column;
    gap: 35px;
    padding: 0;
    max-width: 600px;
  }
  .contact-info-side {
    order: 2;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .info-card {
    max-width: 300px;
    padding: 22px;
    flex: 1 1 calc(50% - 20px);
    min-max-width: 280px;
    width: 100%;
  }
  .contact-form-side {
    order: 1;
    padding: 35px;
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
  }
  .form-title {
    font-size: 26px;
  }
  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  /* Adjust body padding for fixed header on mobile */
  body {
    padding-top: 80px;
  }

  /* Mobile Menu */
  .menu-toggle {
    display: flex;
  }

  /* ── 768px nav: same clean dropdown style ── */
  nav {
    position: absolute;
    top: 100%;
    right: auto;
    left: 0;
    width: 100%;
    height: auto;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 2px solid var(--color-accent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    padding: 0 1.25rem;
    transition:
      max-height 0.38s ease,
      opacity 0.25s ease,
      padding 0.25s ease;
    z-index: 1000;
  }

  nav.active {
    max-height: 600px;
    opacity: 1;
    pointer-events: all;
    padding: 1rem 1.25rem 1.5rem;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    width: 100%;
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }
  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li a {
    display: block;
    font-size: 1rem;
    padding: 0.9rem 0;
    color: var(--color-primary);
  }
  nav ul li:has(.cta-button) {
    padding-top: 0.75rem;
  }
  nav ul li .cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  /* Hero Section Mobile */
  .hero {
    padding: calc(var(--spacing-unit) * 4) 0;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .cta-button {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Main Sections Mobile */
  section {
    padding: calc(var(--spacing-unit) * 2.5) 0;
  }

  h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: calc(var(--spacing-unit) * 3);
  }

  /* Container Mobile */
  .container {
    padding: 0 1rem;
  }

  /* Card Mobile */
  .card {
    padding: calc(var(--spacing-unit) * 2);
  }

  .card h3 {
    font-size: 1.4rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  .card .icon {
    font-size: 2.5rem;
  }

  /* Benefits Mobile */
  .benefits-list li {
    font-size: 1rem;
    padding-left: 25px;
    margin-bottom: 1rem;
  }

  .benefits-list li::before {
    font-size: 1.1rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }

  /* Grid Mobile */
  .grid-3 {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 2);
  }

  /* Contact Section */
  #contact {
    padding: 50px 15px;
  }
  .contact-wrapper {
    gap: 30px;
  }
  .contact-info-side {
    order: 2;
    flex-direction: column;
    align-items: center;
  }
  .info-card {
    max-width: 100%;
    width: 100%;
    flex: 1 1 100%;
    padding: 20px;
  }
  .contact-form-side {
    order: 1;
    padding: 30px;
  }
  .form-title {
    font-size: 24px;
  }
  .form-group input,
  .form-group textarea {
    padding: 16px 18px;
    font-size: 15px;
  }
  .submit-btn {
    padding: 18px;
    font-size: 15px;
  }
  .icon-box {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }
  .info-text h3 {
    font-size: 17px;
  }
  .info-text p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  /* Adjust body padding for fixed header on small mobile */
  body {
    padding-top: 70px;
  }

  /* Hero Small Mobile */
  .hero {
    padding: calc(var(--spacing-unit) * 3) 0;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .hero p {
    font-size: 0.9rem;
  }

  /* Main Sections Small Mobile */
  section {
    padding: calc(var(--spacing-unit) * 2) 0;
  }

  h2 {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  /* Container Small Mobile */
  .container {
    padding: 0 0.8rem;
  }

  /* Card Small Mobile */
  .card {
    padding: calc(var(--spacing-unit) * 1.5);
  }

  .card h3 {
    font-size: 1.3rem;
  }

  .card p {
    font-size: 0.85rem;
  }

  .card .icon {
    font-size: 2.2rem;
  }

  /* Benefits Small Mobile */
  .benefits-list li {
    font-size: 0.9rem;
    padding-left: 22px;
  }

  h3 {
    font-size: 1.4rem;
  }

  h4 {
    font-size: 1rem;
  }

  /* Contact Section */
  #contact {
    padding: 40px 10px;
  }
  .contact-form-side {
    padding: 25px;
  }
  .form-title {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    font-size: 14px;
  }
  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 14px;
  }
  .su-captcha-area {
    margin: 25px 0;
  }
  .submit-btn {
    padding: 16px;
    font-size: 14px;
  }
  .info-card {
    padding: 18px;
  }
  .icon-box {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  .info-text h3 {
    font-size: 16px;
  }
  .info-text p {
    font-size: 14px;
  }
}

.su-signin-link {
  margin-top: 15px; /* espace au-dessus */
  text-align: center; /* centrer le texte */
  font-size: 1.2em; /* taille du texte */
}

.su-signin-link a {
  color: #007bff; /* couleur du lien */
  text-decoration: none; /* enlever le souligné par défaut */
}

.su-signin-link a:hover {
  text-decoration: underline; /* souligné au survol */
  cursor: pointer; /* curseur main */
}

.am5-tooltip-label {
  color: white !important;
}

/* ── Section ── */
#packs {
  background: var(--color-bg);
  padding: var(--section-padding);
}

#packs .container {
  max-width: 1200px;
  margin: 0 auto;
}

#packs .section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

#packs .section-header .eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: 0.22em;
  color: var(--color-accent);
  margin-bottom: 14px;
}

#packs .section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

#packs .section-header p {
  font-size: var(--text-base);
  color: var(--color-text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Grid ── */
#packs .packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}

/* ── Card base ── */
#packs .pack-card {
  background: var(--color-bg);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible;
  padding: 0 !important;
}

#packs .pack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(100, 70, 30, 0.14);
}

/* ── Featured card (middle) ── */
#packs .pack-card.featured {
  border-color: #c9a456;
  box-shadow: 0 8px 40px rgba(180, 130, 60, 0.18);
}

#packs .pack-card.featured:hover {
  box-shadow: 0 24px 60px rgba(180, 130, 60, 0.26);
}

/* ── Gold header banner ── */
#packs .pack-header {
  background: linear-gradient(
    135deg,
    #c9a456 0%,
    #e8c97a 40%,
    #c9a456 70%,
    #a8802e 100%
  );
  padding: 38px 15px 18px 15px;
  text-align: center;
  position: relative;
  overflow: visible;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* subtle sheen */
#packs .pack-header::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(25deg);
  pointer-events: none;
}

#packs .pack-header h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  letter-spacing: 0.12em;
  text-transform: capitalize;
  margin: 0;
  position: relative;
  z-index: 1;
  white-space: normal !important;
  word-wrap: break-word !important;
  line-height: 1.3;
  width: 100%;
}

/* ── Card body ── */
#packs .pack-body {
  padding: 25px 28px 20px;
  border: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

/* features list */
#packs .pack-features {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#packs .pack-features li {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #4a3520;
  text-align: center;
  padding: 18px 15px;
  border-bottom: 1px solid #ddd0bb;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

#packs .pack-features li:last-child {
  border-bottom: none;
}

#packs .pack-price span {
  font-size: 16px;
  font-weight: 400;
  color: #7a6045;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

/* #packs .btn-pack is already handled by the global .btn-primary alias */
#packs .btn-pack {
  display: inline-block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

/* ── Popular badge ── */
#packs .pack-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #1a1008;
  color: #ffffff;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-bottom-left-radius: 8px;
  z-index: 10;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #packs .packs-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  #packs .section-header h2 {
    font-size: 36px;
  }
}

/* ── Price footer ── */
#packs .pack-footer {
  margin: 0;
  padding: 15px 28px 25px;
  border: none;
  border-top: 1px solid #ddd0bb;
  text-align: center;
}

#packs .pack-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  color: #1a1008;
  margin-bottom: 25px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* "À partir de" */
#packs .pack-price .starting {
  font-family: "DM Sans", sans-serif; /* Plus moderne pour le petit texte */
  font-size: 18px;
  font-weight: 300;
  color: #3d240d;
}

/* Le chiffre (349) */
#packs .pack-price .amount {
  font-family: "DM Sans", sans-serif; /* Ou une police sans-serif très grasse */
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

/* Conteneur pour TND et /mois */
#packs .pack-price .currency-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

/* "TND" en rouge/corail comme sur l'image */
#packs .pack-price .currency {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f88d7f; /* Couleur corail de l'image */
}

/* "/mois" */
#packs .pack-price .period {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #1a1008;
}

/* ════════════════════════════════════════
   DARK MODE — #packs
   Usage: add class="dark-mode" on <body>
   or any parent wrapping the section
════════════════════════════════════════ */

.dark-mode #packs {
  background-color: transparent;
}

/* ── Section header ── */
.dark-mode #packs .section-header .eyebrow {
  color: #c9a456;
}

.dark-mode #packs .section-header h2 {
  color: #f0e8d8;
}

.dark-mode #packs .section-header p {
  color: #a89070;
}

/* ── Card base - Same design for all packages */
.dark-mode #packs .pack-card {
  background: #1e1912;
  border-color: #3a2e1e;
  display: flex;
  flex-direction: column;
  border: 1px solid;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

.dark-mode #packs .pack-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* ── Gold header banner — unchanged (already gold) ── */
.dark-mode #packs .pack-header {
  background: linear-gradient(
    135deg,
    #c9a456 0%,
    #e8c97a 40%,
    #c9a456 70%,
    #a8802e 100%
  );
}

.dark-mode #packs .pack-header h3 {
  color: #1a1008;
}

/* ── Card body ── */
.dark-mode #packs .pack-body {
  border-color: #3a2e1e;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── Features list ── */
.dark-mode #packs .pack-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.dark-mode #packs .pack-features li {
  color: #d4c4a0;
  border-bottom-color: #3a2e1e;
}

.dark-mode #packs .pack-features li:last-child {
  border-bottom: none;
}

/* ── Price footer ── */
.dark-mode #packs .pack-footer {
  border-color: #3a2e1e;
}

.dark-mode #packs .pack-price {
  color: #f0e8d8;
}

.dark-mode #packs .pack-price span {
  color: #a89070;
}

/* ── CTA button - Same for all packages */
.dark-mode #packs .btn-pack {
  background: #4e4534;
  color: #1a1008;
}

.dark-mode #packs .btn-pack:hover {
  background: #c9a456;
  color: #1a1008;
  box-shadow: 0 8px 24px rgba(201, 164, 86, 0.35);
}

/* ── Popular badge ── */
.dark-mode #packs .pack-badge {
  background: #c9a456;
  color: #ffffff;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .dark-mode #packs .section-header h2 {
    font-size: 36px;
  }
}

/* ===================== DARK MODE SIGNUP ===================== */
body.dark-mode #signup,
.dark-mode #signup {
  background: transparent !important;
  background-color: transparent !important;
  color: #ffffff !important;
  padding: 50px 0;
}

/* ===================== DARK MODE TESTIMONIALS ===================== */
body.dark-mode #testimonials,
.dark-mode #testimonials {
  background: transparent !important;
  background-color: transparent !important;
  color: #ffffff !important;
}

.dark-mode #testimonials .testimonials-eyebrow {
  color: #c9a456;
}

.dark-mode #testimonials .testimonials-title {
  color: #ffffff;
}

.dark-mode #testimonials .testimonials-subtitle {
  color: #a89070;
}

.dark-mode #testimonials .testimonial-card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.dark-mode #testimonials .testimonial-text {
  color: #ffffff;
}

.dark-mode #testimonials .testimonial-author {
  color: #ffffff;
}

.dark-mode #testimonials .testimonial-role {
  color: #a89070;
}

.dark-mode #testimonials .t-nav-btn {
  background-color: #333;
  color: #ffffff;
  border: 1px solid #555;
}

.dark-mode #testimonials .t-nav-btn:hover {
  background-color: #555;
}

.dark-mode #signup .signup-card {
  background-color: #1e1e1e;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 30px;
}

.dark-mode #signup h2,
.dark-mode #signup p {
  color: #ffffff;
}

.dark-mode #signup label {
  color: #ffffff !important;
}

.dark-mode #signup input,
.dark-mode #signup select,
.dark-mode #signup .su-phone-field input {
  background-color: #2c2c2c;
  color: #ffffff !important;
  border: 1px solid #555;
  border-radius: 6px;
  padding: 10px;
}

.dark-mode #signup input::placeholder,
.dark-mode #signup select option {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Cross-browser placeholder support for dark mode */
.dark-mode #signup input::-webkit-input-placeholder,
.dark-mode #signup select::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.dark-mode #signup input::-moz-placeholder,
.dark-mode #signup select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.dark-mode #signup input:-ms-input-placeholder,
.dark-mode #signup select:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.dark-mode #signup .su-field-error {
  color: #ff6b6b;
}

.dark-mode #signup .su-btn-next,
.dark-mode #signup .su-btn-back,
.dark-mode #signup .su-btn-submit {
  background-color: #333;
  color: #fff;
  border: 1px solid #555;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dark-mode #signup .su-btn-next:hover,
.dark-mode #signup .su-btn-back:hover,
.dark-mode #signup .su-btn-submit:hover {
  background-color: #555;
  border-color: #777;
}

.dark-mode #signup .su-step-indicator {
  margin-bottom: 2.5rem;
}

.dark-mode #signup .su-step-indicator::before {
  background: #444;
}

.dark-mode #signup .su-step::before {
  background: #444;
  color: #888;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.dark-mode #signup .su-step.active::before {
  background: linear-gradient(135deg, #c5a36a, #b89a7a);
  color: white;
  box-shadow: 0 4px 15px rgba(197, 163, 106, 0.5);
}

.dark-mode #signup .su-step.completed::before {
  background: linear-gradient(135deg, #b89a7a, #9a7a5a);
  color: white;
}

.dark-mode #signup .su-step span {
  color: #888;
}

.dark-mode #signup .su-step.active span {
  color: #d4c4a8;
}

.dark-mode #signup .su-step.completed span {
  color: #c5a36a;
}

.dark-mode #signup .su-progress-line {
  background: linear-gradient(90deg, #c5a36a, #e8d5a3);
}

.dark-mode #signup .su-logo-zone {
  background-color: #2c2c2c;
  border: 1px dashed #555;
  color: #ddd;
}

.dark-mode #signup .su-logo-text .lt-main,
.dark-mode #signup .su-logo-text .lt-sub {
  color: #ccc;
}

.dark-mode #signup .su-stars-wrap svg polygon {
  stroke: #d4c4a8; /* étoiles vides visibles */
}

.dark-mode #signup .su-captcha-area {
  background-color: #1e1e1e;
  padding: 15px;
  border-radius: 8px;
}

/* liens */
.dark-mode #signup a {
  color: #64b5f6;
  text-decoration: none;
}

.dark-mode #signup a:hover {
  text-decoration: underline;
}

/* Optional: step content background */
.dark-mode #signup .su-form-step {
  background-color: #1e1e1e;
  padding: 15px;
  border-radius: 8px;
}

/* Optional: phone dropdown */
.dark-mode #signup .su-flag-dd {
  background-color: #2c2c2c;
  color: #fff;
  border: 1px solid #555;
}

/* Optional: phone dropdown search input */
.dark-mode #signup .su-flag-dd-search input {
  background-color: #333;
  color: #fff;
  border: 1px solid #555;
}

/* Optional: logo preview remove button */
.dark-mode #signup .su-logo-remove {
  background-color: #444;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.dark-mode #signup .su-logo-remove:hover {
  background-color: #666;
}

/* ======================= CONCIERGE SERVICES ======================= */
#concierge-services {
  background: var(--color-bg-alt);
  padding: var(--section-padding);
}

#concierge-services .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow pill handled globally by .eyebrow-pill */

#concierge-services h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

#concierge-services .section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* Concierge Cards */
#concierge-services .concierge-card {
  background: #faf7f2;
  border: 1.5px solid #d4c4a8;
  border-radius: 4px;
  padding: 20px 18px;
  box-shadow: 0 8px 30px rgba(100, 70, 30, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

#concierge-services .concierge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(100, 70, 30, 0.14);
}

/* Featured Card (First Card - Internal Services) */
#concierge-services .concierge-card.featured {
  border-color: #c9a456;
  box-shadow: 0 8px 40px rgba(180, 130, 60, 0.18);
  position: relative;
  background: linear-gradient(135deg, #faf7f2 0%, #f5efe0 100%);
}

#concierge-services .concierge-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c9a456, #e8c97a, #c9a456);
  border-radius: 4px 4px 0 0;
}

#concierge-services .concierge-card.featured:hover {
  box-shadow: 0 24px 60px rgba(180, 130, 60, 0.26);
  transform: translateY(-8px);
}

#concierge-services .concierge-card.featured .concierge-icon {
  background: linear-gradient(
    135deg,
    #c9a456 0%,
    #e8c97a 40%,
    #c9a456 70%,
    #a8802e 100%
  );
  box-shadow: 0 8px 25px rgba(201, 164, 86, 0.3);
}

#concierge-services .concierge-card.featured .concierge-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(201, 164, 86, 0.4);
}

#concierge-services .concierge-card.featured h3 {
  color: #c9a456;
  font-weight: 800;
}

#concierge-services .concierge-card.featured .concierge-features li i {
  color: #c9a456;
}

/* Featured Green Card (Middle Card - External Services) */
#concierge-services .concierge-card.featured-green {
  border-color: #28a745;
  box-shadow: 0 8px 40px rgba(40, 167, 69, 0.18);
  position: relative;
  background: linear-gradient(135deg, #faf7f2 0%, #f0f8f0 100%);
}

#concierge-services .concierge-card.featured-green::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #28a745, #34ce57, #28a745);
  border-radius: 4px 4px 0 0;
}

#concierge-services .concierge-card.featured-green:hover {
  box-shadow: 0 24px 60px rgba(40, 167, 69, 0.26);
  transform: translateY(-8px);
}

#concierge-services .concierge-card.featured-green .concierge-icon {
  background: linear-gradient(
    135deg,
    #c9a456 0%,
    #e8c97a 40%,
    #c9a456 70%,
    #a8802e 100%
  );
  box-shadow: 0 8px 25px rgba(201, 164, 86, 0.3);
}

#concierge-services .concierge-card.featured-green .concierge-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(201, 164, 86, 0.4);
}

#concierge-services .concierge-card.featured-green h3 {
  color: #28a745;
  font-weight: 800;
}

#concierge-services .concierge-card.featured-green .concierge-features li i {
  color: #28a745;
}

/* Override green styles for External Services card to make it golden */
#concierge-services .concierge-card.featured .concierge-icon {
  background: linear-gradient(
    135deg,
    #c9a456 0%,
    #e8c97a 40%,
    #c9a456 70%,
    #a8802e 100%
  );
  box-shadow: 0 8px 25px rgba(201, 164, 86, 0.3);
}

#concierge-services .concierge-card.featured .concierge-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(201, 164, 86, 0.4);
}

/* Concierge Icon */
#concierge-services .concierge-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c5a36a 0%, #9e7e54 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

#concierge-services .concierge-card:hover .concierge-icon {
  transform: scale(1.1);
}

#concierge-services .concierge-icon i {
  font-size: 24px;
  color: #ffffff;
}

#concierge-services .concierge-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

#concierge-services .concierge-card p {
  font-size: 14px;
  color: #4b3b31;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Concierge Features List */
#concierge-services .concierge-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}

#concierge-services .concierge-features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
  color: #332619;
}

#concierge-services .concierge-features li i {
  color: #c5a36a;
  margin-right: 8px;
  font-size: 14px;
  flex-shrink: 0;
}

#concierge-services .concierge-features li span {
  line-height: 1.4;
}

/* CTA Section */
#concierge-services .concierge-cta {
  text-align: center;
  margin-top: 60px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border: 1px solid rgba(197, 163, 106, 0.2);
}

#concierge-services .concierge-cta p {
  font-size: 16px;
  color: #332619;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* #concierge-services .btn-primary handled by global .btn-primary alias */
#concierge-services .btn-primary {
  border-radius: var(--radius-full);
}

/* Responsive Design */
@media (max-width: 768px) {
  #concierge-services {
    padding: 60px 20px;
  }

  #concierge-services h2 {
    font-size: 32px;
  }

  #concierge-services .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  #concierge-services .concierge-card {
    padding: 30px 20px;
  }

  #concierge-services .concierge-icon {
    width: 60px;
    height: 60px;
  }

  #concierge-services .concierge-icon i {
    font-size: 24px;
  }

  #concierge-services .concierge-card h3 {
    font-size: 20px;
  }

  #concierge-services .concierge-cta {
    margin-top: 40px;
    padding: 30px 20px;
  }
}

/* Dark Mode */
.dark-mode #concierge-services {
  background: transparent;
}

.dark-mode #concierge-services .eyebrow-pill {
  background-color: rgba(201, 164, 86, 0.12);
  color: #c9a456;
  border: 1px solid rgba(201, 164, 86, 0.25);
}

.dark-mode #concierge-services h2 {
  color: #ffffff;
}

.dark-mode #concierge-services .section-subtitle {
  color: #b3b3b3;
}

.dark-mode #concierge-services .concierge-card {
  background: #1e1912;
  border-color: #3a2e1e;
}

.dark-mode #concierge-services .concierge-card:hover {
  box-shadow: 0 20px 50px rgba(180, 130, 60, 0.26);
}

/* Dark Mode for Featured Card */
.dark-mode #concierge-services .concierge-card.featured {
  background: linear-gradient(135deg, #1e1912 0%, #2a1f15 100%);
  border-color: #c9a456;
  box-shadow: 0 8px 40px rgba(201, 164, 86, 0.3);
}

.dark-mode #concierge-services .concierge-card.featured::before {
  background: linear-gradient(90deg, #c9a456, #e8c97a, #c9a456);
}

.dark-mode #concierge-services .concierge-card.featured:hover {
  box-shadow: 0 24px 60px rgba(201, 164, 86, 0.4);
}

.dark-mode #concierge-services .concierge-card.featured h3 {
  color: #c9a456;
}

.dark-mode
  #concierge-services
  .concierge-card.featured
  .concierge-features
  li
  i {
  color: #c9a456;
}

/* Dark Mode for Featured Green Card */
.dark-mode #concierge-services .concierge-card.featured-green {
  background: linear-gradient(135deg, #1e1912 0%, #1a2a1a 100%);
  border-color: #28a745;
  box-shadow: 0 8px 40px rgba(40, 167, 69, 0.3);
}

.dark-mode #concierge-services .concierge-card.featured-green::before {
  background: linear-gradient(90deg, #28a745, #34ce57, #28a745);
}

.dark-mode #concierge-services .concierge-card.featured-green:hover {
  box-shadow: 0 24px 60px rgba(40, 167, 69, 0.4);
}

.dark-mode #concierge-services .concierge-card.featured-green h3 {
  color: #28a745;
}

.dark-mode
  #concierge-services
  .concierge-card.featured-green
  .concierge-features
  li
  i {
  color: #28a745;
}

.dark-mode #concierge-services .concierge-card h3 {
  color: #ffffff;
}

.dark-mode #concierge-services .concierge-card p {
  color: #a0a0a0;
}

.dark-mode #concierge-services .concierge-features li {
  color: #b3b3b3;
}

.dark-mode #concierge-services .concierge-cta {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(201, 164, 86, 0.1);
}

.dark-mode #concierge-services .concierge-cta p {
  color: #a0a0a0;
}

/* ======================= MODAL STYLES ======================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #ffffff;
  border-radius: 20px;
  max-width: 900px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 36px;
  color: #6c757d;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #1a1008;
}

.modal-body {
  padding: 30px;
}

/* Outdoor Services Grid */
.outdoor-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(197, 163, 106, 0.15);
  border-color: #c5a36a;
  background: #ffffff;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #c5a36a 0%, #9e7e54 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  font-size: 32px;
  color: #ffffff;
}

.service-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1008;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-item p {
  font-size: 15px;
  color: #4b3b31;
  line-height: 1.6;
  margin: 0;
}

/* Key Features Section */
.key-features {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid #c5a36a;
}

.key-features h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1008;
  margin-bottom: 20px;
}

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

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #332619;
}

.features-list li i {
  color: #c5a36a;
  margin-right: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-header h3 {
    font-size: 24px;
  }

  .modal-close {
    font-size: 28px;
    width: 35px;
    height: 35px;
  }

  .modal-body {
    padding: 20px;
  }

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

  .service-item {
    padding: 20px 15px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 24px;
  }

  .service-item h4 {
    font-size: 18px;
  }

  .service-item p {
    font-size: 14px;
  }

  .key-features {
    padding: 20px;
  }

  .key-features h4 {
    font-size: 20px;
  }

  .features-list li {
    font-size: 14px;
  }
}

/* ======================= SIMPLE TAB NAVIGATION STYLES ======================= */
.service-tabs-simple {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  padding: 0 30px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 20px;
}

.tab-title {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 0;
}

.tab-title h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: #6c757d;
  margin: 0;
  transition: color 0.3s ease;
  text-align: center;
}

.tab-title.active h4 {
  color: #c5a36a;
}

.tab-title::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c5a36a, #d4b574);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-title.active::after {
  transform: scaleX(1);
}

.tab-title:hover h4 {
  color: #c5a36a;
}

/* Tab Content Styles */
.tab-content {
  padding: 0 30px 30px;
}

.tab-panel {
  display: none;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.tab-panel.active {
  display: block;
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Grid in Tabs */
.tab-panel .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.tab-panel .service-item {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tab-panel .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c5a36a, #d4b574);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-panel .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(197, 163, 106, 0.15);
  border-color: #c5a36a;
}

.tab-panel .service-item:hover::before {
  transform: scaleX(1);
}

.tab-panel .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #c5a36a 0%, #d4b574 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  transition: all 0.3s ease;
}

.tab-panel .service-item:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(197, 163, 106, 0.3);
}

.tab-panel .service-icon i {
  font-size: 28px;
}

.tab-panel .service-item h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1008;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.tab-panel .service-item:hover h5 {
  color: #c5a36a;
}

.tab-panel .service-item p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.tab-panel .service-item:hover p {
  color: #332619;
}

/* Simple Tab Responsive Design */
@media (max-width: 768px) {
  .service-tabs-simple {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 30px;
    align-items: center;
  }

  .tab-title {
    width: 100%;
    text-align: center;
  }

  .tab-title h4 {
    font-size: 20px;
  }

  .tab-content {
    padding: 0 20px 20px;
  }

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

  .tab-panel .service-item {
    padding: 20px 15px;
  }

  .tab-panel .service-icon {
    width: 60px;
    height: 60px;
  }

  .tab-panel .service-icon i {
    font-size: 24px;
  }

  .tab-panel .service-item h5 {
    font-size: 18px;
  }

  .tab-panel .service-item p {
    font-size: 13px;
  }
}

/* Simple Tab Dark Mode */
.dark-mode .service-tabs-simple {
  border-bottom-color: #3a3a3a;
}

.dark-mode .tab-title h4 {
  color: #b0b0b0;
}

.dark-mode .tab-title.active h4,
.dark-mode .tab-title:hover h4 {
  color: #c5a36a;
}

.dark-mode .tab-panel .service-item {
  background: #2a2a2a;
  border-color: #3a3a3a;
}

.dark-mode .tab-panel .service-item h5 {
  color: #ffffff;
}

.dark-mode .tab-panel .service-item p {
  color: #b0b0b0;
}

.dark-mode .tab-panel .service-item:hover p {
  color: #ffffff;
}

/* Modal Dark Mode */
.dark-mode .modal-overlay {
  background: rgba(0, 0, 0, 0.85);
}

.dark-mode .modal-content {
  background-color: #1e1e1e;
  border: 1px solid rgba(201, 164, 86, 0.1);
}

.dark-mode .modal-header {
  border-bottom-color: rgba(201, 164, 86, 0.1);
}

.dark-mode .modal-header h3 {
  color: #ffffff;
}

.dark-mode .modal-close {
  color: #a0a0a0;
}

.dark-mode .modal-close:hover {
  color: #c9a456;
}

.dark-mode .service-item {
  background: rgba(30, 30, 30, 0.8);
  border-color: rgba(201, 164, 86, 0.1);
}

.dark-mode .service-item:hover {
  background: #2a2a2a;
  border-color: rgba(201, 164, 86, 0.3);
}

.dark-mode .service-item h4 {
  color: #ffffff;
}

.dark-mode .service-item p {
  color: #a0a0a0;
}

.dark-mode .key-features {
  background: rgba(30, 30, 30, 0.8);
  border-left-color: #c9a456;
}

.dark-mode .key-features h4 {
  color: #ffffff;
}

.dark-mode .features-list li {
  color: #b3b3b3;
}

.dark-mode .features-list li i {
  color: #c9a456;
}

/* Enhanced Outdoor Icon */
#concierge-services .concierge-card:nth-child(2) .concierge-icon {
  background: linear-gradient(135deg, #c9a456 0%, #e8c97a 100%);
}

/* Enhanced Hover Effects for Outdoor Theme */
#concierge-services .concierge-card:nth-child(2):hover {
  box-shadow: 0 16px 40px rgba(40, 167, 69, 0.15);
}

#partners {
  background: var(--color-bg);
  padding: var(--section-padding);
}

#partners .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* eyebrow pill handled globally */

#partners h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

#partners .section-subtitle {
  font-size: 15px;
  color: #332619;
  margin-bottom: 64px;
  line-height: 1.6;
}

/* ── Grid ── */
#partners .partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Card ── */
#partners .partner-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 28px 36px;
  box-shadow: 0 2px 20px rgba(120, 80, 40, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  flex: 0 1 300px !important;
  max-width: 320px !important;
  margin: 15px !important;
}

#partners .partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(120, 80, 40, 0.13);
}

/* ── Logo circle ── */
#partners .logo-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #f2ede8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
  flex-shrink: 0;
}

#partners .logo-circle img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
}

/* placeholder initials when no img */
#partners .logo-circle .initials {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}

/* ── Partner name ── */
#partners .partner-name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin: 0 0 6px;
}

/* ── Partner desc ── */
#partners .partner-desc {
  font-size: 14px;
  color: #4b3b31;
  margin: 0;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  #partners .partners-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0 20px;
  }

  #partners h2 {
    font-size: 32px;
  }
}

/* =========================
   DARK MODE - PARTNERS ONLY
========================= */
.dark-mode #partners {
  background-color: #121212;
  color: #ffffff;
}

/* Eyebrow */
.dark-mode #partners .eyebrow-pill {
  background-color: rgba(201, 164, 86, 0.12);
  color: #c9a456;
  border: 1px solid rgba(201, 164, 86, 0.25);
}

/* Title */
.dark-mode #partners h2 {
  color: #ffffff;
}

/* Subtitle */
.dark-mode #partners .section-subtitle {
  color: #b3b3b3;
}

/* Grid */
.dark-mode #partners .partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  flex-wrap: nowrap;
  justify-content: center;
}

/* Card */
.dark-mode #partners .partner-card {
  background-color: #1e1e1e;
  border-radius: 14px;
  padding: 25px;
  max-width: 260px;
  width: 100%;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover */
.dark-mode #partners .partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
}

/* Logo circle */
.dark-mode #partners .logo-circle {
  background-color: #2a2a2a;
  border-radius: 50%;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Partner name */
.dark-mode #partners .partner-name {
  color: #ffffff;
  margin-top: 15px;
}

/* Description */
.dark-mode #partners .partner-desc {
  color: #a0a0a0;
}

/* Star */
.dark-mode #partners .initials {
  color: #c9a456;
}

#sdg {
  background: var(--color-bg-alt);
  padding: var(--section-padding);
}

#sdg .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

#sdg h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.01em;
}

/* ── 5 columns flat ── */
#sdg .sdg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: start;
  text-align: left;
}

/* ── Each item ── */
#sdg .sdg-item {
  padding: 0 20px 0 0;
  border-right: 1px solid #ebebeb;
  margin-right: 0;
}

#sdg .sdg-item:last-child {
  border-right: none;
  padding-right: 0;
}

#sdg .sdg-item:not(:first-child) {
  padding-left: 20px;
}

/* ── Header: number + label ── */
#sdg .sdg-head {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
}

#sdg .sdg-num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

#sdg .sdg-lbl {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.35;
  padding-top: 3px;
}

/* ── Icon ── */
#sdg .sdg-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
}

#sdg .sdg-icon svg {
  width: 100%;
  height: 100%;
}

/* ── Name ── */
#sdg .sdg-name {
  font-size: 15px;
  font-weight: 400;
  color: #1a1008;
  line-height: 1.5;
  margin: 0;
}

/* ── Goal colors ── */
.sdg-item.g3 .sdg-num,
.sdg-item.g3 .sdg-lbl {
  color: #4c9f38;
}
.sdg-item.g8 .sdg-num,
.sdg-item.g8 .sdg-lbl {
  color: #a21942;
}
.sdg-item.g9 .sdg-num,
.sdg-item.g9 .sdg-lbl {
  color: #fd6925;
}
.sdg-item.g11 .sdg-num,
.sdg-item.g11 .sdg-lbl {
  color: #fd9d24;
}
.sdg-item.g17 .sdg-num,
.sdg-item.g17 .sdg-lbl {
  color: #19486a;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #sdg .sdg-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 0;
  }
  #sdg .sdg-item {
    border-right: none;
    padding: 0 12px;
  }
}

@media (max-width: 580px) {
  #sdg .sdg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #sdg h2 {
    font-size: 26px;
  }
}

#testimonials {
  background: var(--color-bg-alt);
  padding: var(--section-padding);
}

#testimonials .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-accent);
  margin-bottom: 12px;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.testimonials-subtitle {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
}

/* ── Slider wrapper ── */
.testimonials-slider {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* ── Arrows ── */
.t-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #c9b89e;
  background: transparent;
  color: #8a6248;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.t-arrow:hover {
  border-color: #b89060;
  background: rgba(184, 144, 96, 0.08);
  color: #b89060;
}

/* ── Track ── */
.t-track {
  flex: 1;
  overflow: hidden;
}

/* ── Slide ── */
.t-slide {
  display: none;
  align-items: center;
  gap: 80px;
  text-align: left;
  animation: tFadeIn 0.4s ease;
}

.t-slide.active {
  display: flex;
}

@keyframes tFadeIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Text content ── */
.t-content {
  flex: 1;
}

.t-country {
  display: inline-block;
  background: #2c1a10;
  color: #f5ede0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.t-quote {
  font-size: 22px;
  font-weight: 400;
  color: #1e1009;
  line-height: 1.65;
  margin: 0 0 28px;
  font-style: normal;
}

.t-name {
  font-size: 17px;
  font-weight: 700;
  color: #1e1009;
  margin: 0 0 4px;
}

.t-role {
  font-size: 14px;
  color: #a89070;
  margin: 0;
}

/* ── Oval image ── */
.t-image-wrap {
  flex-shrink: 0;
}

.t-oval {
  max-width: 280px;
  width: 100%;
  height: 220px;
  border-radius: 50%;
  border: 4px solid #b89060;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Dots ── */
.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9b89e;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
}

.t-dot.active {
  background: #b89060;
  transform: scale(1.2);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .t-slide.active {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }
  .t-oval {
    max-width: 200px;
    width: 100%;
    height: 160px;
  }
  .t-quote {
    font-size: 18px;
  }
  .testimonials-title {
    font-size: 28px;
  }
  .t-arrow {
    display: none;
  }
}

/* ===================================
   DARK MODE GLOBAL (SOFT GRAY THEME)
=================================== */

/* Active le dark mode sur toute la page */
.dark-mode {
  background-color: #1a1a1a;
  color: #e0e0e0;
}

/* Tous les textes deviennent gris clair */
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6,
.dark-mode p,
.dark-mode span,
.dark-mode a,
.dark-mode li,
.dark-mode label,
.dark-mode blockquote {
  color: #e0e0e0 !important;
}

/* Sections / containers are transparent in dark mode — body provides the background */
.dark-mode section,
.dark-mode div,
.dark-mode header,
.dark-mode footer,
.dark-mode nav {
  background-color: transparent !important;
}

/* Cards / containers */
.dark-mode .container,
.dark-mode .t-slide,
.dark-mode .t-content,
.dark-mode .t-image-wrap {
  background-color: transparent !important;
}

/* Boutons */
.dark-mode button {
  background-color: #3a3a3a;
  color: #e0e0e0;
  border: 1px solid #4a4a4a;
  cursor: pointer;
}

.dark-mode button:hover {
  background-color: #4a4a4a;
}

/* Dots slider */
.dark-mode .t-dot {
  background-color: #e0e0e0;
  opacity: 0.6;
}

.dark-mode .t-dot.active {
  opacity: 1;
}

/* Images restent normales */
.dark-mode img {
  background-color: transparent !important;
}

/* Inputs */
.dark-mode input,
.dark-mode textarea {
  background-color: #3a3a3a;
  color: #e0e0e0;
  border: 1px solid #4a4a4a;
}

.dark-mode input:focus,
.dark-mode textarea:focus {
  border-color: #666;
  background-color: #4a4a4a;
}

/* Footer spécifique */
.dark-mode footer {
  background-color: #1a1a1a !important;
}

.dark-mode .footer-col h4 {
  color: #e0e0e0 !important;
}

.dark-mode .footer-col ul li a {
  color: #b0b0b0;
}

.dark-mode .footer-col ul li a:hover {
  color: #e0e0e0;
}

/* Contact form */
.dark-mode .contact-form-side {
  background-color: #2a2a2a !important;
  border: 1px solid #3a3a3a !important;
}

.dark-mode .form-group input,
.dark-mode .form-group textarea {
  background-color: #3a3a3a !important;
  border: 2px solid #4a4a4a !important;
  color: #e0e0e0 !important;
}

.dark-mode .form-group input:focus,
.dark-mode .form-group textarea:focus {
  border-color: #666 !important;
  background-color: #4a4a4a !important;
}

.dark-mode .form-group label {
  color: #b0b0b0 !important;
}

/* Info cards */
.dark-mode .info-card {
  background-color: #2a2a2a !important;
  border: 1px solid #3a3a3a !important;
}

/* Dark mode styling for phone flag dropdown in info card */
.dark-mode .info-card .su-flag-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-mode .info-card .su-flag-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.dark-mode .info-card .su-flag-dd {
  background: #333;
  border: 1px solid #555;
}

.dark-mode .info-card .su-flag-dd-search {
  border-bottom: 1px solid #555;
}

.dark-mode .info-card .su-flag-dd-search input {
  background: #444;
  border: 1px solid #666;
  color: #fff;
}

.dark-mode .info-card .su-flag-dd-search input::placeholder {
  color: #aaa;
}

/* Hide amCharts watermark in dark mode */
.dark-mode #chartdiv a[href*="amcharts.com"],
.dark-mode #chartdiv .am5-logo,
.dark-mode #chartdiv .am5-watermark {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.dark-mode .info-text h3 {
  color: #e0e0e0 !important;
}

.dark-mode .info-text p {
  color: #b0b0b0 !important;
}

/* Modal */
.dark-mode .modal-content {
  background-color: #2a2a2a !important;
  border: 1px solid #3a3a3a !important;
}

.dark-mode .modal-header {
  background-color: #3a3a3a !important;
}

.dark-mode .modal-body {
  color: #e0e0e0 !important;
}

/* Base map container styling */
#chartdiv {
  display: block;
  visibility: visible;
  opacity: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  z-index: 0;
  min-height: 180px;
  min-width: 100%;
  height: 180px;
  width: 100%;
}

/* Force map display in dark mode */
.dark-mode #chartdiv {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  position: relative !important;
  z-index: 0 !important;
  min-height: 180px !important;
  min-width: 100% !important;
  height: 180px !important;
  width: 100% !important;
}

/* Make map text visible in dark mode */
.dark-mode #chartdiv text,
.dark-mode #chartdiv tspan {
  fill: #000000 !important;
  color: #000000 !important;
  visibility: visible !important;
  display: block !important;
}

/* Force map labels to be visible */
.dark-mode #chartdiv g text,
.dark-mode #chartdiv g tspan,
.dark-mode #chartdiv .am5-label {
  fill: #000000 !important;
  color: #000000 !important;
  visibility: visible !important;
  display: block !important;
  opacity: 1 !important;
}

.dark-mode #chartdiv canvas,
.dark-mode #chartdiv svg {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Override ALL dark mode hiding for map */
.dark-mode #chartdiv *,
.dark-mode .footer-map *,
.dark-mode * #chartdiv,
.dark-mode * .footer-map {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 0 !important;
}

/* Force footer content above map in dark mode */
.dark-mode .footer-legal,
.dark-mode .footer-bottom,
.dark-mode footer {
  position: relative !important;
  z-index: 1000 !important;
}

.dark-mode .footer-legal a,
.dark-mode .footer-bottom p,
.dark-mode footer a,
.dark-mode footer p {
  position: relative !important;
  z-index: 1000 !important;
}

/* Force footer map section */
.dark-mode .footer-map {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 20px !important;
  margin: 20px 0 !important;
  position: relative !important;
  z-index: 0 !important;
}

/* Preserve map appearance exactly like light mode in dark mode */
.dark-mode #chartdiv {
  background: transparent !important;
}

/* FORCE IPACT ZONES TO BE VISIBLE IN DARK MODE - FINAL SOLUTION */
.dark-mode #chartdiv path,
.dark-mode #chartdiv polygon {
  fill: #ffffff !important;
  stroke: #999999 !important;
  stroke-width: 0.8px !important;
  opacity: 0.45 !important;
  visibility: visible !important;
  display: block !important;
}

/* Make IPACT zones specifically visible */
.dark-mode #chartdiv path:nth-child(1),
.dark-mode #chartdiv polygon:nth-child(1),
.dark-mode #chartdiv path:nth-child(2),
.dark-mode #chartdiv polygon:nth-child(2),
.dark-mode #chartdiv path:nth-child(3),
.dark-mode #chartdiv polygon:nth-child(3),
.dark-mode #chartdiv path:nth-child(4),
.dark-mode #chartdiv polygon:nth-child(4),
.dark-mode #chartdiv path:nth-child(5),
.dark-mode #chartdiv polygon:nth-child(5) {
  fill: #ffffff !important;
  opacity: 0.45 !important;
  visibility: visible !important;
}

/* Force text to be visible */
.dark-mode #chartdiv text,
.dark-mode #chartdiv tspan {
  fill: #000000 !important;
  color: #000000 !important;
  visibility: visible !important;
  display: block !important;
  font-size: 12px !important;
}

/* ===================== FOOTER RESPONSIVE ===================== */

/* Tablets - 1024px and below */
@media (max-width: 1024px) {
  footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .footer-content .footer-col:first-child {
    margin-right: 0;
  }

  .footer-col {
    flex: 1;
    min-width: 100%;
    max-width: 100%;
  }

  .footer-map {
    flex: 1;
    width: 100%;
    overflow: hidden;
    margin-right: 0;
    order: -1;
  }

  .footer-map #chartdiv {
    width: 100% !important;
    height: 300px !important;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-map h4 {
    margin-left: 0;
    text-align: center;
  }

  .footer-col h4 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-col ul {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  footer {
    padding: 2rem 0 1rem;
    font-size: 0.9rem;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-col {
    min-width: 100%;
    margin-bottom: 1.5rem;
  }

  .footer-map {
    order: -1;
  }

  .footer-map #chartdiv {
    width: 100% !important;
    height: 250px !important;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .footer-col ul li {
    margin-bottom: 0.6rem;
  }

  .footer-col ul li a {
    font-size: 0.85rem;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .footer-bottom {
    gap: 0.8rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }

  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .footer-legal a {
    font-size: 0.8rem;
    margin-left: 0;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  footer {
    padding: 1.5rem 0 0.8rem;
    font-size: 0.85rem;
  }

  .footer-content {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .footer-col ul li {
    margin-bottom: 0.5rem;
  }

  .footer-col ul li a {
    font-size: 0.85rem;
  }

  .footer-map #chartdiv {
    width: 100% !important;
    height: 200px !important;
  }

  .social-links {
    gap: 10px;
    margin-top: 0.8rem;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding-top: 1rem;
    gap: 0.8rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }

  .footer-legal a {
    font-size: 0.75rem;
  }
}

/* Dark mode responsive adjustments */
@media (max-width: 1024px) {
  .dark-mode footer {
    padding: 3rem 0 1.5rem;
  }

  .dark-mode .footer-map #chartdiv {
    width: 800% !important;
    height: 300px !important;
  }
}

@media (max-width: 768px) {
  .dark-mode footer {
    padding: 2rem 0 1rem;
  }

  .dark-mode .footer-map #chartdiv {
    width: 100% !important;
    height: 250px !important;
  }
}

@media (max-width: 480px) {
  .dark-mode footer {
    padding: 1.5rem 0 0.8rem;
  }

  .dark-mode .footer-map #chartdiv {
    width: 100% !important;
    height: 200px !important;
  }
}

/* ===================== CONTACT FORM & BACK TO TOP RESPONSIVE ===================== */

/* Tablets - 1024px and below */
@media (max-width: 1024px) {
  /* Back to Top Button */
  #backToTop {
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    font-size: 16px;
    padding: 10px 12px;
  }

  /* Contact Form */
  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
  }

  .contact-info-side {
    order: 2;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .info-card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-max-width: 250px;
    width: 100%;
  }

  .contact-form-side {
    order: 1;
    padding: 40px;
  }

  .form-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea {
    padding: 15px 18px;
    font-size: 15px;
  }

  .submit-btn {
    padding: 18px;
    font-size: 15px;
    margin-top: 12px;
  }

  /* Footer map responsive adjustments */
  .footer-map {
    margin-right: 40px;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  /* Back to Top Button */
  #backToTop {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 14px;
    padding: 8px 10px;
  }

  /* Contact Form */
  #contact {
    padding: 40px 15px;
  }

  .contact-wrapper {
    gap: 30px;
  }

  .contact-info-side {
    order: 2;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .info-card {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    padding: 20px;
  }

  .contact-form-side {
    order: 1;
    padding: 30px 25px;
  }

  .form-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 12px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .submit-btn {
    padding: 16px;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 12px;
  }

  /* Footer map mobile adjustments */
  .footer-map {
    margin-right: 20px;
  }

  .error {
    font-size: 11px;
    margin-top: 4px;
  }

  .form-response {
    margin-top: 15px;
    padding: 12px;
    font-size: 13px;
  }

  /* Verification Overlay */
  .verify-card {
    max-width: 350px;
    width: 100%;
    padding: 40px 35px 35px;
  }

  .verify-card h3 {
    font-size: 1.4rem;
  }

  .verify-card p {
    font-size: 0.9rem;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  /* Back to Top Button */
  #backToTop {
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 12px;
    padding: 6px 8px;
  }

  /* Contact Form */
  #contact {
    padding: 30px 10px;
  }

  .contact-wrapper {
    gap: 20px;
  }

  .info-card {
    padding: 15px;
  }

  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 18px;
    border-radius: 14px;
  }

  .info-text h3 {
    font-size: 16px;
  }

  .info-text p {
    font-size: 14px;
  }

  .contact-form-side {
    padding: 25px 20px;
  }

  .form-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 10px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .submit-btn {
    padding: 14px;
    font-size: 13px;
    margin-top: 8px;
    border-radius: 10px;
  }

  .error {
    font-size: 10px;
    margin-top: 3px;
  }

  .form-response {
    margin-top: 12px;
    padding: 10px;
    font-size: 12px;
  }

  /* Verification Overlay */
  #verifyOverlay {
    top: 10px;
    right: 10px;
  }

  .verify-card {
    max-width: 300px;
    width: 100%;
    padding: 30px 25px 25px;
  }

  .verify-card h3 {
    font-size: 1.2rem;
  }

  .verify-card p {
    font-size: 0.85rem;
  }

  .verify-spinner-ring {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}

/* Dark mode responsive adjustments */
@media (max-width: 1024px) {
  .dark-mode #backToTop {
    background-color: #d8c196;
    color: black;
  }

  .dark-mode #backToTop:hover {
    background-color: #524427;
    color: wheat;
  }

  .dark-mode .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .dark-mode .contact-form-side {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .dark-mode .contact-wrapper {
    gap: 30px;
  }

  .dark-mode .contact-form-side {
    padding: 30px 25px;
  }

  .dark-mode #backToTop {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .dark-mode .contact-wrapper {
    gap: 20px;
  }

  .dark-mode .contact-form-side {
    padding: 25px 20px;
  }

  .dark-mode #backToTop {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

/* ===================== COOKIE CONSENT STYLING ===================== */
.su-cookie-consent {
  margin: 20px 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: #333;
}

.su-cookie-consent .su-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.su-cookie-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 2px; /* aligne avec le texte */
  flex-shrink: 0;
}

.su-cookie-consent input[type="checkbox"]:checked {
  background-color: #007bff; /* couleur pro bleue */
  border-color: #007bff;
}

.su-cookie-consent input[type="checkbox"]:checked::after {
  content: "✔";
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.su-cookie-consent span {
  text-transform: none;
  line-height: 1.4;
  flex: 1;
  color: #555;
}

.su-cookie-consent .su-field-error {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #e74c3c; /* rouge pour erreur */
  min-height: 18px; /* pour éviter le saut de layout */
}

/* Hover effect */
.su-cookie-consent .su-checkbox-wrap:hover input[type="checkbox"] {
  border-color: #007bff;
}

.terms-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(245, 243, 239, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--primary-color, #3d352a);
  padding: 0.9rem 1.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(61, 53, 42, 0.12);
  border: 1px solid rgba(184, 154, 122, 0.25);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.85rem;
  font-family: var(
    --body-font,
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif
  );
  max-width: 90vw;
  width: auto;
  box-sizing: border-box;
}

.terms-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.terms-toast button {
  background: linear-gradient(135deg, var(--accent-color, #b89a7a), #a88b6b);
  color: #fff;
  border: none;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 70px;
  touch-action: manipulation;
  box-shadow: 0 2px 8px rgba(184, 154, 122, 0.25);
}

.terms-toast button:hover {
  background: linear-gradient(135deg, #a88b6b, #967c5f);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 154, 122, 0.35);
}

.terms-toast button:active {
  transform: translateY(0);
}

/* Mobile responsive cookie banner */
@media (max-width: 768px) {
  .terms-toast {
    bottom: 15px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(100px);
    padding: 0.75rem 1.2rem;
    font-size: 0.8rem;
    max-width: calc(100vw - 40px);
    gap: 0.8rem;
    border-radius: 40px;
  }

  .terms-toast.show {
    transform: translateX(-50%) translateY(0);
  }

  .terms-toast button {
    padding: 0.45rem 1rem;
    font-size: 0.75rem;
    min-width: 65px;
  }
}

@media (max-width: 480px) {
  .terms-toast {
    bottom: 12px;
    left: 15px;
    right: 15px;
    transform: translateY(100px);
    padding: 0.7rem 1rem;
    font-size: 0.78rem;
    max-width: none;
    width: auto;
    border-radius: 30px;
    gap: 0.6rem;
  }

  .terms-toast.show {
    transform: translateY(0);
  }

  .terms-toast span {
    line-height: 1.3;
    flex: 1;
  }

  .terms-toast button {
    padding: 0.4rem 0.9rem;
    font-size: 0.72rem;
    min-width: 60px;
  }
}

/* Dark mode cookie banner */
body.dark-mode .terms-toast {
  background: rgba(45, 45, 45, 0.95);
  color: #f5f3ef;
  border: 1px solid rgba(184, 154, 122, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .terms-toast button {
  background: linear-gradient(135deg, var(--accent-color, #b89a7a), #a88b6b);
  color: #ffffff;
}

body.dark-mode .terms-toast button:hover {
  background: linear-gradient(135deg, #a88b6b, #967c5f);
  box-shadow: 0 4px 12px rgba(184, 154, 122, 0.4);
}

/* Required asterisk - inherit label color by default */
.required-asterisk {
  color: inherit !important;
  font-size: 1.2em !important;
  font-weight: bold !important;
  display: inline-block !important;
  margin-left: 2px !important;
  margin-right: 0 !important;
  vertical-align: super !important;
  position: static !important;
  line-height: 1 !important;
  z-index: auto !important;
  pointer-events: none !important;
  background: none !important;
  background-color: transparent !important;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
}

/* Error state - asterisks turn red when parent has has-error class */
.su-group.has-error .required-asterisk,
.form-group.has-error .required-asterisk,
.su-cookie-consent.has-error .required-asterisk,
.su-group.has-error label .required-asterisk,
.form-group.has-error label .required-asterisk {
  color: #ff0000 !important;
}

/* STABLE ASTERISK POSITIONING FOR LABELS */
.su-group label .required-asterisk,
.form-group label .required-asterisk,
#contactForm label .required-asterisk,
#signupForm label .required-asterisk {
  display: inline !important;
  position: static !important;
  vertical-align: baseline !important;
  margin-left: 3px !important;
  margin-right: 0 !important;
  font-size: 1.1em !important;
  line-height: 1 !important;
  color: inherit !important;
  font-weight: bold !important;
  pointer-events: none !important;
  white-space: nowrap !important;
}

/* ULTRA SPECIFIC SIGNUP SECTION TARGETING */
#signupForm .required-asterisk,
.signup-card .required-asterisk,
section#signup .required-asterisk,
section#signup .su-group label .required-asterisk,
section#signup .su-logo-label .required-asterisk,
section#signup .su-stars-label .required-asterisk,
section#signup .form-blur-wrapper .required-asterisk,
#signupForm .required-asterisk,
.signup-inner .required-asterisk,
.signup-card .required-asterisk {
  color: inherit !important;
  font-size: 1.5em !important;
  font-weight: 900 !important;
  background-color: transparent !important;
  display: inline !important;
  position: static !important;
  z-index: auto !important;
}

/* RED ASTERISKS IN PLACEHOLDERS */
#signup input::placeholder,
#signupForm input::placeholder,
section#signup input::placeholder {
  color: #333 !important;
}

#signup input[placeholder*="*"]::placeholder,
#signupForm input[placeholder*="*"]::placeholder,
section#signup input[placeholder*="*"]::placeholder {
  color: #ff0000 !important;
  font-weight: bold !important;
}

/* For browsers that don't support ::placeholder with attribute selector */
#signup input,
#signupForm input,
section#signup input {
  color: #333 !important;
}

#signup input::-webkit-input-placeholder,
#signupForm input::-webkit-input-placeholder,
section#signup input::-webkit-input-placeholder {
  color: #333 !important;
}

#signup input[placeholder*="*"]::-webkit-input-placeholder,
#signupForm input[placeholder*="*"]::-webkit-input-placeholder,
section#signup input[placeholder*="*"]::-webkit-input-placeholder {
  color: #ff0000 !important;
  font-weight: bold !important;
}

#signup input::-moz-placeholder,
#signupForm input::-moz-placeholder,
section#signup input::-moz-placeholder {
  color: #333 !important;
}

#signup input[placeholder*="*"]::-moz-placeholder,
#signupForm input[placeholder*="*"]::-moz-placeholder,
section#signup input[placeholder*="*"]::-moz-placeholder {
  color: #ff0000 !important;
  font-weight: bold !important;
}

#signup input:-ms-input-placeholder,
#signupForm input:-ms-input-placeholder,
section#signup input:-ms-input-placeholder {
  color: #333 !important;
}

#signup input[placeholder*="*"]:-ms-input-placeholder,
#signupForm input[placeholder*="*"]:-ms-input-placeholder,
section#signup input[placeholder*="*"]:-ms-input-placeholder {
  color: #ff0000 !important;
  font-weight: bold !important;
}

/* RED ASTERISKS POSITIONED INSIDE INPUTS */
.su-group {
  position: static;
}

.su-group .input-asterisk {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: inherit !important;
  font-size: 1.2em !important;
  font-weight: bold !important;
  pointer-events: none;
  background: white;
  padding: 0 2px;
}

/* COOKIE CONSENT ASTERISK - NO SPACING */
.su-cookie-consent .required-asterisk {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: inline !important;
  vertical-align: baseline !important;
  line-height: 1 !important;
}

/* ============================================================
         FINAL RED ASTERISK ENFORCEMENT - MAXIMUM PRIORITY
         ============================================================ */

/* Default asterisk styling - inherits label color */
html body section#signup .su-group label span.required-asterisk,
html body section#signup .su-logo-label span.required-asterisk,
html body section#signup .su-stars-label span.required-asterisk,
html body #signupForm .required-asterisk,
html body .signup-card .required-asterisk,
html body .su-group .required-asterisk,
html body .su-logo-label .required-asterisk,
html body .su-stars-label .required-asterisk,
html body body .required-asterisk,
html body html .required-asterisk,
html body * .required-asterisk,
html body span[class*="required-asterisk"] {
  color: inherit !important;
  font-size: 1.5em !important;
  font-weight: 900 !important;
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
  background-color: transparent !important;
  text-shadow: none !important;
  filter: none !important;
  position: static !important;
  z-index: auto !important;
}

/* ULTRA MAXIMUM PRIORITY - UNIVERSAL ASTERISK ENFORCEMENT */
* [class*="required-asterisk"] {
  color: inherit !important;
  font-size: 1.5em !important;
  font-weight: 900 !important;
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
  background-color: transparent !important;
}

/* SIMPLE DIRECT ASTERISK RULE - inherits color by default */
#signupForm label span.required-asterisk,
.su-group label span.required-asterisk,
html body section#signup .su-group label span.required-asterisk,
html body section#signup .su-logo-label span.required-asterisk,
html body section#signup .su-stars-label span.required-asterisk,
html body #signupForm .required-asterisk,
html body .signup-card .required-asterisk,
html body .su-group .required-asterisk,
html body .su-logo-label .required-asterisk,
html body .su-stars-label .required-asterisk,
span[class*="required-asterisk"] {
  color: inherit !important;
  font-size: 1.5em !important;
  font-weight: bold !important;
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: none !important;
  background-color: transparent !important;
  text-shadow: none !important;
  filter: none !important;
  position: static !important;
  z-index: auto !important;
}

/* OVERRIDE: Red asterisk when parent has error */
.su-group.has-error .required-asterisk,
.form-group.has-error .required-asterisk,
.su-group.has-error label .required-asterisk,
.form-group.has-error label .required-asterisk,
.su-cookie-consent.has-error .required-asterisk {
  color: #ff0000 !important;
}
.property-type-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.property-type-container select {
  width: 100%;
  padding: 0.48rem 0.75rem;
  border: 1.5px solid #e2d9cc;
  border-radius: 9px;
  background: #ffffff;
  font-size: 0.68rem;
  font-family: var(--body-font);
  color: #5d4037;
  outline: none;
  transition: all 0.3s ease;
  height: 36px;
  box-sizing: border-box;
}

.property-type-container select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(184, 154, 122, 0.13);
}

.property-type-container select.input-error {
  border-color: #e74c3c;
  background: #fff8f8;
  animation: suShake 0.32s ease;
}

.property-type-container input[type="text"] {
  width: 100%;
  padding: 0.48rem 0.75rem;
  border: 1.5px solid #e2d9cc;
  border-radius: 9px;
  background: #ffffff;
  font-size: 0.68rem;
  font-family: var(--body-font);
  color: var(--primary-color);
  outline: none;
  transition: all 0.3s ease;
  height: 36px;
  box-sizing: border-box;
}

.property-type-container input[type="text"]:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(184, 154, 122, 0.13);
}

.property-type-container input[type="text"].input-error {
  border-color: #e74c3c;
  background: #fff8f8;
  animation: suShake 0.32s ease;
}

/* Subcategory and Other container animations */
#subcategoryContainer,
#otherCategoryContainer {
  animation: suFadeUp 0.28s ease;
}

/* Dark mode support */
.dark-mode .property-type-container select,
.dark-mode .property-type-container input[type="text"] {
  background: rgba(104, 76, 55, 0.6);
  border-color: rgba(197, 163, 106, 0.3);
  color: #fff;
}

.dark-mode .property-type-container select:focus,
.dark-mode .property-type-container input[type="text"]:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(197, 163, 106, 0.2);
}

/* ============================================================
         MANUAL "OTHER" INPUT FIELDS STYLING
      ============================================================ */
#manualCategoryContainer,
#manualSubcategoryContainer {
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: #f8f6f3;
  border: 1.5px dashed #c5a36a;
  border-radius: 8px;
  position: relative;
}

#manualCategoryContainer::before,
#manualSubcategoryContainer::before {
  content: "✏️ Custom Input";
  position: absolute;
  top: -10px;
  left: 12px;
  background: #f8f6f3;
  padding: 0 8px;
  font-size: 0.6rem;
  color: #c5a36a;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#manualCategoryInput,
#manualSubcategoryInput {
  width: 100%;
  padding: 0.35rem 0.6rem !important;
  border: 1px solid #d4c4a8 !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  font-size: 0.62rem !important;
  font-family: var(--body-font);
  color: #5d4037 !important;
  outline: none;
  transition: all 0.2s ease;
  height: 28px !important;
  box-sizing: border-box;
  font-style: italic;
}

#manualCategoryInput:focus,
#manualSubcategoryInput:focus {
  border-color: #c5a36a !important;
  box-shadow: 0 0 0 2px rgba(197, 163, 106, 0.15) !important;
  background: #fffef9 !important;
  font-style: normal;
}

#manualCategoryInput::placeholder,
#manualSubcategoryInput::placeholder {
  color: #a0998f !important;
  font-style: italic;
  font-size: 0.58rem;
}

#manualCategoryInput.input-error,
#manualSubcategoryInput.input-error {
  border-color: #e74c3c !important;
  background: #fff8f8 !important;
  animation: suShake 0.32s ease;
}

/* Dark mode for manual input fields */
.dark-mode #manualCategoryContainer,
.dark-mode #manualSubcategoryContainer {
  background: rgba(104, 76, 55, 0.3);
  border-color: rgba(197, 163, 106, 0.5);
}

.dark-mode #manualCategoryContainer::before,
.dark-mode #manualSubcategoryContainer::before {
  background: rgba(104, 76, 55, 0.3);
  color: #e8c97a;
}

.dark-mode #manualCategoryInput,
.dark-mode #manualSubcategoryInput {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #5d4037 !important;
}

.dark-mode #manualCategoryInput:focus,
.dark-mode #manualSubcategoryInput:focus {
  background: #ffffff !important;
  border-color: #e8c97a !important;
  box-shadow: 0 0 0 2px rgba(232, 201, 122, 0.2) !important;
}

/* ============================================================
   SERVICES POPUP STYLES
   ============================================================ */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #ffffff;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e8e8e8;
  background: linear-gradient(135deg, #9e7e54 0%, #7a5c38 100%);
  color: white;
}

.popup-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.popup-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.popup-body {
  padding: 0;
  max-height: calc(80vh - 80px);
  overflow-y: auto;
}

/* Password Modal Specific Styles */
.password-modal-content {
  max-width: 420px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

.password-modal-content .popup-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%) !important;
  padding: 18px 24px !important;
  border-radius: 16px 16px 0 0 !important;
  border-bottom: none !important;
}

.password-modal-content .popup-header h3 {
  color: white !important;
  margin: 0 !important;
  font-family: "Playfair Display", serif !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
}

.password-modal-body {
  padding: 24px 32px !important;
  max-height: none !important;
  overflow: visible !important;
}

.password-desc {
  margin: 0 0 20px 0 !important;
  font-size: 0.9rem !important;
  color: #6c757d !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

.password-form-group {
  margin-bottom: 16px !important;
}

.password-form-group label {
  display: block !important;
  margin-bottom: 8px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  color: #444 !important;
  text-align: center !important;
}

.password-input-wrapper {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

.password-field {
  width: 100% !important;
  padding: 12px 44px 12px 14px !important;
  border: 1.5px solid #e2d9cc !important;
  border-radius: 8px !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  font-size: 1rem !important;
  background: #fff !important;
  color: #333 !important;
  box-sizing: border-box !important;
}

.password-field:focus {
  border-color: #b89a7a !important;
}

.password-toggle-btn {
  position: absolute !important;
  right: 12px !important;
  background: transparent !important;
  border: none !important;
  color: #999 !important;
  cursor: pointer !important;
  padding: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: color 0.2s !important;
  font-size: 1rem !important;
}

.password-toggle-btn:hover {
  color: #b89a7a !important;
}

.password-toggle-btn i {
  font-size: 1rem !important;
}

.password-error {
  display: none !important;
  margin-top: 12px !important;
  padding: 10px 14px !important;
  background-color: #fff5f5 !important;
  color: #e74c3c !important;
  border-radius: 6px !important;
  font-size: 0.85rem !important;
  border-left: 3px solid #e74c3c !important;
  text-align: center !important;
}

.password-submit-btn {
  width: 100% !important;
  margin-top: 24px !important;
  background: linear-gradient(135deg, #b89a7a 0%, #8e735b 100%) !important;
  color: white !important;
  border: none !important;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition:
    transform 0.2s,
    box-shadow 0.2s !important;
  box-shadow: 0 4px 15px rgba(184, 154, 122, 0.3) !important;
  font-size: 0.95rem !important;
}

.password-submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(184, 154, 122, 0.4) !important;
}

.password-submit-btn:active {
  transform: translateY(0) !important;
}

/* Service Tabs */
.service-tabs {
  display: flex;
  background: #f8f9fa;
  border-bottom: 1px solid #e8e8e8;
}

.service-tab {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
}

.service-tab:hover {
  background: rgba(158, 126, 84, 0.1);
  color: #9e7e54;
}

.service-tab.active {
  background: #9e7e54;
  color: white;
  border-bottom: 3px solid #7a5c38;
}

.service-tab i {
  font-size: 1.2rem;
}

/* Tab Content Container */
.tab-content-container {
  padding: 24px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel h4 {
  color: #9e7e54;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

/* Service List */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Service Row */
.service-row {
  display: flex;
  gap: 16px;
}

/* Service Column */
.service-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #9e7e54;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.service-item:hover {
  background: rgba(158, 126, 84, 0.1);
  transform: translateY(-2px);
}

.service-item i {
  color: #9e7e54;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 2px;
}

.service-info {
  flex: 1;
}

.service-info h5 {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-info p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Dark mode styles for popup */
.dark-mode .popup-content {
  background: #2c2416;
  color: #e8e8e8;
}

.dark-mode .popup-header {
  background: linear-gradient(135deg, #7a5c38 0%, #5d4037 100%);
}

.dark-mode .popup-body {
  background: #2c2416;
}

.dark-mode .service-tabs {
  background: #1a1410;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .service-tab {
  color: #e8e8e8;
}

.dark-mode .service-tab:hover {
  background: rgba(232, 201, 122, 0.1);
  color: #e8c97a;
}

.dark-mode .service-tab.active {
  background: #7a5c38;
  color: white;
  border-bottom-color: #5d4037;
}

.dark-mode .tab-content-container {
  background: #2c2416;
}

.dark-mode .tab-panel h4 {
  color: #e8c97a;
}

.dark-mode .service-item {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: #e8c97a;
}

.dark-mode .service-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dark-mode .service-item i {
  color: #e8c97a;
}

.dark-mode .service-info h5 {
  color: #e8e8e8;
}

.dark-mode .service-info p {
  color: #b8b8b8;
}

/* ============================================================
   ENHANCED SERVICE SECTIONS STYLES
   ============================================================ */

/* Business Benefits Section */
.service-benefits {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-benefits h5 {
  color: #9e7e54;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.service-benefits h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #9e7e54, #7a5c38);
  border-radius: 2px;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(158, 126, 84, 0.15);
  border-color: #9e7e54;
}

.benefit-item i {
  color: #9e7e54;
  font-size: 1.8rem;
  background: rgba(158, 126, 84, 0.1);
  padding: 12px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.benefit-item:hover i {
  background: #9e7e54;
  color: white;
  transform: scale(1.1);
}

.benefit-item span {
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* UI Suggestions Section */
.service-ui {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-ui h5 {
  color: #9e7e54;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.service-ui h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #9e7e54, #7a5c38);
  border-radius: 2px;
}

.ui-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.ui-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ui-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #9e7e54, #7a5c38);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.ui-feature-item:hover::before {
  transform: scaleY(1);
}

.ui-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(158, 126, 84, 0.15);
  border-color: #9e7e54;
}

.ui-feature-item i {
  color: #9e7e54;
  font-size: 1.6rem;
  background: rgba(158, 126, 84, 0.08);
  padding: 10px;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ui-feature-item:hover i {
  background: linear-gradient(135deg, #9e7e54, #7a5c38);
  color: white;
  transform: scale(1.05);
}

.ui-feature-item span {
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Goals Section */
.service-goals {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-goals h5 {
  color: #9e7e54;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.service-goals h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #9e7e54, #7a5c38);
  border-radius: 2px;
}

.goals-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.goal-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.goal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(158, 126, 84, 0.12);
  border-color: #9e7e54;
}

.goal-number {
  background: linear-gradient(135deg, #9e7e54, #7a5c38);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(158, 126, 84, 0.3);
}

.goal-item span:last-child {
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Dark Mode Styles for Enhanced Sections */
.dark-mode .service-benefits {
  background: linear-gradient(135deg, #1a1410 0%, #2c2416 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .service-benefits h5 {
  color: #e8c97a;
}

.dark-mode .benefit-item {
  background: #2c2416;
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .benefit-item span {
  color: #e8e8e8;
}

.dark-mode .service-ui {
  background: linear-gradient(135deg, #2c2416 0%, #1a1410 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .service-ui h5 {
  color: #e8c97a;
}

.dark-mode .ui-feature-item {
  background: #2c2416;
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .ui-feature-item span {
  color: #e8e8e8;
}

.dark-mode .service-goals {
  background: linear-gradient(135deg, #1a1410 0%, #2c2416 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .service-goals h5 {
  color: #e8c97a;
}

.dark-mode .goal-item {
  background: #2c2416;
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .goal-item span:last-child {
  color: #e8e8e8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    max-height: 90vh;
  }

  .popup-header {
    padding: 16px 20px;
  }

  .popup-body {
    padding: 20px;
  }

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

  .popup-header h3 {
    font-size: 1.2rem;
  }

  .benefits-grid,
  .ui-features,
  .goals-list {
    grid-template-columns: 1fr;
  }

  /* Service Tabs Responsive */
  .service-tabs {
    flex-direction: column;
  }

  .service-tab {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .service-tab i {
    font-size: 1rem;
  }

  /* Service Row Responsive */
  .service-row {
    flex-direction: column;
    gap: 12px;
  }

  .service-column {
    padding: 12px;
  }

  .service-item {
    padding: 10px;
  }

  .service-item i {
    font-size: 1.2rem;
  }

  .service-info h5 {
    font-size: 1rem;
  }

  .service-info p {
    font-size: 0.9rem;
  }

  /* Tab Content Container */
  .tab-content-container {
    padding: 16px;
  }

  .tab-panel h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .popup-content {
    width: 98%;
    max-height: 95vh;
    border-radius: 8px;
  }

  .popup-header {
    padding: 12px 16px;
  }

  .popup-header h3 {
    font-size: 1rem;
  }

  .popup-close {
    font-size: 1.8rem;
    width: 28px;
    height: 28px;
  }

  .popup-body {
    padding: 16px;
  }

  /* Service Tabs */
  .service-tabs {
    flex-direction: column;
  }

  .service-tab {
    padding: 10px 12px;
    font-size: 0.8rem;
    gap: 6px;
  }

  .service-tab i {
    font-size: 0.9rem;
  }

  /* Service Row */
  .service-row {
    flex-direction: column;
    gap: 10px;
  }

  .service-column {
    padding: 10px;
    border-left-width: 3px;
  }

  .service-item {
    padding: 8px;
    gap: 10px;
  }

  .service-item i {
    font-size: 1.1rem;
  }

  .service-info h5 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .service-info p {
    font-size: 0.85rem;
  }

  /* Tab Content */
  .tab-content-container {
    padding: 12px;
  }

  .tab-panel h4 {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  /* Benefits, UI, Goals */
  .service-benefits,
  .service-ui,
  .service-goals {
    padding: 12px;
    margin-top: 16px;
  }

  .benefit-item,
  .ui-feature-item,
  .goal-item {
    padding: 10px;
    gap: 8px;
  }

  .benefit-item i,
  .ui-feature-item i {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .goal-number {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .popup-content {
    width: 100%;
    max-height: 98vh;
    border-radius: 0;
  }

  .popup-header {
    padding: 10px 12px;
  }

  .popup-header h3 {
    font-size: 0.95rem;
  }

  .popup-close {
    font-size: 1.5rem;
    width: 24px;
    height: 24px;
  }

  .popup-body {
    padding: 12px;
  }

  /* Service Tabs */
  .service-tab {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .service-tab i {
    font-size: 0.85rem;
  }

  /* Service Column */
  .service-column {
    padding: 8px;
  }

  .service-item {
    padding: 6px;
    gap: 8px;
  }

  .service-item i {
    font-size: 1rem;
  }

  .service-info h5 {
    font-size: 0.9rem;
  }

  .service-info p {
    font-size: 0.8rem;
  }

  /* Tab Content */
  .tab-content-container {
    padding: 10px;
  }

  .tab-panel h4 {
    font-size: 0.95rem;
  }

  /* Benefits, UI, Goals */
  .service-benefits,
  .service-ui,
  .service-goals {
    padding: 10px;
    margin-top: 12px;
  }

  .benefit-item,
  .ui-feature-item,
  .goal-item {
    padding: 8px;
    gap: 6px;
  }

  .benefit-item i,
  .ui-feature-item i {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .goal-number {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }
}

/* ============================================================ */
/* RESPONSIVE FLUID OVERRIDES (MOBILE-FIRST PRINCIPLES) */
/* ============================================================ */

/* Fluid Typography */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem) !important;
}
h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
  line-height: 1.5;
}

p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

/* Flex & Grid Adjustments */
.grid-3,
.benefits-grid,
.packs-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 2rem !important;
  justify-content: center !important;
  align-items: flex-start !important;
}

.partners-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
}

/* Touch Targets for Mobile (min 44x44) */
@media (max-width: 768px) {
  button,
  .cta-button,
  .btn-pack,
  nav ul li a,
  .su-btn-next,
  .su-btn-back,
  .su-flag-btn,
  select,
  input,
  .service-tab {
    min-height: 44px !important;
    min-width: 44px !important;
  }

  /* Ensure header layout handles mobile sizes well */
  header .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Responsive Containers & Removal of Absolute Constraints */
.container {
  width: 100% !important;
  max-width: 1440px !important;
  padding: 0 16px !important; /* 8px base grid */
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px !important;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.su-step-indicator {
  flex-wrap: wrap; /* Ensure signup form steps fit */
}

/* Fix any overflowing absolute layout issues */
body {
  overflow-x: hidden;
}

/* Ensure images don't stretch */
.benefits-image {
  transform: none !important;
  margin-left: 0 !important;
  width: 100% !important;
  height: auto !important;
}

/* ============================================================ */
/* CONTACT US RESPONSIVE FIXES */
/* ============================================================ */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column !important;
    gap: 30px !important;
  }
  .contact-info-side,
  .contact-form-side {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }
  .contact-form-side .su-row {
    flex-direction: column !important;
    gap: 15px !important;
  }
  .contact-form-side .form-group {
    width: 100% !important;
    margin-bottom: 0 !important;
  }
}

/* ============================================================ */
/* PARTNERS GRID RESPONSIVE FIXES */
/* ============================================================ */
@media (max-width: 1024px) {
  #partners .partners-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 600px) {
  #partners .partners-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  #partners .partner-card {
    padding: 20px !important;
  }
  #partners .logo-circle {
    width: 140px !important;
    height: 140px !important;
    margin-bottom: 15px !important;
  }
  #partners .logo-circle img {
    width: 140px !important;
    height: 140px !important;
  }
}

/* ============================================================ */
/* FINAL AUDIT RESPONSIVE FIXES (FOOTER, SIGNUP) */
/* ============================================================ */
@media (max-width: 900px) {
  /* Ensure footer columns wrap correctly */
  .footer-content {
    flex-wrap: wrap !important;
    gap: 30px !important;
  }
  .footer-col {
    flex: 1 1 100% !important;
    min-width: 100% !important;
  }

  /* Ensure signup rows stack on mobile */
  .su-row,
  .su-row2 {
    flex-direction: column !important;
    gap: 15px !important;
  }
  .su-group {
    width: 100% !important;
  }
}

@media (max-width: 600px) {
  /* Smaller header button for tiny screens */
  header .cta-button {
    padding: 0.5rem 1rem !important;
    font-size: 0.75rem !important;
  }

  /* Ensure language dropdown doesn't overflow */
  .lang-dropdown {
    right: -20px !important;
  }
}

/* ============================================================ */
/* THE DEFINITIVE GLOBAL RESPONSIVE GUARDRAILS */
/* ============================================================ */
/* 
 * ROOT CAUSE FIX: The theme originally lacked a global box-sizing reset. 
 * Any element with width:100% and horizontal padding was expanding past 100%, 
 * causing horizontal scrolling or clipping (cut view) on mobile devices! 
 */
*,
*::before,
*::after {
  box-sizing: border-box !important;
}

html,
body {
  /* Prevent any accidental horizontal overflow */
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  /* Fix inline white-space: nowrap in the footer causing the page to stretch */
  footer div,
  .footer-col div,
  .footer-col a {
    white-space: normal !important;
  }

  /* Additional safety to ensure text elements wrap seamlessly */
  .contact-info li,
  a,
  p,
  span,
  h1,
  h2,
  h3,
  h4,
  .info-card {
    white-space: normal !important;
    word-break: break-word; /* Allows long links/emails to break */
  }

  /* Secure all images against blowing up containers */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* ============================================================ */
/* FOOTER MOBILE UI/UX ENHANCEMENTS */
/* ============================================================ */
@media (max-width: 900px) {
  /* Center align everything in the footer columns */
  .footer-col {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 2rem !important;
  }

  /* Center unordered lists and contact info */
  .footer-col ul,
  .contact-info {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .footer-col li {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    flex-wrap: wrap !important;
  }

  /* Tame the explicit inline styles separating flags from numbers */
  .footer-col li > div {
    justify-content: center !important; /* Overrides space-between */
    width: auto !important; /* Overrides width: 100% */
    gap: 12px !important;
  }

  /* Tame the flag container margin-left auto */
  .footer-col li > div > div {
    margin-left: 0 !important;
    width: auto !important;
    text-align: left !important;
  }

  /* Prevent logo from blowing up excessively */
  .footer-col .logo {
    justify-content: center !important;
  }
  .footer-col .logo img {
    height: 40px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    margin-right: 10px !important;
  }

  /* Maintain clean text flow for company description */
  .footer-col p {
    text-align: center !important;
    max-width: 400px !important;
  }

  /* Let links wrap properly but keep phone numbers secure */
  .footer-col a {
    white-space: nowrap !important; /* Protects phone structure */
  }

  /* Keep social links neatly spaced and centered */
  .footer-col ul li a {
    justify-content: center !important;
  }
}

/* ============================================================ */
/* EXPLICIT FOOTER CONTENT CONTAINER CENTERING */
/* ============================================================ */
@media (max-width: 900px) {
  .footer-content {
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
    text-align: center !important;
  }
}

/* ============================================================ */
/* FOOTER MARGIN OVERFLOW FIX */
/* ============================================================ */
@media (max-width: 900px) {
  .footer-col {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ============================================================ */
/* NAVBAR AND HEADER RESPONSIVE PROTECTION */
/* ============================================================ */
@media (max-width: 900px) {
  /* Restore the natural non-wrapping layout of the navigation bar */
  header *,
  nav *,
  .navbar *,
  .navmenu * {
    white-space: nowrap !important;
    word-break: normal !important;
  }

  /* Guarantee the primary header container remains a sturdy flex row */
  header .container,
  header .container-fluid {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  /* Protect the logo */
  header .logo {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  /* Let mobile menu items stack neatly when toggled without cutting */
  .mobile-nav-active nav ul {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Except language dropdowns which might need natural space */
  .lang-dropdown * {
    white-space: normal !important;
  }
}

/* ============================================================ */
/* NAVBAR LOGO & NAME STABILITY PROTECTION */
/* ============================================================ */
/* Strip the fluid h1 typography from the sitename and lock logo dimensions */
header .logo h1,
header h1.sitename {
  font-size: 30px !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

header .logo img {
  height: 40px !important;
  max-height: 40px !important;
  width: auto !important;
  margin-right: 10px !important;
}

@media (max-width: 768px) {
  /* Ensure it gracefully scales down just a tiny bit on very small phones but not too much */
  header .logo h1,
  header h1.sitename {
    font-size: 26px !important;
  }
  header .logo img {
    height: 35px !important;
    max-height: 35px !important;
  }
}

/* ============================================================ */
/* MOBILE NAVMENU OVERLAY FIX */
/* ============================================================ */
@media (max-width: 1199px) {
  /* Force the active hamburger menu to take up the full screen rather than sticking right */
  .mobile-nav-active .navmenu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    z-index: 9999 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Ensure the links inside wrap nicely inside the overlay */
  .mobile-nav-active .navmenu ul {
    position: relative !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Center the actual text */
  .mobile-nav-active .navmenu ul li {
    width: 100% !important;
    text-align: center !important;
  }

  .mobile-nav-active .navmenu ul li a {
    display: block !important;
    font-size: 20px !important;
    padding: 15px !important;
    white-space: normal !important; /* allow longer links to wrap inside menu */
    width: 100% !important;
  }

  /* Make sure the toggle button rests above the overlay so users can close it */
  .mobile-nav-toggle {
    z-index: 10000 !important;
  }
}
