/* ============================================
   GUIAME.AI - MODERN LANDING PAGE
   Color Palette:
   - Navy Blue: #081D3C
   - Orange/Gold: #FF9500
   - White: #FFFFFF
   - Light Gray: #F8F9FA
   ============================================ */

/* ============================================
   1. RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

.contact-features p{
  font-size: 1.1rem;
  margin: 10px 0;
}

/* ============================================
   2. TYPOGRAPHY & UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  color: #081D3C;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

/* ============================================
   3. HEADER & NAVIGATION
   ============================================ */
.header {
  background-color: #081D3C;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.logo-img {
  height: 45px;
}

.logo-text {
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

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

.nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF9500;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}


.nav-linkblue {
  color: #081D3C;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
}

.nav-linkblue::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF9500;
  transition: width 0.3s ease;
}

.nav-linkblue:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-link2 {
  font-weight: 500;
  font-size: 1.25rem;
  position: relative;
}

.nav-link2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF9500;
  transition: width 0.3s ease;
}

.nav-link2:hover::after {
  width: 100%;
}



/* Mobile Navigation */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #081D3C;
    width: 100%;
    padding: 2rem;
    display: none;
  }

  .nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* ============================================
   4. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(8, 29, 60, 0.8) 0%, rgba(12, 43, 90, 0.8) 100%), url('../img/imaginedin.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(8, 29, 60, 0.8) 0%, rgba(12, 43, 90, 0.8) 100%), url('../img/CastleE.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(8, 29, 60, 0.8) 0%, rgba(12, 43, 90, 0.8) 100%), url('../img/edinVict.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background4 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(8, 29, 60, 0.8) 0%, rgba(12, 43, 90, 0.8) 100%), url('../img/EdinView.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 2rem;
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 4rem);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-subtitle {
  color: #e0e0e0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-icon {
  display: flex;
  flex-direction: column;          /* stack icon + text vertically */
  align-items: center;
  gap: 0.5rem;                     /* space between icon and "By Samuel Moreno" */
  margin-bottom: 1.5rem;           /* breathing room before h1 */
  opacity: 0.95;
}

.hero-icon img {
  width: 120px;                    /* ← starting size – adjust to taste: 100–140px */
  height: auto;                    /* preserves aspect ratio (important since not square) */
  max-width: 100%;                 /* safe on small screens */
  transition: all 0.4s ease;       /* smooth shrink if you keep scroll effect */
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));  /* subtle lift */
}

.hero-icon img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.hero-icon .logo-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #e0e0e0;                  /* light gray for contrast on dark bg */
  letter-spacing: 1px;
  opacity: 0.85;
}

.hero-icon.scrolled img {
  width: 60px;                     /* smaller size on scroll – feels like header integration */
  opacity: 0.85;
  transform: translateY(-4px);
}

.hero-icon.scrolled .logo-text {
  font-size: 0.95rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hero-icon img {
    width: 100px;                    /* smaller on phones */
  }
  .hero-icon.scrolled img {
    width: 50px;
  }
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #081D3C 0%, #0c2b5a 100%);
  color: #f9fafb;
  border: 1px solid #081D3C;
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0c2b5a 0%, #051122 100%);
  border-color: #0c2b5a;
  color: #f9fafb;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 16px rgba(8, 29, 60, 0.3);
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: linear-gradient(135deg, #ffb366 0%, #FF9500 100%);
  color: #f9fafb;
  border: 1px solid #081D3C;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #ffb366 0%, #FF9500 100%);
  border-color: #FF9500;
  color: #f9fafb;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 16px rgba(8, 29, 60, 0.3);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.btn-tertiary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-tertiary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px) scale(1.02);
  border-color: #fff;
}

.btn-img {
  transition: all 0.25s ease;
  animation: gentle-bounce 2.5s ease-in-out infinite;
}

.btn-img:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 16px rgba(8, 29, 60, 0.3);
}

.btn-img:active {
  transform: scale(0.98);
}



/* ============================================
   6. FEATURES SECTION (Placeholder)
   ============================================ */
.features {
  padding: 2rem 2rem;
  text-align: center;
  position: relative; 
  overflow: hidden;   
}

.features-background4 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(8, 29, 60, 0.85),
      rgba(12, 43, 90, 0.85)
    ),
    url('../img/EdinSunset.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 0;
}

.features .container {
  position: relative;
  z-index: 1;
  color: #fff;
}

/* ============================================
   6.1 SOCIAL PROOF
   ============================================ */

.social-proof {
  padding: .2rem 2rem;
  background: #ffffff;
  text-align: center;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FF9500;
  display: block;
}

.stat p {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: #555;
}

/* ============================================
   7. FOOTER
   ============================================ */
.footer {
  background-color: #081D3C;
  color: #fff;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

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

.footer-author {
  font-size: 0.9rem;
  color: #FF9500;
  margin-top: 0.5rem;
}

.footer p {
  color: #fff;
  margin: 0.5rem 0;
}

/* ============================================
   8. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   9. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.67rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ============================================
   HOW IT WORKS - CHEVRON STEPS
   ============================================ */
.how-it-works {
  padding: 4rem 2rem;
  background-color: #F8F9FA;
  text-align: center;
}

.how-it-works h2 {
  margin-bottom: 2rem;
  color: #081D3C;
}

.flow-wrap {
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.flow-boxes {
  display: inline-flex;
  align-items: stretch;
}

.flow-boxes .step-box {
  display: inline-block;
  position: relative;
  min-width: 180px;
  padding: 1rem 2.5rem 1rem 2rem;
  background: #f0f4f8;
  border: 1.5px solid #c0cad6;
  color: #081D3C;
  text-align: center;
  margin-right: 2px;
  z-index: 1;
}

.flow-boxes .step-box:first-child {
  padding-left: 1.5rem;
  border-radius: 8px 0 0 8px;
}

.flow-boxes .step-box:last-child {
  border-radius: 0 8px 8px 0;
}

.flow-boxes .step-box.right::after {
  content: '';
  border-top: 1.5px solid #c0cad6;
  border-right: 1.5px solid #c0cad6;
  width: 28px;
  height: 28px;
  position: absolute;
  right: 0;
  top: 50%;
  background: inherit;
  z-index: 150;
  transform: translate(15px, -50%) rotate(45deg);
}

.flow-boxes .step-box.left::before {
  content: '';
  border-top: 1.5px solid #c0cad6;
  border-right: 1.5px solid #c0cad6;
  width: 28px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 50%;
  background: inherit;
  z-index: 50;
  transform: translate(-15px, -50%) rotate(45deg);
}

.flow-boxes .step-box.active {
  background: #081D3C;
  border-color: #081D3C;
  color: #fff;
  z-index: 2;
}

.flow-boxes .step-box.active::after {
  background: #081D3C;
  border-color: #081D3C;
}

.flow-boxes .step-box.active .step-num {
  background: #FF9500;
  color: #fff;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c0cad6;
  color: #081D3C;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.4rem;
}

.step-icon {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.step-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: inherit;
  margin-bottom: 0.25rem;
}

.step-desc {
  font-size: 0.8rem;
  color: inherit;
  opacity: 0.75;
  margin: 0;
  line-height: 1.4;
}

/* Mobile — stack vertically */
@media (max-width: 768px) {
  .flow-boxes {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .flow-boxes .step-box {
    min-width: unset;
    width: 100%;
    margin-right: 0;
    margin-bottom: 2px;
    padding: 1rem 1.5rem;
  }

  .flow-boxes .step-box:first-child {
    border-radius: 8px 8px 0 0;
  }

  .flow-boxes .step-box:last-child {
    border-radius: 0 0 8px 8px;
  }

  .flow-boxes .step-box.right::after,
  .flow-boxes .step-box.left::before {
    display: none;
  }
}

/* Mobile — stack vertically */

/* Modern Professional WhatsApp FAB */
.whatsapp-floating {
  /* Positioning */
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;

  /* Size & shape */
  width: 64px;
  height: 64px;
  border-radius: 50%;

  /* Color & background */
  background: linear-gradient(145deg, #25D366 0%, #20b058 100%);
  color: white;

  /* Shadow – subtle but present */
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);

  /* Center icon perfectly */
  display: grid;
  place-items: center;

  /* Smooth transitions */
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;

  /* Prevent text selection & improve touch */
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Hover / active states */
.whatsapp-floating:hover {
  transform: translateY(-4px) scale(1.09);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.18),
    0 16px 48px rgba(0, 0, 0, 0.10);
}

.whatsapp-floating:active {
  transform: translateY(-1px) scale(1.02);
  transition: all 0.14s ease;
}

/* Optional: subtle ring / pulse on load (very restrained) */
@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.22); }
  70%      { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

.whatsapp-floating {
  animation: gentle-pulse 2.2s ease-out 1.2s 1;
}

/* Inside the button – icon styling */
.whatsapp-floating svg,
.whatsapp-floating i {
  font-size: 32px;           /* or width/height 32px if svg */
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.whatsapp-floating:hover svg,
.whatsapp-floating:hover i {
  transform: scale(1.12) rotate(8deg);
}

/* Examples grid – clean centered list */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.example-item {
  background: #f8f9fa;
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e0e7ff;
  transition: all 0.25s ease;
}

.example-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(8, 29, 60, 0.1);
  border-color: #c0d0ff;
}

.example-item a.nav-link2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #081D3C;
  display: block;
}

.example-item a.nav-link2:hover {
  color: #FF9500;
}

/* Examples for 2 day tour */

.examples {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #fff;
}

.examples h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.examples p {
  max-width: 600px;
  font-size: 1.05rem;
  color: #666;
  margin: 0 auto 2rem;
  text-align: center;
}

.example-item .item-desc {
  font-size: 0.82rem;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

/* ============================================
CONTACT PAGE SPECIFIC STYLES
============================================ */

/* Contact form styling */
.contact-form {
  max-width: 520px;
  margin: 2.5rem auto 1.5rem;
  padding: 0 1rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;                    /* white on dark hero bg */
  font-size: 1.05rem;
}

.form-group input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.98);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #FF9500;
  box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.15);
}

/* Small subtitle variant */
.hero-subtitle.small {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 1rem;
}

/* Enhance examples-grid items on contact page (with icons) */
.examples-grid .example-item {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.5rem;
  text-align: left;               /* better readability with icons */
}

.example-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.examples-grid .example-item .example-text {
  font-size: 1.05rem;
  color: #081D3C;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .contact-form {
    max-width: 100%;
    padding: 0 1.5rem;
  }

  .examples-grid .example-item {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    min-height: auto;
  }

  .example-icon {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
  }
}

/* BMC widget - base styles */
#bmc-floating {
  position: fixed;
  bottom: 110px;
  right: 16px;               /* increased from 2px for better breathing room on mobile */
  left: auto;
  width: 280px;              /* fixed width so it doesn't stretch full-width or look tiny */
  max-width: calc(100vw - 32px);     
  box-sizing: border-box;      /* won't overflow on very small screens */
  background: rgba(60, 60, 60, 0.85);
  color: #fff;
  padding: 26px;             /* more padding for comfort */
  border-radius: 8px;       /* slightly softer */
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);  /* crucial for iOS Firefox/Safari compatibility */
  z-index: 9999;
  opacity: 0;
  font-size: 14px;
  line-height: 1.4;
  transform: translate(-50%,10px);
  transition: all 0.5s ease, transform 0.5s ease;
  display: flex;
  flex-direction: column;    /* stack everything */
  align-items: flex-start;
  gap: 12px;
}

#bmc-floating.show {
  opacity: 1;
  transform: translate(-50%,0);  /* animation */
}

/* Make it centered on mobile instead of bottom-right glued */
@media (max-width: 600px) {   /* or max-width: 768px if you prefer tablets too */
  #bmc-floating {
    right: auto;
    left: 50%;
    bottom: 100px;            /* give more space from bottom nav bars */
    transform: translate(-50%,10px);  /* true center */
    width: 85vw;
    max-width: 320px;
    margin: 0;
    padding-top: 45px;
    padding: 26px;           /* consistent padding */
    padding-bottom: calc(16px + env(safe-area-inset-bottom)); /* account for iOS home indicator */
    padding-right: calc(16px + env(safe-area-inset-right)); /* account for iOS home indicator */
    padding-left: calc(16px + env(safe-area-inset-left)); /* account for iOS home indicator */
  }
}

/* Close button to top-right */
#bmc-close {
  position: absolute;
  top: 4px;
  right: 12px;
  background: transparent;
  border: none;
  color: #ccc;
  font-size: 16px;           /* bit bigger for touch */
  cursor: pointer;
  padding: 2px;
  line-height: 1;
}

/* Icon + link row - center them */
.bmc-support-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

/* Text styling */
.bmc-text {
  opacity: 0.95;
  text-align: center;        /* center the main message */
  width: 100%;
  padding: 15px;
}

/* Link */
.bmc-link {
  color: #ffd900;
  font-weight: bold;
  text-decoration: none;
}

.bmc-link:hover { text-decoration: underline; }

/* PASSWORD GATE */

#password-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #081D3C;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  backdrop-filter: blur(0px);
  animation: gateBlurIn 0.5s ease forwards;
  
}

.gate-box {
  background: rgba(255,255,255,0.05);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.gate-box h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.gate-box p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  transform: translateY(30px);
  opacity: 0;
  animation: cardReveal 0.7s ease forwards;
  animation-delay: 0.2s;
}

#password-input {
  width: 100%;
  padding: 0.9rem;
  border-radius: 8px;
  border: none;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation: elementFade 0.5s ease forwards;
  animation-delay: 0.2s;
}

#password-btn {
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  animation: elementFade 0.5s ease forwards;
  animation-delay: 0.5s;
}

#error-msg {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}

@keyframes gateFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cardReveal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes elementFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}

@keyframes gateBlurIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(6px);
  }
}

.whatsapp-tooltip {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #081D3C;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  z-index: 999;
}

.whatsapp-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SURVEY SECTION — append these rules to the END of style.css
   ============================================================ */

/* ── Section shell ── */
.survey-section {
  padding: 3.5rem 2rem;
  background: #F8F9FA;
  border-top: 1px solid #e8ecf0;
  border-bottom: 1px solid #e8ecf0;
}

/* ── Two-column layout ── */
.survey-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 820px;
  margin: 0 auto;
}

/* ── Left: text side ── */
.survey-text {
  flex: 1;
}

.survey-eyebrow {
  font-size: 0.87rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF9500;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(255, 149, 0, 0.3);
}

.survey-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #081D3C;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.survey-sub {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ── Right: widget side ── */
.survey-widget {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(8, 29, 60, 0.07);
  border: 1px solid #e0e7ee;
  transition: box-shadow 0.3s ease;
}

.survey-widget:hover {
  box-shadow: 0 8px 32px rgba(8, 29, 60, 0.11);
}

/* ── Stars row ── */
.survey-stars {
  display: flex;
  gap: 6px;
}

.s-star {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-tap-highlight-color: transparent;
}

.s-star:hover,
.s-star:focus-visible {
  transform: scale(1.25);
  outline: none;
}

.s-star svg {
  width: 40px;
  height: 40px;
  fill: #d1dae3;
  transition: fill 0.15s ease, transform 0.15s ease;
  display: block;
}

.s-star--filled svg {
  fill: #FF9500;
}

.s-star--selected svg {
  fill: #FF9500;
  filter: drop-shadow(0 2px 6px rgba(255, 149, 0, 0.4));
}

/* ── Hint text ── */
.survey-hint {
  font-size: 0.88rem;
  color: #888;
  margin: 0;
  min-height: 1.2em;
  text-align: center;
  transition: color 0.2s ease;
}

/* ── Submit button state ── */
.survey-submit {
  width: 100%;
  max-width: 220px;
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.2s ease;
  pointer-events: none;
}

.survey-submit.ready {
  opacity: 1;
  pointer-events: auto;
}

.survey-submit:disabled {
  cursor: default;
}

/* ── Thank-you message ── */
.survey-thanks {
  display: none;
  align-items: center;
  gap: 8px;
  background: #edfaf4;
  border: 1px solid #a3e4c1;
  border-radius: 8px;
  padding: 0.75rem 1.1rem;
  font-size: 0.9rem;
  color: #1a6640;
  width: 100%;
  justify-content: center;
  animation: fadeInUp 0.4s ease-out;
}

.survey-thanks svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #1a6640;
}

/* ── Submitted state: hide stars + hint ── */
.survey-widget.submitted .survey-stars,
.survey-widget.submitted .survey-hint {
  opacity: 0.3;
  pointer-events: none;
}

/* ── Responsive: stack vertically on mobile ── */
@media (max-width: 640px) {
  .survey-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .survey-text {
    order: 1;
  }

  .survey-widget {
    order: 2;
    width: 100%;
  }

  .s-star svg {
    width: 44px;   /* slightly bigger tap target on mobile */
    height: 44px;
  }
}

/* ============================================================
   QUALITY BADGE — in the footer
   ============================================================ */

.quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 7px 16px;
  transition: background 0.3s ease;
}

.quality-badge:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Pulsing live dot */
.qb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4CAF50;
  flex-shrink: 0;
  animation: qb-pulse 2.4s ease-in-out infinite;
}

@keyframes qb-pulse {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.3; transform: scale(0.85); }
}

/* Star icons row inside badge */
.qb-stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

.qb-star-icon {
  width: 14px;
  height: 14px;
  display: block;
}

/* Score text */
.qb-score {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

/* Count text */
.qb-count {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Walks CTA card — stands out from hero */
.walks-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin: 2rem auto 0;
  max-width: 520px;
  text-align: center;
}
.walks-card p {
  color: #ccd6e8;
  font-size: 0.92rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.walks-card strong {
  color: #fff;
}