/* ============================================================
   L'ÉLÉGANCE. — CHAMPAGNE ARCH STYLE SHEET
   ============================================================ */

/* CSS Variables */
:root {
  --color-bg-primary: #FAF5EE;   /* Soft, warm luxury ivory cream */
  --color-bg-secondary: #F4ECE1; /* Deeper warm champagne cream */
  --color-accent: #C19F84;       /* Soft earth bronze / Bagira Terracotta */
  --color-accent-hover: #A88369; /* Slightly darker bronze for interactions */
  --color-text-primary: #23211F; /* Sophisticated near-black charcoal */
  --color-text-secondary: #57524C; /* Soft earthy grey-brown */
  --color-text-light: #FAF5EE;   /* Clean light ivory */
  --color-border: rgba(193, 159, 132, 0.3); /* Thin delicate bronze line */
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ------------------------------------------------------------
   Reset & Base Styles
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

/* Hide default cursor on desktop for custom interactive cursor */
@media (hover: hover) and (pointer: fine) {
  body, a, button, select, input, option {
    cursor: none !important;
  }
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

/* ------------------------------------------------------------
   Luxury Ambient Elements
   ------------------------------------------------------------ */

/* Film Grain Overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Custom Interactive Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    display: block;
  }
}

.cursor-outer {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

.cursor-inner {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-text {
  position: absolute;
  transform: translate(-50%, -50%) scale(0);
  color: var(--color-light);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  pointer-events: none;
  transition: transform 0.3s;
}

/* Hover States for Cursor */
.custom-cursor.hovering .cursor-outer {
  width: 50px;
  height: 50px;
  background-color: rgba(193, 159, 132, 0.1);
  border-color: var(--color-accent);
}

.custom-cursor.view-mode .cursor-outer {
  width: 60px;
  height: 60px;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.custom-cursor.view-mode .cursor-inner {
  transform: translate(-50%, -50%) scale(0);
}

.custom-cursor.view-mode .cursor-text {
  transform: translate(-50%, -50%) scale(1);
}

/* ------------------------------------------------------------
   Typography Utilities
   ------------------------------------------------------------ */
.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
  text-transform: none;
}

.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ------------------------------------------------------------
   Navbar
   ------------------------------------------------------------ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 2rem 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.nav-list {
  display: flex;
  gap: 3rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--color-accent);
}

.header-contacts-group {
  display: flex;
  gap: 2.5rem;
}

.header-contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}

.contact-value:hover {
  color: var(--color-accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 10px;
  z-index: 102;
  position: relative;
  cursor: pointer;
}

.menu-toggle::after {
  content: '';
  position: absolute;
  top: -17px;
  bottom: -17px;
  left: -9px;
  right: -9px;
}

.menu-toggle span {
  width: 100%;
  height: 1.5px;
  background-color: var(--color-text-primary);
  transition: var(--transition-fast);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 101;
  background-color: var(--color-bg-primary);
  padding: 8rem 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.is-open {
  transform: translateY(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-text-primary);
}

.mobile-nav-footer {
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* ------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------ */
.hero {
  padding: 11rem 0 6rem;
  position: relative;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

.hero-bottom-actions {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Terracotta pill button (inspired by Bagira design) */
.btn-pill-terracotta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color-accent);
  color: var(--color-light);
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.btn-pill-terracotta:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(193, 159, 132, 0.3);
}

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

.btn-pill-terracotta:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-short-desc {
  max-width: 280px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  font-weight: 400;
}

/* Arch Frame Design */
.arch-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.hero-arch-frame {
  width: 100%;
  aspect-ratio: 0.78;
  border-radius: 250px 250px 0 0; /* Perfect top arch */
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-arch-image {
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-arch-frame:hover .hero-arch-image {
  transform: scale(1.06);
}

/* Rotating SVG text badge */
.rotating-badge-wrapper {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  z-index: 2;
}

.rotating-badge-svg {
  width: 100%;
  height: 100%;
  animation: spinBadge 20s linear infinite;
}

.rotating-badge-svg text {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  fill: var(--color-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes spinBadge {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ------------------------------------------------------------
   Services (Arched Gallery)
   ------------------------------------------------------------ */
.services {
  padding: 8rem 0;
  border-top: 1px solid var(--color-border);
}

.services-header {
  margin-bottom: 5rem;
}

.services-header.centered {
  text-align: center;
}

.services-main-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.services-arch-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.service-arch-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.arch-card-frame {
  width: 100%;
  aspect-ratio: 0.78;
  border-radius: 180px 180px 0 0; /* Arched Top */
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.arch-card-image {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.arch-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 0.4rem;
}

.arch-card-subtitle {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.services-footer-note {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  border-top: 1px solid var(--color-border);
  padding-top: 3rem;
}

/* ------------------------------------------------------------
   Showcase / Videos / Experience Block
   ------------------------------------------------------------ */
.showcase {
  background-color: var(--color-bg-secondary);
  padding: 8rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.showcase-arch-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.showcase-arch-frame {
  width: 100%;
  aspect-ratio: 0.82;
  border-radius: 280px 280px 0 0;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  position: relative;
}

.showcase-arch-image {
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-arch-frame:hover .showcase-arch-image {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(35, 33, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--color-bg-primary);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-fast);
  padding-left: 5px; /* Adjust optical center for play icon */
}

.play-btn:hover {
  transform: scale(1.1);
  color: var(--color-accent-hover);
}

.showcase-rotating-badge {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.showcase-rotating-badge .rotating-badge-svg {
  animation: spinBadge 24s linear infinite;
}

.showcase-rotating-badge .rotating-badge-svg text {
  fill: var(--color-accent);
}

.showcase-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.showcase-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-accent);
}

.showcase-main-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.showcase-cards-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

.showcase-detail-card {
  display: flex;
  gap: 2rem;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  align-items: center;
}

.detail-img-box {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50% 50% 0 0; /* Mini arch */
  overflow: hidden;
}

.detail-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 0.4rem;
}

.detail-info p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.showcase-actions-group {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.showcase-quick-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* ------------------------------------------------------------
   Specialists Section
   ------------------------------------------------------------ */
.specialists {
  padding: 8rem 0;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 5rem;
}

.specialists-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-accent);
}

.specialists-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-top: 0.5rem;
}

.specialists-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.specialist-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.specialist-arch-wrapper {
  width: 100%;
}

.specialist-arch-frame {
  width: 100%;
  aspect-ratio: 0.78;
  border-radius: 160px 160px 0 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.specialist-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.specialist-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.specialist-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.specialist-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.specialist-blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-accent);
  line-height: 1.5;
  border-left: 2px solid var(--color-accent);
  padding-left: 1rem;
}

/* ------------------------------------------------------------
   Booking Section (Luxury Form)
   ------------------------------------------------------------ */
.booking {
  padding: 8rem 0;
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
}

.booking-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  padding: 4rem 3.5rem;
  box-shadow: 0 25px 60px rgba(193, 159, 132, 0.06);
}

.booking-card-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.booking-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.75rem;
}

.booking-main-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-primary);
}

.booking-intro {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-top: 1rem;
}

.booking-luxury-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.form-input {
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  width: 100%;
  transition: var(--transition-fast);
  border-radius: 0;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--color-accent);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C19F84' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px;
}

select.form-input option {
  background-color: var(--color-bg-primary);
}

.btn-submit-pill {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color-accent);
  color: var(--color-light);
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  margin-top: 1rem;
}

.btn-submit-pill:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(193, 159, 132, 0.3);
}

.btn-submit-pill:hover .btn-arrow {
  transform: translateX(4px);
}

/* ------------------------------------------------------------
   Footer Section
   ------------------------------------------------------------ */
.footer {
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: 5rem 0;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.footer-left {
  display: flex;
  gap: 4rem;
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.footer-right {
  text-align: right;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* ------------------------------------------------------------
   Animations & Reveals
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   Responsive Breakpoints
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .hero-bottom-actions {
    justify-content: center;
  }
  
  .hero-short-desc {
    max-width: 100%;
  }

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

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .specialists-row {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 3rem;
  }
  
  .footer-left {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-right {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header {
    position: fixed;
    background-color: var(--color-bg-primary);
    box-shadow: 0 2px 15px rgba(35, 33, 31, 0.04);
    border-bottom: 1px solid rgba(193, 159, 132, 0.15);
    padding: 1.2rem 0;
  }

  .header-container {
    padding: 0 1.5rem;
  }

  .nav-desktop, .header-contacts-group {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero-title {
    font-size: clamp(3.2rem, 14vw, 4.5rem);
    margin-bottom: 2.5rem;
    line-height: 1.05;
  }

  .hero-short-desc {
    font-size: 1.05rem;
    line-height: 1.5;
    padding: 0 1rem;
  }

  .services-arch-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .specialist-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .specialist-blockquote {
    border-left: none;
    padding-left: 0;
  }

  .booking-card {
    padding: 3rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .section-container {
    padding: 0 1.5rem;
  }

  /* Responsive styling for rotating text badges */
  .rotating-badge-wrapper {
    width: 120px !important;
    height: 120px !important;
    top: -20px !important;
    left: -20px !important;
  }
  .showcase-rotating-badge {
    width: 120px !important;
    height: 120px !important;
    bottom: -20px !important;
    left: -20px !important;
  }
}
