@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary-navy: #0F172A;
  --primary-teal: #14B8A6;
  --teal-hover: #0D9488;
  --white: #FFFFFF;
  
  /* Semantic Variables (Light Mode Default) */
  --bg-main: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-card: #FFFFFF;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-heading: #0F172A;
  --border-light: #E2E8F0;
  --header-bg: rgba(255, 255, 255, 0.95);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body.dark-mode {
  --bg-main: #0F172A;
  --bg-secondary: #0B1120;
  --bg-card: #1E293B;
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-heading: #FFFFFF;
  --border-light: #334155;
  --header-bg: rgba(15, 23, 42, 0.95);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

body.dark-mode .hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Typography */
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-heading); }
.section-subtitle { color: var(--text-muted); font-size: 1.125rem; max-width: 600px; margin: 0 auto 3rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary-teal);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--teal-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-heading);
  border: 2px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--text-heading);
  background-color: var(--text-heading);
  color: var(--bg-main);
}

.ctrl-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-heading);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.ctrl-btn:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header-bg);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-heading);
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-teal);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-heading);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-heading);
}

.hero-content h1 span {
  color: var(--primary-teal);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-heading);
}

.hero-feature i {
  color: var(--primary-teal);
  background: rgba(20, 184, 166, 0.1);
  padding: 4px;
  border-radius: 50%;
  font-size: 0.875rem;
}

body.dark-mode .hero-feature i {
  background: rgba(20, 184, 166, 0.2);
}

.hero-image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, rgba(15, 23, 42, 0.2), transparent);
  z-index: 1;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1);
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  font-size: 1.5rem;
}

.trust-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--text-heading);
}

.trust-content p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 184, 166, 0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: var(--bg-secondary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-teal);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-teal);
  font-weight: 600;
  font-family: var(--font-heading);
}

.service-link:hover {
  gap: 0.75rem;
}

/* Why Choose Us Section (Stays dark in both modes) */
.why-us {
  padding: 6rem 0;
  background-color: var(--primary-navy);
  color: var(--white);
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-subtitle {
  color: #94A3B8;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-us-item i {
  color: var(--primary-teal);
  font-size: 2rem;
}

.why-us-content h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.why-us-content p {
  color: #94A3B8;
  font-size: 0.9375rem;
}

/* Reviews Section */
.reviews {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

.stars {
  color: #FBBF24;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.review-text {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--text-heading);
}

.reviewer-info h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-heading);
}

.reviewer-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Gallery Section */
.gallery {
  padding: 6rem 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gallery-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-heading);
}

.gallery-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.gallery-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.gallery-image img {
  width: 100%;
  display: block;
}

.gallery-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-navy); /* Always navy on light overlay */
}

/* AI Assistant Section (Always dark theme) */
.ai-assistant {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-navy) 0%, #1e293b 100%);
  color: var(--white);
  overflow: hidden;
}

.ai-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ai-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.ai-content p {
  color: #94A3B8;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ai-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
}

.ai-feature i {
  color: var(--primary-teal);
  background: rgba(20, 184, 166, 0.1);
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.ai-mockup {
  position: relative;
  border-radius: 2rem;
  border: 8px solid #334155;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto;
}

.ai-mockup img {
  width: 100%;
  display: block;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-teal);
  color: var(--white);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}

.contact-details p {
  color: var(--text-muted);
}

.contact-form {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-heading);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--bg-main);
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Footer (Always dark theme) */
.footer {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white);
}

.social-links a:hover {
  background: var(--primary-teal);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

.footer-links a {
  color: #94A3B8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-teal);
  padding-left: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  font-size: 0.875rem;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}

.float-whatsapp {
  background-color: #25D366;
}

.float-whatsapp:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

.float-booking {
  background-color: var(--primary-navy);
}

.float-booking:hover {
  background-color: var(--primary-teal);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container,
  .gallery-container,
  .ai-container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .why-us-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-outline, .nav-actions .btn-primary {
    display: none;
  }
  
  .logo {
    font-size: 1.25rem;
    white-space: nowrap;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: 0.25rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .why-us-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease forwards;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0.5rem 1rem;
  z-index: 1000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0,0,0,0.05);
}

body.dark-mode .mobile-bottom-nav {
  background-color: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0.5rem;
  flex: 1;
}

.nav-item.primary {
  background: linear-gradient(135deg, var(--primary-teal), #0d9488);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-20px);
  box-shadow: 0 10px 20px rgba(20, 184, 166, 0.4);
  border: 5px solid var(--bg-main);
  flex: none;
  padding: 0;
}

body.dark-mode .nav-item.primary {
  border-color: var(--bg-main);
}

.nav-item.primary i {
  color: white !important;
  font-size: 1.5rem;
  margin-bottom: 0;
}

.nav-item.primary span {
  display: none;
}

.nav-item i {
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* Chatbot Overlay */
.chatbot-overlay {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 350px;
  background: var(--bg-card);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  z-index: 1100;
  border: 1px solid var(--border-light);
  overflow: hidden;
  animation: fadeUp 0.3s ease;
}

.chatbot-overlay.active {
  display: flex;
}

.chatbot-header {
  background: var(--primary-teal);
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chatbot-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.chatbot-messages {
  padding: 1rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 350px;
}

.message {
  display: flex;
  gap: 0.5rem;
  max-width: 85%;
}

.bot-message {
  align-self: flex-start;
}

.user-message {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.msg-avatar {
  width: 32px;
  height: 32px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  flex-shrink: 0;
}

.user-message .msg-avatar {
  background: var(--primary-navy);
  color: #fff;
}

.msg-bubble {
  padding: 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.bot-message .msg-bubble {
  background: var(--bg-secondary);
  color: var(--text-main);
  border-top-left-radius: 0;
}

.user-message .msg-bubble {
  background: var(--primary-teal);
  color: #fff;
  border-top-right-radius: 0;
}

.chatbot-input-area {
  padding: 1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 0.5rem;
  background: var(--bg-main);
}

.chatbot-input-area input {
  flex-grow: 1;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 99px;
  outline: none;
  background: var(--bg-card);
  color: var(--text-main);
}

.chatbot-input-area button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-teal);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.chatbot-input-area button:hover {
  background: var(--teal-hover);
}

.float-ai {
  background-color: var(--primary-teal);
}
.float-ai:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: flex !important; }
  
  .chatbot-overlay {
    bottom: 70px;
    right: 1rem;
    left: 1rem;
    width: auto;
  }
}

/* Multi-Step Booking Modal */
.booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.3s ease;
}

.booking-overlay.active {
  display: flex;
}

.booking-container {
  background: var(--bg-card);
  width: 90%;
  max-width: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.booking-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.booking-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-heading);
}

.booking-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.booking-close:hover {
  color: var(--text-heading);
}

.booking-progress {
  height: 4px;
  background: var(--bg-secondary);
  width: 100%;
}

.progress-bar {
  height: 100%;
  background: var(--primary-teal);
  transition: width 0.3s ease;
}

.booking-body {
  padding: 2rem;
  overflow-y: auto;
  position: relative;
}

.booking-step {
  display: none;
  animation: fadeUp 0.3s ease;
}

.booking-step.active {
  display: block;
}

.booking-step h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--text-heading);
}

.back-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.back-btn:hover {
  color: var(--primary-teal);
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-options.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.booking-options.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.booking-opt-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 1rem;
  border-radius: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.booking-opt-btn i {
  font-size: 1.5rem;
  color: var(--primary-teal);
}

.booking-opt-btn:hover, .booking-opt-btn.selected {
  border-color: var(--primary-teal);
  background: rgba(20, 184, 166, 0.05);
  box-shadow: 0 0 0 1px var(--primary-teal);
}

@media (max-width: 480px) {
  .booking-options.grid-2, .booking-options.grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Revenue Calculator App Redesign */
.calc-app-container {
  display: flex;
  background: var(--bg-card);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .calc-app-container {
    flex-direction: column;
  }
}

.calc-app-inputs {
  flex: 1;
  padding: 3rem;
  background: var(--bg-card);
}

.calc-app-results {
  flex: 1;
  padding: 3rem;
  background: linear-gradient(145deg, var(--primary-navy), #0a1122);
  color: white;
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  .calc-app-inputs {
    padding: 1.5rem;
  }
  .calc-app-results {
    padding: 1.5rem;
  }
}

.calc-app-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-heading);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 1rem;
}

.calc-app-title.light {
  color: white;
  border-color: rgba(255,255,255,0.1);
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 1.25rem;
  color: var(--primary-teal);
  font-size: 1.25rem;
}

.input-with-icon input {
  width: 100%;
  padding: 1rem 1rem 1rem 3.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-light);
  background: var(--bg-main);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-heading);
  transition: all 0.3s ease;
}

.input-with-icon input:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.slider-group {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-main);
  border-radius: 1rem;
  border: 1px solid var(--border-light);
}

.slider-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.slider-value {
  background: rgba(20, 184, 166, 0.1);
  color: var(--primary-teal);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.modern-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
}

body.dark-mode .modern-slider {
    background: var(--bg-card);
}

.modern-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: 3px solid var(--primary-teal);
  box-shadow: 0 4px 10px rgba(20, 184, 166, 0.3);
  transition: transform 0.1s;
}

.modern-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.advanced-section {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  overflow: hidden;
}

.advanced-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.advanced-header h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-heading);
}

.advanced-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.advanced-panel {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-light);
  margin-top: 0 !important;
  padding-top: 1.5rem;
}

.input-group.mini label {
  font-size: 0.8rem;
}

.input-group.mini input {
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  width: 100%;
  color: var(--text-heading);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.res-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.res-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
  .res-card {
    padding: 1rem;
  }
}

.res-card.basic span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.res-card.basic strong {
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.res-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
}

.pulse-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(20, 184, 166, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(20, 184, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); }
}

.massive-text {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  transition: all 0.3s ease;
}

@media (max-width: 600px) {
  .massive-text {
    font-size: 1.75rem;
  }
  .massive-text.gold {
    font-size: 2rem;
  }
}

.massive-text.gold {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.growth-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 1.5rem;
  overflow: hidden;
}

.growth-bar .fill {
  height: 100%;
  width: 70%;
  background: var(--primary-teal);
  border-radius: 2px;
}

.res-card.primary-highlight {
  background: var(--primary-teal);
  border: none;
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
  margin-bottom: 1.5rem;
}

.res-card.primary-highlight .pulse-icon {
  background: rgba(255,255,255,0.2);
  color: white;
}

.res-card.primary-highlight .growth-bar {
  background: rgba(0,0,0,0.2);
}

.res-card.primary-highlight .growth-bar .fill {
  background: white;
}

.res-card.premium-highlight {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.2);
  flex: 1;
  justify-content: center;
}

/* Custom Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--bg-card);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid var(--border-light);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-muted);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary-teal);
  border-color: var(--primary-teal);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
  background-color: white;
}

/* Zigzag Layout Styles */
.zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
}

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-text {
    flex: 1;
}

.zigzag-image {
    flex: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.zigzag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.zigzag-row:hover .zigzag-image img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .zigzag-row, .zigzag-row.reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: left;
    }
    .zigzag-text {
        order: 2;
    }
    .zigzag-image {
        order: 1;
    }
}

.zigzag-image {
    position: relative;
}
.zigzag-image .gallery-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--bg-main);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

/* Fix zigzag colors for dark background */
.why-us .zigzag-text h2 {
    color: var(--white) !important;
}
.why-us .zigzag-text p, .why-us .zigzag-text ul, .why-us .zigzag-text li {
    color: #94A3B8 !important;
}

/* Make images consistent in size to balance left and right */
.zigzag-image {
    aspect-ratio: 4/3;
}
.zigzag-image img {
    object-fit: cover !important;
    width: 100%;
    height: 100%;
}

/* Fix CTA buttons in dark section if they are outline */
.why-us .btn-outline {
    color: var(--white) !important;
    border-color: var(--white) !important;
}
.why-us .btn-outline:hover {
    background-color: var(--white) !important;
    color: var(--primary-navy) !important;
}

.zigzag-image .gallery-label {
    color: #0F172A !important;
}


/* Marquee Animations */
.marquee-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    padding: 1rem 0;
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    min-width: 100%;
    justify-content: space-around;
    animation: scroll-left 30s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track > * {
    flex-shrink: 0;
    margin: 0 2rem;
}

.reviews-grid .marquee-track > * {
    width: 400px;
    white-space: normal;
    height: 100%;
}

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

/* Mobile Adjustments */
@media (max-width: 768px) {
    .reviews-grid .marquee-track > * {
        width: 300px;
        margin: 0 1rem;
    }
    .trust-grid .marquee-track > * {
        margin: 0 1rem;
    }
}

/* Enforce visibility on marquee items to prevent scroll animation bugs */
.marquee-track > * {
    opacity: 1 !important;
    transform: none !important;
}

@media (min-width: 768px) { .desktop-dot { display: inline !important; } }

/* FAQ Section */
.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-card:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-md);
}

.faq-details {
    width: 100%;
}

.faq-summary {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    transition: background-color 0.3s ease;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary:hover {
    background-color: rgba(20, 184, 166, 0.03);
}

.faq-icon {
    color: var(--primary-teal);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
    animation: faq-fade-in 0.4s ease-out forwards;
}

@keyframes faq-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fix why us bullet points in mobile */
@media (max-width: 900px) {
    .zigzag-text ul {
        text-align: left;
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .zigzag-text li {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 0.5rem;
    }
    .zigzag-text li i {
        margin-top: 0.25rem;
    }
}

/* Explicitly force Why Us text blocks left on mobile */
@media (max-width: 900px) {
    .zigzag-text {
        text-align: left !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .zigzag-text h2, 
    .zigzag-text p {
        text-align: left !important;
        width: 100%;
    }
    .zigzag-text .btn {
        align-self: flex-start !important;
    }
}
