/* Header and Navigation - Lines 34-322 from original */
/* Navigation */
.site-header {
  background-color: transparent;
  color: #fff;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header when scrolled */
.site-header.scrolled {
  position: sticky;
  background-color: rgba(26, 22, 34, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 0.75rem 0;
  z-index: 101;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  position: relative;
  z-index: 102;
}

.logo a {
  display: block;
  text-decoration: none;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  transition:
    opacity 0.3s ease,
    height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smaller logo when scrolled or menu is open */
.site-header.scrolled .logo-img,
.site-header.menu-open .logo-img {
  height: 50px;
}

.logo a:hover .logo-img {
  opacity: 0.8;
}

/* Mobile Action Buttons in Nav (Hidden on Desktop) */
.mobile-action-buttons {
  display: none;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  position: relative;
}

.burger-menu.active {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 102;
}

.burger-line {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  display: block;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.phone-button {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  color: var(--ink-2) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.phone-button:hover {
  color: var(--ink-2) !important;
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold) 100%);
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--gold) 70%, transparent);
  }
  50% {
    box-shadow: 0 0 0 20px color-mix(in srgb, var(--gold) 0%, transparent);
  }
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--gold) 0%, transparent);
  }
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  min-width: 200px;
  list-style: none;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
  z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  padding: 0.75rem 1.5rem;
  color: #fff;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: #333;
  color: var(--gold);
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;
  color: #fff;
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .hero-buttons .cta-button,
  .hero-buttons .footer-book-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.scroll-arrow {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  text-decoration: none;
}

.scroll-arrow:hover {
  transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow::before {
  content: 'Scroll Down';
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-arrow::after {
  content: '↓';
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Content Sections */
.content-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.content-wrapper p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-wrapper ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.content-wrapper li {
  margin-bottom: 0.5rem;
}

/* Brand Experience Section */
.brand-experience-wrapper {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  padding: 64px 0;
}

.brand-experience-section {
  padding: clamp(16px, 4vw, 40px);
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}

.brand-experience-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.brand-headline {
  font-family:
    'Space Grotesk',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.4px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: var(--text);
}

.brand-copy p {
  margin: 0 0 18px 0;
  color: var(--text-light);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
}

.brand-copy .cta-button {
  margin-top: 1.5rem;
}

.brand-media {
  position: relative;
}

.brand-photo,
.brand-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-section .cta-button {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  color: var(--ink-2);
}

/* Testimonials Section - Auto-Scrolling with Site Theme */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  position: relative;
  overflow: hidden;
}

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

.testimonials-section .section-header h2 {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}

/* Testimonials Wrapper with Side Gradients - Full Width */
.testimonials-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonials-wrapper::before,
.testimonials-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--ink-2) 0%, transparent 100%);
}

.testimonials-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--ink-2) 0%, transparent 100%);
}

/* Scrolling Track Container */
.testimonials-scroll-track {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Scrolling Content */
.testimonials-scroll-content {
  display: flex;
  gap: 1.5rem;
  animation: scroll-left 50s linear infinite;
  width: fit-content;
  will-change: transform;
}

.testimonials-scroll-track[data-direction='right'] .testimonials-scroll-content {
  animation: scroll-right 55s linear infinite;
}

/* Seamless infinite scroll - moves exactly 33.33% (1/3 of content with 3 duplicates) */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-33.33%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-33.33%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* Pause on hover */
.testimonials-scroll-track:hover .testimonials-scroll-content {
  animation-play-state: paused;
}

/* Modern Testimonial Card */
.testimonial-card-modern {
  background: linear-gradient(135deg, #353342 0%, var(--ink-2) 100%);
  border-radius: 16px;
  padding: 2rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  display: flex;
  flex-direction: column;
  min-height: 250px;
  width: 380px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
  border-color: color-mix(in srgb, var(--gold) 50%, transparent);
}

/* Testimonial Quote */
.testimonial-quote {
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-quote p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* Modern Testimonial Author */
.testimonial-author-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid color-mix(in srgb, var(--gold) 40%, transparent);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testimonial-author-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

/* Author Name with Stars */
.author-name-with-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-name-modern {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-stars-inline {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1rem;
}

.author-title-modern {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials-wrapper::before,
  .testimonials-wrapper::after {
    width: 80px;
  }

  .testimonial-card-modern {
    width: 320px;
    min-height: 220px;
    padding: 1.5rem;
  }

  .testimonials-scroll-content {
    animation-duration: 40s;
  }

  .testimonials-scroll-track[data-direction='right'] .testimonials-scroll-content {
    animation-duration: 45s;
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #1a1622 0%, #0f0d14 100%);
  color: #fff;
  padding: 3rem 0 0;
  margin-top: 0;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem 0 2rem;
}

.footer-section h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  font-family:
    'Space Grotesk',
    -apple-system,
    sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.footer-tagline {
  color: #b8b8b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-apply-btn,
.footer-book-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.footer-apply-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  color: #0f0d14;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--gold) 30%, transparent);
}

.footer-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--gold) 50%, transparent);
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold) 100%);
}

.footer-book-btn {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--gold) 10%, transparent);
  /* Adjust padding to compensate for 2px border, keeping visual size consistent with apply button */
  padding: calc(1rem - 2px) calc(2.5rem - 2px);
}

.footer-book-btn:hover {
  transform: translateY(-2px);
  background: color-mix(in oklab, var(--gold) 18%, transparent);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--gold) 30%, transparent);
  border-color: var(--gold);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-link {
  color: #b8b8b8 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  padding: 0.5rem 0;
}

.footer-contact-link:hover {
  color: var(--gold) !important;
  transform: translateX(5px);
}

.footer-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-contact-link:hover .footer-icon {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--gold) 30%, transparent);
}

.social-icon {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  filter: brightness(1);
  opacity: 1;
  color: var(--icon-purple);
}

.social-link:hover .social-icon {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}

.footer-newsletter {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: color-mix(in srgb, var(--gold) 5%, transparent);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--gold) 15%, transparent);
}

.newsletter-text {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  border-radius: 25px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 10%, transparent);
}

.newsletter-submit {
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
}

.newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--gold) 40%, transparent);
}

.newsletter-icon {
  width: 18px;
  height: 18px;
  color: #0f0d14;
}

.newsletter-message {
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.newsletter-message.success,
.newsletter-message.error {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-message.success {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.newsletter-message.error {
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.2);
}

.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--gold) 10%, transparent);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}
/* Responsive - Mobile Navigation */
@media (max-width: 980px) {
  .brand-experience-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .brand-media {
    order: -1;
  }

  .brand-experience-section {
    margin: 32px auto;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

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

  /* Show mobile icons and burger menu on mobile */
  .site-header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .header-mobile-icons {
    display: flex;
    order: 2;
  }

  .burger-menu {
    display: flex;
    order: 3;
  }

  .logo {
    order: 1;
  }

  /* Fix logo position when menu is open on mobile */
  .site-header.menu-open .logo {
    position: fixed;
    top: 1rem;
    left: 1.5rem;
    z-index: 102;
  }

  /* Hide navigation by default on mobile */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #1a1622 0%, #0f0d14 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    z-index: 100;
    overflow-y: auto;
    padding-top: 6rem;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
  }

  .main-nav > ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
  }

  .main-nav a {
    font-size: 1.25rem;
  }

  .site-header .container {
    position: relative;
  }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 0.5rem;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.5rem 0;
  }

  .has-dropdown.mobile-open .dropdown-menu {
    display: block;
  }

  /* Hide desktop phone button on mobile */
  .phone-button {
    display: none !important;
  }

  /* Show mobile action buttons on mobile */
  .mobile-action-buttons {
    display: flex !important;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: -1.5rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--gold) 15%, transparent);
  }

  /* Mobile Phone Button */
  .mobile-phone-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .mobile-phone-button:hover {
    transform: scale(1.1);
  }

  .mobile-phone-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    filter: drop-shadow(0 0 8px color-mix(in srgb, var(--gold) 60%, transparent));
    animation: phoneGlow 2s ease-in-out infinite;
  }

  @keyframes phoneGlow {
    0%,
    100% {
      filter: drop-shadow(0 0 8px color-mix(in srgb, var(--gold) 60%, transparent));
    }
    50% {
      filter: drop-shadow(0 0 12px color-mix(in srgb, var(--gold) 80%, transparent));
    }
  }

  /* Mobile Text Button */
  .mobile-text-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .mobile-text-button:hover {
    transform: scale(1.1);
  }

  .mobile-text-icon {
    width: 20px;
    height: 20px;
    color: var(--icon-purple);
    filter: brightness(1);
  }

  /* Mobile Instagram Button */
  .mobile-instagram-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .mobile-instagram-button:hover {
    transform: scale(1.1);
  }

  .mobile-instagram-icon {
    width: 20px;
    height: 20px;
    color: var(--icon-purple);
    filter: brightness(1);
  }

  .testimonials-carousel {
    padding: 0 50px;
  }

  .testimonials-track {
    min-height: auto;
  }

  /* Footer Responsive */
  .footer-content {
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0 2rem;
  }

  .footer-brand {
    padding-right: 0;
    text-align: center;
    /* grid-column: 1 / -1; */
  }

  /* .footer-brand .footer-cta { */
  /*   flex-direction: row; */
  /*   justify-content: center; */
  /*   gap: 0.75rem; */
  /* } */

  /* .footer-apply-btn, */
  /* .footer-book-btn { */
  /*   padding: 0.65rem 1.25rem !important; */
  /*   font-size: 0.85rem !important; */
  /*   white-space: nowrap; */
  /* } */

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links,
  .footer-contact {
    text-align: center;
    align-items: center;
  }

  .footer-contact-link {
    justify-content: center;
  }

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

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer-cta {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
  }

  .footer-apply-btn,
  .footer-book-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  /* Adjust padding for book button to compensate for 2px border */
  .footer-book-btn {
    padding: calc(0.75rem - 2px) calc(1rem - 2px);
  }
}
