/* --- CSS RESET & VARIABLE SYSTEM --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sendi-bg-light: #f8fafc;
  --sendi-bg-dark: #0f172a;
  --sendi-primary-gradient: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
  --sendi-accent-gradient: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  --sendi-surface-white: #ffffff;
  --sendi-text-main: #334155;
  --sendi-text-title: #0f172a;
  --sendi-text-muted: #64748b;
  --sendi-shadow-standard: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --sendi-shadow-deep: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -6px rgba(0, 0, 0, 0.08);
  --sendi-radius-soft: 16px;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body.sendi-portal-body {
  font-family: var(--font-body);
  color: var(--sendi-text-main);
  background-color: var(--sendi-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- SCROLL-DRIVEN PROGRESS BAR --- */
.sendi-scroll-progress {
  height: 5px;
  width: 0%;
  background: var(--sendi-accent-gradient);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: width 0.1s linear;
}

@supports (animation-timeline: scroll()) {
  @keyframes progress-grow {
    to { width: 100%; }
  }
  .sendi-scroll-progress {
    animation: progress-grow linear;
    animation-timeline: scroll();
  }
}

/* --- SCROLL REVEAL VIEWPORT ANIMATIONS --- */
@supports (animation-timeline: view()) {
  @keyframes slide-up-reveal {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .sendi-reveal-item {
    animation: slide-up-reveal linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
  }
}

/* --- HEADER STYLES --- */
.sendi-header-wrap {
  width: 100%;
  background: var(--sendi-primary-gradient);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
}

.sendi-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.sendi-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--sendi-surface-white);
}

.sendi-logo-svg {
  width: 32px;
  height: 32px;
}

.sendi-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.sendi-nav-toggle-input {
  display: none;
}

.sendi-hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.sendi-hamburger-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--sendi-surface-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.sendi-nav-bar {
  display: flex;
  gap: 25px;
  align-items: center;
}

.sendi-nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.sendi-nav-link:hover,
.sendi-nav-active {
  color: var(--sendi-surface-white);
  border-bottom: 2px solid var(--sendi-surface-white);
}

/* --- HERO SECTION --- */
.sendi-intro-block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10dvh 20px;
  color: var(--sendi-surface-white);
}

.sendi-intro-content {
  max-width: 900px;
}

.sendi-intro-h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sendi-intro-desc {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.sendi-action-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--sendi-accent-gradient);
  color: var(--sendi-surface-white);
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--sendi-radius-soft);
  box-shadow: var(--sendi-shadow-standard);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-transform: uppercase;
}

.sendi-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--sendi-shadow-deep);
}

/* --- STATS COUNTERS --- */
.sendi-hero-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.sendi-counter-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: var(--sendi-radius-soft);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sendi-counter-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
}

.sendi-counter-suffix {
  font-family: var(--font-display);
  font-size: 2.22rem;
  font-weight: 800;
}

.sendi-counter-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 5px;
}

/* --- TRUST STRIP --- */
.sendi-trust-strip {
  margin-top: 45px;
  text-align: center;
}

.sendi-trust-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.sendi-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.sendi-trust-logo-item {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* --- SECTION HEADER --- */
.sendi-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.sendi-section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sendi-text-title);
  margin-bottom: 15px;
}

.sendi-section-subtitle {
  font-size: 1.1rem;
  color: var(--sendi-text-muted);
}

/* --- INFO SCROLL SECTION (MOBILE INTERIOR SCROLL / DESKTOP PANEL) --- */
.sendi-info-scroll-section {
  padding: 10dvh 20px;
  background-size: cover;
  background-position: center;
}

.sendi-info-scroll-section .sendi-section-title {
  color: var(--sendi-surface-white);
}

.sendi-info-scroll-section .sendi-section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.sendi-scroll-track-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.sendi-scroll-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sendi-info-panel {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--sendi-radius-soft);
  padding: 40px 30px;
  color: var(--sendi-surface-white);
  box-shadow: var(--sendi-shadow-deep);
  transition: transform 0.3s ease;
}

.sendi-info-panel:hover {
  transform: translateY(-5px);
}

.sendi-panel-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--sendi-surface-white);
}

.sendi-panel-icon svg {
  width: 100%;
  height: 100%;
}

.sendi-panel-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* --- FEATURES SECTION (HOVER COLOR-FLIP) --- */
.sendi-benefits-section {
  padding: 10dvh 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sendi-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sendi-benefit-item {
  background-color: var(--sendi-surface-white);
  padding: 40px;
  border-radius: var(--sendi-radius-soft);
  box-shadow: var(--sendi-shadow-standard);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sendi-benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sendi-primary-gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sendi-benefit-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sendi-accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: background 0.4s ease;
}

.sendi-benefit-icon-box svg {
  width: 24px;
  height: 24px;
}

.sendi-benefit-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sendi-text-title);
  margin-bottom: 15px;
  transition: color 0.4s ease;
}

.sendi-benefit-desc {
  color: var(--sendi-text-main);
  transition: color 0.4s ease;
}

/* Color Flip Hover Effects */
.sendi-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--sendi-shadow-deep);
}

.sendi-benefit-item:hover::before {
  opacity: 1;
}

.sendi-benefit-item:hover .sendi-benefit-title {
  color: var(--sendi-surface-white);
}

.sendi-benefit-item:hover .sendi-benefit-desc {
  color: rgba(255, 255, 255, 0.9);
}

.sendi-benefit-item:hover .sendi-benefit-icon-box {
  background: rgba(255, 255, 255, 0.2);
}

/* --- HOW IT WORKS SECTION --- */
.sendi-process-section {
  padding: 10dvh 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sendi-process-track-wrapper {
  position: relative;
  margin-top: 40px;
}

.sendi-process-track-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--sendi-primary-gradient);
  z-index: 1;
}

.sendi-process-track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.sendi-process-node {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sendi-node-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sendi-primary-gradient);
  color: var(--sendi-surface-white);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: var(--sendi-shadow-standard);
  border: 4px solid var(--sendi-bg-light);
}

.sendi-node-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sendi-text-title);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sendi-node-desc {
  font-size: 0.95rem;
  color: var(--sendi-text-muted);
  max-width: 280px;
}

/* --- CTA BANNER STRIP --- */
.sendi-action-banner-wrap {
  padding: 8vh 20px;
  color: var(--sendi-surface-white);
}

.sendi-action-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.sendi-action-banner-left {
  max-width: 700px;
}

.sendi-action-banner-h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 1.2;
}

.sendi-action-banner-p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.sendi-action-banner-btn {
  display: inline-block;
  padding: 16px 32px;
  background-color: var(--sendi-bg-dark);
  color: var(--sendi-surface-white);
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--sendi-radius-soft);
  transition: transform 0.3s ease, background-color 0.3s ease;
  white-space: nowrap;
}

.sendi-action-banner-btn:hover {
  transform: translateY(-3px);
  background-color: #1e293b;
}

/* --- EXPERT PAGE SPECIFIC STYLES --- */
.sendi-split-expert-wrap {
  padding: 10dvh 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sendi-split-expert-container {
  display: flex;
  background: var(--sendi-surface-white);
  border-radius: var(--sendi-radius-soft);
  overflow: hidden;
  box-shadow: var(--sendi-shadow-deep);
}

.sendi-expert-img-side {
  width: 40%;
  background-size: cover;
  background-position: center;
  min-height: 450px;
}

.sendi-expert-txt-side {
  width: 60%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sendi-expert-h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sendi-text-title);
  margin-bottom: 5px;
}

.sendi-expert-role {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #0ea5e9;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.sendi-expert-para {
  margin-bottom: 20px;
  color: var(--sendi-text-main);
  font-size: 1.05rem;
}

/* Expert Stats */
.sendi-stats-grid-section {
  padding: 10dvh 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sendi-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.sendi-stat-card {
  background: var(--sendi-surface-white);
  padding: 40px 20px;
  border-radius: var(--sendi-radius-soft);
  text-align: center;
  box-shadow: var(--sendi-shadow-standard);
  border-top: 4px solid #0ea5e9;
}

.sendi-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--sendi-text-title);
  margin-bottom: 5px;
}

.sendi-stat-caption {
  font-size: 0.95rem;
  color: var(--sendi-text-muted);
}

/* Secondary expert callout */
.sendi-secondary-bg-banner {
  background-size: cover;
  background-position: center;
  padding: 12dvh 20px;
  text-align: center;
  color: var(--sendi-surface-white);
}

.sendi-secondary-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sendi-sec-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.sendi-sec-text {
  font-size: 1.15rem;
}

/* --- RESERVE (BOOKING) PAGE SPECIFIC STYLES --- */
.sendi-reserve-layout-section {
  padding: 10dvh 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sendi-reserve-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.sendi-reserve-info-side {
  width: 45%;
  position: sticky;
  top: 120px;
}

.sendi-reserve-sticky-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sendi-text-title);
  margin-bottom: 20px;
}

.sendi-reserve-sticky-desc {
  font-size: 1.05rem;
  color: var(--sendi-text-muted);
  margin-bottom: 40px;
}

.sendi-bullet-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 45px;
}

.sendi-bullet-card {
  display: flex;
  gap: 20px;
}

.sendi-bullet-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sendi-primary-gradient);
  color: var(--sendi-surface-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sendi-bullet-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sendi-text-title);
  margin-bottom: 5px;
}

.sendi-bullet-desc {
  font-size: 0.95rem;
  color: var(--sendi-text-muted);
}

.sendi-mailto-text {
  font-size: 1rem;
  font-weight: 500;
}

.sendi-mailto-link {
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 700;
}

.sendi-mailto-link:hover {
  text-decoration: underline;
}

/* Booking Form styling */
.sendi-reserve-form-side {
  width: 55%;
}

.sendi-form-card {
  background: var(--sendi-surface-white);
  padding: 50px;
  border-radius: var(--sendi-radius-soft);
  box-shadow: var(--sendi-shadow-deep);
}

.sendi-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sendi-text-title);
  margin-bottom: 10px;
}

.sendi-form-subtitle {
  font-size: 0.95rem;
  color: var(--sendi-text-muted);
  margin-bottom: 35px;
}

.sendi-field-box {
  margin-bottom: 25px;
}

.sendi-field-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--sendi-text-title);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.sendi-field-input,
.sendi-field-textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--sendi-text-main);
  outline: none;
  transition: border-color 0.3s ease;
}

.sendi-field-input:focus,
.sendi-field-textarea:focus {
  border-color: #0ea5e9;
}

.sendi-field-textarea {
  height: 120px;
  resize: none;
}

.sendi-checkbox-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 35px;
}

.sendi-checkbox-input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
}

.sendi-checkbox-label {
  font-size: 0.88rem;
  color: var(--sendi-text-muted);
  cursor: pointer;
}

.sendi-form-submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  background: var(--sendi-primary-gradient);
  color: var(--sendi-surface-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: var(--sendi-radius-soft);
  cursor: pointer;
  box-shadow: var(--sendi-shadow-standard);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sendi-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sendi-shadow-deep);
}

/* FAQ Grid styling */
.sendi-faq-block-section {
  padding: 10dvh 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sendi-faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sendi-faq-item {
  background: var(--sendi-surface-white);
  padding: 30px;
  border-radius: var(--sendi-radius-soft);
  box-shadow: var(--sendi-shadow-standard);
  border-left: 4px solid #10b981;
}

.sendi-faq-query {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--sendi-text-title);
  margin-bottom: 15px;
}

.sendi-faq-answer {
  font-size: 0.95rem;
  color: var(--sendi-text-muted);
}

/* --- THANK YOU PAGE SPECIFIC STYLES --- */
.sendi-thank-wrap-section {
  background-size: cover;
  background-position: center;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10dvh 20px;
}

.sendi-thank-container {
  max-width: 700px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--sendi-radius-soft);
  padding: 60px 40px;
  text-align: center;
  color: var(--sendi-surface-white);
  box-shadow: var(--sendi-shadow-deep);
}

.sendi-thank-icon-box {
  width: 80px;
  height: 80px;
  background: var(--sendi-accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.sendi-thank-check-svg {
  width: 44px;
  height: 44px;
}

.sendi-thank-h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.sendi-thank-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

/* --- PRIVACY & TERMS LEGAL LAYOUT --- */
.sendi-legal-wrap {
  padding: 10dvh 20px;
  background-color: var(--sendi-bg-light);
}

.sendi-legal-container {
  max-width: 850px;
  margin: 0 auto;
  background-color: var(--sendi-surface-white);
  padding: 60px 50px;
  border-radius: var(--sendi-radius-soft);
  box-shadow: var(--sendi-shadow-standard);
}

.sendi-legal-h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--sendi-text-title);
  margin-bottom: 5px;
}

.sendi-legal-meta {
  font-size: 0.9rem;
  color: var(--sendi-text-muted);
  margin-bottom: 35px;
}

.sendi-legal-paragraph {
  margin-bottom: 22px;
  font-size: 1.05rem;
  color: var(--sendi-text-main);
  line-height: 1.7;
}

.sendi-legal-divider {
  border: 0;
  height: 1px;
  background-color: #cbd5e1;
  margin: 40px 0;
}

.sendi-legal-h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sendi-text-title);
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* --- COOKIE BANNER --- */
.sendi-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--sendi-bg-dark);
  color: var(--sendi-surface-white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.2);
  display: none;
}

.sendi-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.sendi-cookie-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.sendi-cookie-actions {
  display: flex;
  gap: 15px;
}

.sendi-cookie-btn-ok {
  background: var(--sendi-primary-gradient);
  color: var(--sendi-surface-white);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.sendi-cookie-btn-no {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.sendi-cookie-btn-ok:hover {
  transform: translateY(-1px);
}

.sendi-cookie-btn-no:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* --- FOOTER --- */
.sendi-footer-area {
  background-color: var(--sendi-bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px;
}

.sendi-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sendi-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.sendi-footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.sendi-footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.sendi-footer-line {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 30px 0;
}

.sendi-footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
}

.sendi-footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .sendi-intro-h1 {
    font-size: 2.5rem;
  }
  
  .sendi-expert-img-side {
    min-height: 350px;
  }
  
  .sendi-expert-txt-side {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  /* Mobile Hamburger Nav Menu */
  .sendi-hamburger-btn {
    display: flex;
  }
  
  .sendi-nav-bar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: -20px;
    right: -20px;
    background: var(--sendi-primary-gradient);
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .sendi-nav-toggle-input:checked ~ .sendi-nav-bar {
    display: flex;
  }
  
  .sendi-nav-toggle-input:checked ~ .sendi-hamburger-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .sendi-nav-toggle-input:checked ~ .sendi-hamburger-btn span:nth-child(2) {
    opacity: 0;
  }
  
  .sendi-nav-toggle-input:checked ~ .sendi-hamburger-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* Grid Layouts Stacked */
  .sendi-hero-counter-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .sendi-scroll-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sendi-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sendi-process-track-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sendi-process-track-line {
    display: none;
  }
  
  .sendi-split-expert-container {
    flex-direction: column;
  }
  
  .sendi-expert-img-side {
    width: 100%;
    min-height: 280px;
  }
  
  .sendi-expert-txt-side {
    width: 100%;
    padding: 30px 20px;
  }
  
  .sendi-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .sendi-reserve-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .sendi-reserve-info-side {
    width: 100%;
    position: static;
  }
  
  .sendi-reserve-form-side {
    width: 100%;
  }
  
  .sendi-form-card {
    padding: 30px 20px;
  }
  
  .sendi-faq-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sendi-action-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .sendi-cookie-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .sendi-legal-container {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .sendi-intro-h1 {
    font-size: 2rem;
  }
  
  .sendi-stats-grid {
    grid-template-columns: 1fr;
  }
}