/* ============================================================================
   FRONT-PAGE.CSS - Front Page Specific Styles
   ========================================================================= */

/* ============================================================================
   HERO SECTION
   ========================================================================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero-fullscreen {
  min-height: 100vh;
  min-height: 100dvh;
}

.hero:not(.hero-fullscreen) {
  min-height: 60vh;
  margin-top: 0;
  padding-top: 100px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Video Poster - Shows while video loads */
.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fade out poster when video loads */
.video-poster.hidden {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

/* YouTube Video Background */
.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in, visibility 0.8s ease-in;
}

.video-background.loaded {
  opacity: 1;
  visibility: visible;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Lazy video - initially hidden */
.lazy-video {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.lazy-video.loaded {
  opacity: 1;
  visibility: visible;
}

/* Fallback for old image style if needed */
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 40px;
}

.hero-content a {
  color: inherit;
}

.hero-title {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0;
  margin-bottom: 40px;
  margin-inline: auto;
  max-width: 58ch;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-badge {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-badge a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-badge-icon {
  width: 32px;
  height: 32px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  z-index: 3;
  animation: fadeInUp 1s ease 1s both, bounce 2s ease-in-out 1.5s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

.hero:not(.hero-fullscreen) .hero-scroll {
  display: none;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  
  .hero-content {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-text {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 10px 20px;
  }
  .hero-badge-icon {
    width: 24px;
    height: 24px;
  }
  .hero-scroll {
    bottom: 30px;
  }
  
  .hero-content {
    padding: 0 20px;
  }
}

/* ============================================================================
   EXPERIENCE CHOOSER SECTION
   ========================================================================= */

.experience-chooser {
  padding: 100px 0;
  background: var(--color-white);
}

.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-intro .section-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 15px;
  line-height: 1.2;
}

.section-intro .section-subtitle {
  font-size: 20px;
  color: var(--color-grey);
  margin: 0;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.experience-card {
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  transition: var(--transition-fast);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

/* .experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
} */

.experience-selfdrive {
  background: var(--color-bg-main);
}

.experience-skippered {
  background: var(--color-dark);
  color: var(--color-white);
}

.experience-header {
  margin-bottom: 35px;
}

.experience-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--color-footer-bg);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.experience-badge-premium {
  background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
  color: var(--color-white);
}

.experience-header h3 {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 12px;
}

.experience-skippered .experience-header h3 {
  color: var(--color-white);
}

.experience-header p {
  font-size: 16px;
  color: var(--color-grey);
  margin: 0;
}

.experience-skippered .experience-header p {
  color: rgba(255, 255, 255, 0.7);
}

.experience-zones {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--color-border);
}

.experience-skippered .experience-zones {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.zone-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
  margin-bottom: 12px;
}

.experience-skippered .zone-label {
  color: rgba(255, 255, 255, 0.6);
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zone-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.zone-tag-premium {
  color: var(--color-white);
  border-color: #00BCD4;
  background-color: rgba(255, 255, 255, 0.05);
}

.experience-boats-preview {
  margin-bottom: 30px;
  margin-top: auto;
}

.boats-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
  margin-bottom: 15px;
}

.experience-skippered .boats-label {
  color: rgba(255, 255, 255, 0.6);
}

.boats-mini-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.boat-mini-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  background: var(--color-white);
  border-radius: 12px;
  padding: 12px;
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

.experience-skippered .boat-mini-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* .boat-mini-card:hover {
  border-color: var(--color-footer-bg);
  transform: translateX(5px);
}

.experience-skippered .boat-mini-card:hover {
  border-color: #00BCD4;
} */

.boat-mini-image {
  width: 100px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
}

.boat-mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boat-mini-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.boat-mini-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 5px;
}

.experience-skippered .boat-mini-info h4 {
  color: var(--color-white);
}

.boat-mini-info span {
  font-size: 13px;
  color: var(--color-grey);
}

.experience-skippered .boat-mini-info span {
  color: rgba(255, 255, 255, 0.6);
}

.popular-pill {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 10px;
  background: var(--color-footer-bg);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popular-pill-gold {
  background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
  color: var(--color-white);
}

.experience-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-item img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.experience-skippered .highlight-item img {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.highlight-item span {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}

.experience-skippered .highlight-item span {
  color: var(--color-white);
}

.experience-cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 30px;
  border-top: 2px solid var(--color-border);
}

.experience-skippered .experience-cta {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.btn-link {
  color: var(--color-footer-bg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition-fast);
  text-align: center;
}

.btn-link:hover {
  color: #055A75;
}

.btn-link-light {
  color: #00BCD4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition-fast);
  text-align: center;
}

.btn-link-light:hover {
  color: #0097A7;
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-family: 'LT Superior', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-primary-dark:hover {
  background: linear-gradient(135deg, #0097A7 0%, #00796B 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

@media (max-width: 1024px) {
  .experience-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .experience-chooser {
    padding: 60px 0;
  }
  
  .section-intro .section-title {
    font-size: 32px;
  }
  
  .section-intro .section-subtitle {
    font-size: 16px;
  }
  
  .experience-card {
    padding: 35px 25px;
  }
  
  .experience-header h3 {
    font-size: 26px;
  }
  
  .boats-mini-cards {
    gap: 12px;
  }
  
  .boat-mini-card {
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 10px;
  }
  
  .boat-mini-image {
    width: 80px;
    height: 60px;
  }
  
  .boat-mini-info h4 {
    font-size: 14px;
  }
  
  .boat-mini-info span {
    font-size: 12px;
  }
}

/* ============================================================================
   TOURS SHOWCASE HOME SECTION
   ========================================================================= */

.tours-showcase-home {
  padding: 100px 0;
  background: var(--color-bg-main);
}

.section-badge-center {
  display: inline-block;
  padding: 8px 20px;
  background: var(--color-footer-bg);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.tours-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.tour-card-home {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tour-card-home:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tour-card-home .price-note {
  text-align: right;
}

.tour-image-home {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tour-image-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.tour-card-home:hover .tour-image-home img {
  transform: scale(1.05);
}

.tour-badge-home {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.tour-overlay-home {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card-home:hover .tour-overlay-home {
  opacity: 1;
}

.tour-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-white);
  color: var(--color-text);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tour-view-btn:hover {
  background: var(--color-footer-bg);
  color: var(--color-white);
  transform: translateY(-2px);
}

.tour-content-home {
  padding: 25px;
  height: calc(100% - 240px);
  display: flex;
  flex-direction: column;
}

.tour-title-home {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 15px;
  line-height: 1.3;
}

.tour-highlights-home {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.highlight-tag-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--color-bg-main);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
}

.highlight-tag-home img {
  width: 12px;
  height: 12px;
  opacity: 0.6;
}

.tour-meta-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  margin-top: auto;
  margin-bottom: 20px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-grey);
}

.tour-meta-item img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.tour-price-home {
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.price-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-footer-bg);
}

.btn-tour-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--color-footer-bg);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-family: 'LT Superior', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(7, 114, 149, 0.2);
}

.btn-tour-book:hover {
  background: #055A75;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7, 114, 149, 0.35);
}

.tours-cta-home {
  text-align: center;
}

@media (max-width: 1024px) {
  .tours-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tours-showcase-home {
    padding: 60px 0;
  }
  
  .tours-grid-home {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tour-image-home {
    height: 200px;
  }
  
  .tour-content-home {
    padding: 20px;
  }
  
  .tour-title-home {
    font-size: 18px;
  }
  
  .tour-highlights-home {
    min-height: auto;
  }
}

/* ============================================================================
   REVIEWS SECTION
   ========================================================================= */

.reviews {
  padding: 100px 0;
  background: var(--color-white);
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: var(--color-footer-bg);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.reviews-badge img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.reviews-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 60px;
}

.reviews-platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.platform-logo {
  height: 40px;
  width: auto;
}

.platform-stars {
  display: flex;
  gap: 4px;
}

.platform-stars img {
  width: 24px;
  height: 24px;
}

.platform-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-score {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.rating-count {
  font-size: 14px;
  color: var(--color-grey);
}

.reviews-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 400px;
}

.reviews-track {
  position: relative;
  width: 100%;
  min-height: 400px;
}

.review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-bg-main);
  border-radius: 20px;
  padding: 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
  transform: translateY(20px);
}

.review-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2;
}

.review-card.exiting {
  z-index: 1;
}

.review-quote {
  margin-bottom: 24px;
}

.review-quote img {
  width: 48px;
  height: 48px;
  opacity: 0.2;
}

.review-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.review-author {
  text-align: left;
}

.review-author h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.review-author a {
  font-size: 13px;
  color: var(--color-grey);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.review-author a:hover {
  color: var(--color-text);
}

.review-badge-small {
  padding: 8px 20px;
  background: var(--color-light-accent);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background: var(--color-grey);
  transform: scale(1.2);
}

.dot.active {
  background: var(--color-text);
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .reviews {
    padding: 80px 0;
  }
  
  .reviews-title {
    font-size: 40px;
  }
  
  .reviews-platforms {
    gap: 60px;
  }
  
  .review-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .reviews {
    padding: 60px 0;
  }
  
  .reviews-badge {
    padding: 10px 20px;
    gap: 10px;
  }
  
  .reviews-badge img {
    width: 16px;
    height: 16px;
  }
  
  .reviews-badge span {
    font-size: 10px;
  }
  
  .reviews-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .reviews-carousel {
    min-height: 450px;
  }
  
  .reviews-track {
    min-height: 450px;
  }

  .reviews-platforms {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
  }
  
  .platform-logo {
    height: 32px;
  }
  
  .platform-stars img {
    width: 20px;
    height: 20px;
  }
  
  .rating-score {
    font-size: 18px;
  }
  
  .rating-count {
    font-size: 13px;
  }
  
  .review-card {
    padding: 32px 24px;
  }
  
  .review-quote img {
    width: 36px;
    height: 36px;
  }
  
  .review-text {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .review-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .review-author h4 {
    font-size: 15px;
  }
  
  .review-author a {
    font-size: 12px;
  }
  
  .reviews-dots {
    margin-top: 32px;
    gap: 10px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .dot.active {
    width: 28px;
  }
}

/* ============================================================================
   CTA SECTION
   ========================================================================= */

.cta-section {
  padding: 100px 0 150px;
  background: var(--color-bg-main);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-content {
  padding-right: 20px;
}

.cta-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 24px;
}

.cta-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-grey);
  margin-bottom: 48px;
}

.cta-subtitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-grey);
  margin-bottom: 40px;
}

.cta-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-info-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-info-item a,
.cta-info-item span {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-info-item a:hover {
  color: var(--color-footer-bg);
}

.cta-chat {
  position: relative;
}

.chat-window {
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--color-bg-main);
  border-bottom: 1px solid var(--color-border);
}

.chat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-avatar img {
  width: 24px;
  height: 24px;
}

.chat-header-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-grey);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.chat-messages {
  padding: 32px 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-chat-bg);
}

.chat-message {
  max-width: 80%;
  animation: slideIn 0.4s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}

.chat-message-received {
  align-self: flex-start;
  animation-delay: 0.5s;
}

.chat-message-sent {
  align-self: flex-end;
  animation-delay: 2s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message p {
  background: var(--color-white);
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chat-message-sent p {
  background: var(--color-light-accent);
}

.chat-typing {
  align-self: flex-start;
  padding: 12px 18px;
  background: var(--color-white);
  border-radius: 16px;
  font-size: 14px;
  font-style: italic;
  color: var(--color-grey);
  opacity: 0;
  animation: fadeIn 0.4s ease 3.5s forwards;
}

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

.chat-footer {
  padding: 24px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-response-time {
  font-size: 13px;
  color: var(--color-grey);
  text-align: center;
  margin: 0;
}

.chat-response-time strong {
  color: var(--color-text);
  font-weight: 600;
}

.btn-start-conversation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-family: 'LT Superior', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-start-conversation:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 195, 93, 0.3);
}

.btn-start-conversation img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
  .cta-section {
    padding: 80px 0;
  }
  
  .cta-grid {
    gap: 60px;
  }
  
  .cta-title {
    font-size: 38px;
  }
  
  .cta-subtitle {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .cta-content {
    padding-right: 0;
  }
  
  .cta-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .cta-description {
    font-size: 16px;
    margin-bottom: 36px;
  }
  
  .cta-subtitle {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .cta-text {
    font-size: 15px;
    margin-bottom: 32px;
  }
  
  .cta-info {
    gap: 16px;
  }
  
  .cta-info-item img {
    width: 20px;
    height: 20px;
  }
  
  .cta-info-item a,
  .cta-info-item span {
    font-size: 15px;
  }
  
  .chat-header {
    padding: 20px;
  }
  
  .chat-avatar {
    width: 40px;
    height: 40px;
  }
  
  .chat-avatar img {
    width: 20px;
    height: 20px;
  }
  
  .chat-header-info h4 {
    font-size: 15px;
  }
  
  .chat-status {
    font-size: 12px;
  }
  
  .chat-messages {
    padding: 24px 16px;
    min-height: 240px;
  }
  
  .chat-message p {
    font-size: 14px;
    padding: 12px 16px;
  }
  
  .chat-typing {
    font-size: 13px;
    padding: 10px 16px;
  }
  
  .chat-footer {
    padding: 20px 16px;
  }
  
  .chat-response-time {
    font-size: 12px;
  }
  
  .btn-start-conversation {
    width: 100%;
    padding: 14px 28px;
    font-size: 11px;
  }
}