/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
   --primary-color: #00C853;
   /* Vibrant Green */
   --primary-dark: #009624;
   --secondary-color: #FFAB00;
   /* Yellow/Gold Accent */
   --dark-bg: #111827;
   --light-bg: #F9FAFB;
   --text-main: #1F2937;
   --text-muted: #6B7280;
   --white: #ffffff;
   --font-heading: 'Outfit', sans-serif;
   --font-body: 'Outfit', sans-serif;
   --transition: all 0.3s ease;
   --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
   --radius: 12px;
}

* {
   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;
   overflow-x: hidden;
   background-color: var(--white);
}

a {
   text-decoration: none;
   color: inherit;
   transition: var(--transition);
}

ul {
   list-style: none;
}

img {
   max-width: 100%;
   display: block;
}

/* =========================================
   2. UTILITIES & LAYOUT
   ========================================= */
.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.section {
   padding: 80px 0;
}

.section-light {
   background-color: var(--light-bg);
}

.section-dark {
   background-color: var(--dark-bg);
   color: var(--white);
}

.section-header {
   text-align: center;
   margin-bottom: 60px;
}

.section-title {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 1rem;
   color: #0288D1;
}

.section-title.text-white {
   color: var(--white);
}

.section-subtitle {
   font-size: 1.1rem;
   color: var(--text-muted);
   max-width: 600px;
   margin: 0 auto;
}

.text-white-dim {
   color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
   display: inline-block;
   padding: 12px 30px;
   border-radius: 50px;
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition);
   border: 2px solid transparent;
}

.btn-primary {
   background-color: var(--primary-color);
   color: var(--dark-bg);
   box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
   font-weight: 700;
}

.btn-primary:hover {
   background-color: var(--primary-dark);
   transform: translateY(-2px);
}

.btn-secondary {
   background-color: transparent;
   border-color: var(--white);
   color: var(--white);
}

.btn-secondary:hover {
   background-color: var(--white);
   color: var(--text-main);
}

.btn-outline {
   border-color: var(--primary-color);
   color: #00702e;
   /* Darker green for text contrast */
   background: transparent;
   font-weight: 700;
}

.btn-outline:hover {
   background-color: var(--primary-color);
   color: var(--white);
}

.btn-full {
   width: 100%;
   text-align: center;
   background-color: var(--secondary-color);
   color: var(--text-main);
}

.btn-full:hover {
   background-color: #ffc107;
}

/* =========================================
   3. NAVIGATION
   ========================================= */
.navbar {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   background-color: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   padding: 15px 0;
}

.navbar .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo {
   display: flex;
   align-items: center;
}

.logo img {
   max-height: 50px;
   width: auto;
}

.nav-menu {
   display: flex;
   align-items: center;
   gap: 30px;
}

.nav-link {
   font-weight: 500;
   font-size: 0.95rem;
}

.nav-link:hover {
   color: var(--primary-color);
}

.nav-btn {
   background-color: var(--primary-color);
   color: var(--white) !important;
   padding: 8px 20px;
   border-radius: 20px;
}

.nav-btn:hover {
   background-color: var(--primary-dark);
}

.nav-actions {
   display: flex;
   align-items: center;
   gap: 20px;
}

/* Language Switcher */
.lang-select {
   position: relative;
   cursor: pointer;
   font-weight: 600;
   display: flex;
   align-items: center;
   gap: 5px;
   padding: 8px 16px;
   border: 1px solid #e5e7eb;
   border-radius: 20px;
   background-color: #f9fafb;
   transition: var(--transition);
}

.lang-select:hover {
   background-color: #f3f4f6;
   border-color: #d1d5db;
}

.lang-menu {
   position: absolute;
   top: 100%;
   right: 0;
   background: var(--white);
   border-radius: 8px;
   box-shadow: var(--shadow);
   padding: 10px;
   display: none;
   min-width: 120px;
   flex-direction: column;
   z-index: 1100;
   /* Default state hidden */
   display: none;
}

.hamburger {
   display: none;
   background: none;
   border: none;
   cursor: pointer;
}

.hamburger .bar {
   display: block;
   width: 25px;
   height: 3px;
   margin: 5px auto;
   background-color: var(--text-main);
   transition: all 0.3s ease-in-out;
}

.lang-select.active .lang-menu {
   display: flex;
}

.lang-option {
   padding: 8px 12px;
   border-radius: 6px;
   font-size: 0.9rem;
}

.lang-option:hover {
   background-color: var(--light-bg);
   color: var(--primary-color);
}

/* Hamburger */
.nav-toggle {
   display: none;
   cursor: pointer;
}

.bar {
   display: block;
   width: 25px;
   height: 3px;
   margin: 5px auto;
   transition: var(--transition);
   background-color: var(--text-main);
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
   height: 100vh;
   min-height: 600px;
   position: relative;
   display: flex;
   align-items: center;
   color: var(--white);
   padding-top: 80px;
}

.hero-bg {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-image: url('./Hero.webp');
   background-size: cover;
   background-position: center;
   z-index: -2;
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
   z-index: -1;
}

.hero-title {
   font-size: 3.5rem;
   line-height: 1.1;
   margin-bottom: 1.5rem;
   max-width: 700px;
}

.highlight {
   color: var(--secondary-color);
}

.hero-subtitle {
   font-size: 1.25rem;
   margin-bottom: 2.5rem;
   max-width: 600px;
   font-weight: 300;
}

.hero-buttons {
   display: flex;
   gap: 15px;
}

/* =========================================
   5. CARDS & SERVICES
   ========================================= */
.routes-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.route-card {
   background: var(--white);
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: var(--transition);
   border: 1px solid #f0f0f0;
   display: flex;
   flex-direction: column;
   height: 100%;
}

.route-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.card-image {
   height: 200px;
   overflow: hidden;
   flex-shrink: 0;
}

.card-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}

.route-card:hover .card-image img {
   transform: scale(1.1);
}

.card-content {
   padding: 25px;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
}

.route-desc {
   font-size: 0.9rem;
   color: var(--text-muted);
   margin-bottom: 20px;
   line-height: 1.5;
}

.card-content h3 {
   color: #0288D1;
   margin-bottom: 10px;
}

.price {
   font-weight: 700;
   font-size: 1.2rem;
   color: var(--text-main);
   margin-bottom: 20px;
}

.card-features {
   margin-bottom: 25px;
}

/* Service Info Styles */
.service-info {
   margin: 20px 0;
   text-align: left;
}

.service-info h4 {
   font-size: 1rem;
   color: var(--text-main);
   margin-bottom: 10px;
   font-weight: 700;
}

.service-info ul {
   list-style: none;
   padding: 0;
}

.service-info ul li {
   font-size: 0.9rem;
   color: var(--text-muted);
   margin-bottom: 5px;
   padding-left: 0;
}

.card-content .btn {
   margin-top: auto;
   align-self: flex-start;
   width: 100%;
   text-align: center;
}

.card-features li {
   margin-bottom: 10px;
   color: var(--text-muted);
   font-size: 0.9rem;
   display: flex;
   align-items: center;
   gap: 10px;
}

.card-features i,
.card-features svg {
   color: var(--primary-color);
}

.card-features i.fa-xmark,
.card-features svg.fa-xmark {
   color: #ef5350;
   /* Red for excluded items */
}

/* Services Grid */
.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 30px;
}

.service-item {
   background: var(--white);
   padding: 30px 20px;
   border-radius: var(--radius);
   text-align: center;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
   transition: var(--transition);
}

.service-item:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.icon-box {
   width: 60px;
   height: 60px;
   background-color: #E1F5FE;
   color: #0288D1;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   margin: 0 auto 20px;
   overflow: hidden;
   /* Ensure image stays inside */
}

.service-item h3 {
   margin-bottom: 10px;
   font-size: 1.1rem;
}

.service-item p {
   color: var(--text-muted);
   font-size: 0.9rem;
}

/* Comfort Split */
.content-split {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: stretch;
}

.split-image {
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
   height: 100%;
}

.split-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}

.split-image:hover img {
   transform: scale(1.1);
}

.comfort-list {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
   margin-top: 30px;
}

.comfort-list li {
   display: flex;
   gap: 15px;
}

.comfort-list i,
.comfort-list svg {
   font-size: 1.5rem;
   color: var(--secondary-color);
}

.comfort-list h3 {
   font-size: 1rem;
   margin-bottom: 5px;
}



.comfort-list p {
   font-size: 0.85rem;
   color: rgba(255, 255, 255, 0.6);
}

/* =========================================
   6. TESTIMONIALS & FAQ
   ========================================= */
/* Carousel Styles */
.carousel-container {
   position: relative;
   display: flex;
   align-items: center;
   gap: 15px;
   /* space for arrows */
}

.testimonials-wrapper {
   overflow: hidden;
   width: 100%;
}

.testimonials-track {
   display: flex;
   gap: 30px;
   transition: transform 0.5s ease;
}

.testimonial-card {
   flex: 0 0 calc(33.333% - 20px);
   /* 3 cards visible minus gap adjustment */
   background: #f8f9fa;
   border-radius: 12px;
   border: none;
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   transition: var(--transition);
}

.testimonial-body {
   padding: 25px;
   border-top: 4px solid var(--secondary-color);
}

/* Navigation Buttons */
.slider-btn {
   background: var(--white);
   border: none;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   cursor: pointer;
   font-size: 1.2rem;
   color: var(--primary-color);
   transition: var(--transition);
   z-index: 10;
   flex-shrink: 0;
   display: flex;
   align-items: center;
   justify-content: center;
}

.slider-btn:hover {
   background: var(--primary-color);
   color: var(--white);
   transform: scale(1.1);
}

/* Responsive Carousel */
@media (max-width: 900px) {
   .testimonial-card {
      flex: 0 0 calc(50% - 15px);
      /* 2 cards */
   }
}

@media (max-width: 600px) {
   .testimonial-card {
      flex: 0 0 100%;
      /* 1 card */
   }
}

.stars {
   color: var(--secondary-color);
   margin-bottom: 15px;
}

.review-text {
   font-style: italic;
   color: var(--text-muted);
   margin-bottom: 20px;
   font-size: 0.95rem;
}

.reviewer {
   display: flex;
   align-items: center;
   gap: 15px;
   margin-top: 15px;
}

.name {
   display: block;
   font-weight: 700;
   color: var(--text-main);
}

.role {
   font-size: 0.8rem;
   color: var(--text-muted);
}

/* FAQ */
.faq-container {
   max-width: 800px;
   margin: 0 auto;
}

.faq-item {
   background: var(--white);
   border-radius: 8px;
   margin-bottom: 15px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
   overflow: hidden;
}

.faq-question {
   padding: 20px;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
   background: none;
   border: none;
   width: 100%;
   text-align: left;
   font-family: inherit;
   font-size: inherit;
   color: inherit;
}

.faq-question:focus-visible {
   outline: 2px solid var(--primary-color);
   outline-offset: -2px;
   background-color: rgba(0, 0, 0, 0.02);
}

.faq-answer {
   padding: 0 20px;
   max-height: 0;
   overflow: hidden;
   transition: all 0.3s ease-out;
   background-color: #fafafa;
   color: var(--text-muted);
}

.faq-item.active .faq-answer {
   padding: 20px;
   max-height: 1000px;
   border-top: 1px solid #eee;
}

.faq-item.active i,
.faq-item.active svg {
   transform: rotate(180deg);
}

/* =========================================
   7. CONTACT & FOOTER
   ========================================= */
.contact-section {
   background: linear-gradient(135deg, #0277bd 0%, #004c8c 100%);
   color: var(--white);
}

.contact-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
}

.info-item {
   display: flex;
   gap: 20px;
   margin-bottom: 30px;
}

.info-item .icon {
   width: 50px;
   height: 50px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
}

.contact-form {
   background: var(--white);
   padding: 40px;
   border-radius: var(--radius);
   color: var(--text-main);
}

.form-group {
   margin-bottom: 20px;
}

.form-group label {
   display: block;
   margin-bottom: 8px;
   font-weight: 500;
   font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
   width: 100%;
   padding: 12px;
   border: 1px solid #ddd;
   border-radius: 8px;
   font-family: inherit;
   transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
   border-color: var(--primary-color);
   outline: 2px solid var(--primary-color);
   outline-offset: -1px;
}

/* Footer */
.footer {
   background-color: #0b111e;
   color: rgba(255, 255, 255, 0.7);
   padding: 80px 0 30px;
}

.footer-grid {
   display: grid;
   grid-template-columns: 1.5fr 1fr 1fr 1fr;
   gap: 40px;
   margin-bottom: 60px;
}

.footer-col h4 {
   color: var(--white);
   margin-bottom: 25px;
   font-size: 1.1rem;
   font-weight: 600;
}

.footer-desc {
   margin: 20px 0;
   line-height: 1.6;
   max-width: 300px;
}



/* =========================================
   8. CHATBOT EVA
   ========================================= */
.chatbot-fab {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 60px;
   height: 60px;
   background-color: var(--primary-color);
   color: var(--white);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.8rem;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
   cursor: pointer;
   z-index: 2000;
   transition: var(--transition);
   animation: bounce 2s infinite;
}

.chatbot-fab:hover {
   transform: scale(1.1);
   background-color: var(--primary-dark);
}

.chatbot-window {
   position: fixed;
   bottom: 100px;
   right: 30px;
   width: 350px;
   height: 500px;
   background-color: var(--white);
   border-radius: 20px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
   z-index: 2001;
   display: flex;
   flex-direction: column;
   overflow: hidden;
   transform: translateY(20px);
   opacity: 0;
   visibility: hidden;
   transition: var(--transition);
}

.chatbot-window.active {
   transform: translateY(0);
   opacity: 1;
   visibility: visible;
}

.chat-header {
   background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
   color: var(--white);
   padding: 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.chat-profile {
   display: flex;
   align-items: center;
   gap: 15px;
}

.chat-avatar {
   width: 40px;
   height: 40px;
   background-color: var(--white);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--primary-color);
   font-size: 1.2rem;
}

.chat-info h3 {
   font-size: 1rem;
   font-weight: 600;
}

.chat-info span {
   font-size: 0.8rem;
   opacity: 0.9;
}

.chat-close {
   background: none;
   border: none;
   color: var(--white);
   font-size: 1.2rem;
   cursor: pointer;
   transition: var(--transition);
}

.chat-close:hover {
   transform: rotate(90deg);
}

.chat-messages {
   flex: 1;
   padding: 20px;
   overflow-y: auto;
   background-color: #f5f7fb;
   display: flex;
   flex-direction: column;
   gap: 15px;
   /* Removed justify-content: flex-end to allow proper scrolling */
}

.message {
   max-width: 80%;
   padding: 12px 16px;
   border-radius: 12px;
   font-size: 0.9rem;
   line-height: 1.5;
   position: relative;
   animation: messageIn 0.3s ease;
}

@keyframes messageIn {
   from {
      opacity: 0;
      transform: translateY(10px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.message.bot {
   background-color: var(--white);
   color: var(--text-main);
   border-bottom-left-radius: 2px;
   align-self: flex-start;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.message.user {
   background-color: var(--primary-color);
   color: var(--white);
   border-bottom-right-radius: 2px;
   align-self: flex-end;
}

.chat-options {
   padding: 10px 15px;
   /* Added horizontal padding */
   background-color: var(--white);
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   border-top: 1px solid #f0f0f0;
   max-height: 220px;
   /* Increased slightly */
   overflow-y: auto;
   width: 100%;
   /* Ensure it takes full width */
   box-sizing: border-box;
   /* Include padding in width */
}

/* Custom Scrollbar for Options */
.chat-options::-webkit-scrollbar {
   width: 6px;
}

.chat-options::-webkit-scrollbar-thumb {
   background-color: #e0e0e0;
   border-radius: 3px;
}

.chat-options::-webkit-scrollbar-track {
   background-color: #fafafa;
}

.chat-option-btn {
   background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
   border: none;
   color: var(--white);
   padding: 12px 16px;
   border-radius: 12px;
   font-size: 0.85rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   flex: 1 1 auto;
   text-align: center;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   min-height: 44px;
   height: auto;
   /* Allow button to grow with content */
   white-space: normal;
   /* Allow text to wrap */
   line-height: 1.3;
   word-break: break-word;
   /* Break long words if needed */
}

.chat-option-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
   filter: brightness(1.1);
}

@keyframes bounce {

   0%,
   20%,
   50%,
   80%,
   100% {
      transform: translateY(0);
   }

   40% {
      transform: translateY(-10px);
   }

   60% {
      transform: translateY(-5px);
   }
}



/* Scrollbar for chat */
.chat-messages::-webkit-scrollbar {
   width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
   background: #f1f1f1;
}

.chat-messages::-webkit-scrollbar-thumb {
   background: #ccc;
   border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
   background: #aaa;
}

/* Chatbot Inputs */
.chat-input-text,
.chat-date-input,
.chat-pax-select {
   width: 100%;
   padding: 10px 14px;
   border: 1px solid #ddd;
   border-radius: 12px;
   font-family: inherit;
   font-size: 0.95rem;
   color: var(--text-main);
   background-color: #fff;
   transition: var(--transition);
   outline: none;
   margin-bottom: 8px;
   /* Space before button */
}

.chat-input-text:focus,
.chat-date-input:focus,
.chat-pax-select:focus {
   border-color: var(--primary-color);
   box-shadow: 0 0 0 3px rgba(11, 17, 30, 0.1);
}

/* Specific tweaks */
.chat-date-input {
   min-height: 42px;
   /* Ensure touch target size */
}

/* Ensure inline options container handles inputs gracefully */
.chat-options-inline {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
   gap: 8px;
   width: 100%;
   max-width: 300px;
   align-self: center;
   /* Removed max-height and overflow to show all options */
   padding: 12px 8px 8px 8px;
   margin-top: 15px;
   position: relative;
}

/* Visual separator between chat and options */
.chat-options-inline::before {
   content: '';
   position: absolute;
   top: 0;
   left: 10%;
   right: 10%;
   height: 1px;
   background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}



/* Mobile Responsive Chat */
@media (max-width: 480px) {
   .chatbot-window {
      width: 90%;
      height: 70vh;
      height: 70dvh;
      max-height: 600px;
      bottom: 20px;
      right: 5%;
      left: 5%;
      border-radius: 20px;
      transform: translateY(120%);
      z-index: 2100;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
   }

   .chatbot-fab {
      bottom: 20px;
      right: 20px;
   }
}

.chat-date-input,
.chat-pax-select {
   width: 100%;
   padding: 10px;
   border: 1px solid #ddd;
   border-radius: 8px;
   font-family: inherit;
   margin-bottom: 10px;
   outline: none;
}

.chat-date-input:focus,
.chat-pax-select:focus {
   border-color: var(--primary-color);
}

.logo-footer {
   display: inline-block;
   margin-bottom: 20px;
}

.logo-footer img {
   max-height: 80px;
   width: auto;
}

.brand-social {
   display: flex;
   justify-content: flex-start;
   gap: 15px;
}

.brand-social a {
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
}

.brand-social a:hover {
   background: var(--primary-color);
   color: var(--white);
   transform: translateY(-3px);
}

.footer-menu li {
   margin-bottom: 12px;
}

.footer-menu a {
   transition: var(--transition);
   font-size: 0.95rem;
}

.footer-menu a:hover {
   color: var(--primary-color);
   padding-left: 5px;
}

.footer-contacts li {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 15px;
   font-size: 0.95rem;
}

.footer-contacts i,
.footer-contacts svg {
   color: var(--primary-color);
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 30px;
   text-align: center;
   font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 900px) {
   .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
   }
}

@media (max-width: 500px) {
   .footer-grid {
      grid-template-columns: 1fr;
   }

   .brand-social {
      justify-content: flex-start;
   }
}

/* =========================================
   8. RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
   .content-split {
      grid-template-columns: 1fr;
   }

   .contact-wrapper {
      grid-template-columns: 1fr;
   }

   .hero-title {
      font-size: 2.5rem;
   }
}

@media (max-width: 768px) {
   .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: var(--white);
      width: 100%;
      height: auto;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
      padding: 40px 0;
   }

   .nav-menu.active {
      left: 0;
   }

   .nav-item {
      margin: 15px 0;
   }

   .nav-toggle,
   .hamburger {
      display: block;
   }

   .nav-actions {
      gap: 15px;
      display: flex;
      /* Ensure visible */
      align-items: center;
   }

   .current-lang {
      font-size: 1.1rem;
      padding: 5px 10px;
      border: 1px solid #eee;
      border-radius: 6px;
   }

   /* Hide language text on mobile if desired, or keep short */
   /* .current-lang span {
      display: none;
   } */

   /* Adjust dropdown position for mobile */
   .lang-menu {
      position: absolute;
      top: 50px;
      right: 0;
      min-width: 120px;
      background: var(--white);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      display: none;
      flex-direction: column;
      z-index: 1002;
      border-radius: 8px;
   }

   .lang-select.active .lang-menu {
      display: flex;
   }

   .nav-toggle.active .bar:nth-child(2),
   .hamburger.active .bar:nth-child(2) {
      opacity: 0;
   }

   .nav-toggle.active .bar:nth-child(1),
   .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
   }

   .nav-toggle.active .bar:nth-child(3),
   .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
   }

   .contact-form {
      padding: 25px;
   }
}



/* Contact Modal Styles */
.modal-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   /* Semi-transparent background */
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 2000;
   /* Ensure it's above everything */
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* =========================================
   9. MOBILE FIXES
   ========================================= */
@media (max-width: 768px) {
   .lang-select {
      padding: 0;
      border: none;
      border-radius: 0;
      background-color: transparent;
   }

   .lang-select:hover {
      background-color: transparent;
      border-color: transparent;
   }
}

.modal-overlay.active {
   opacity: 1;
   visibility: visible;
}

.modal-content {
   background: white;
   padding: 2rem;
   border-radius: 12px;
   width: 90%;
   max-width: 400px;
   text-align: center;
   position: relative;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   transform: translateY(20px);
   transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
   transform: translateY(0);
}

.modal-close {
   position: absolute;
   top: 10px;
   right: 15px;
   background: none;
   border: none;
   font-size: 2rem;
   cursor: pointer;
   color: #666;
   transition: color 0.3s ease;
}

.modal-close:hover {
   color: #333;
}

.modal-title {
   font-size: 1.5rem;
   color: var(--primary-color);
   margin-bottom: 0.5rem;
}

.modal-subtitle {
   color: #666;
   margin-bottom: 2rem;
}

.modal-buttons {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.modal-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
   color: white;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   color: white;
   /* Ensure text remains white */
}

.modal-btn i,
.modal-btn svg {
   margin-right: 10px;
   font-size: 1.2rem;
}

.modal-btn.whatsapp {
   background-color: #25D366;
}

.modal-btn.phone {
   background-color: var(--primary-color);
   /* Use site primary color */
}

.modal-btn.email {
   background-color: #666;
}

/* New Contact Section Styles */
.contact-wrapper.centered-contact {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   gap: 40px;
}

.contact-header {
   max-width: 700px;
   margin-bottom: 20px;
}

.contact-actions-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
   width: 100%;
   max-width: 1200px;
}

.contact-card {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   padding: 30px;
   border-radius: 16px;
   border: 1px solid rgba(255, 255, 255, 0.2);
   display: flex;
   flex-direction: column;
   align-items: center;
   color: var(--white);
   text-decoration: none;
   transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
   cursor: pointer;
}

.contact-card:hover {
   transform: translateY(-10px);
   background: rgba(255, 255, 255, 0.15);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-card .icon-circle {
   width: 70px;
   height: 70px;
   background: rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   margin-bottom: 20px;
   transition: background 0.3s ease;
}

.contact-card:hover .icon-circle {
   background: var(--white);
}

.contact-card:hover .icon-circle i,
.contact-card:hover .icon-circle svg {
   color: var(--primary-color);
}

.contact-card.action-whatsapp:hover .icon-circle i,
.contact-card.action-whatsapp:hover .icon-circle svg {
   color: #25D366;
}

.contact-card h3 {
   font-size: 1.25rem;
   margin-bottom: 10px;
   font-weight: 600;
}

.contact-card p {
   color: rgba(255, 255, 255, 0.8);
   margin-bottom: 20px;
   font-size: 0.95rem;
}

.contact-card .action-btn {
   display: inline-block;
   padding: 10px 20px;
   border: 1px solid rgba(255, 255, 255, 0.5);
   border-radius: 50px;
   font-size: 0.9rem;
   font-weight: 500;
   transition: all 0.3s ease;
}

.contact-card:hover .action-btn {
   background: var(--white);
   color: var(--primary-color);
   border-color: var(--white);
}

/* Mobile Responsiveness for Contact Cards */
@media (max-width: 768px) {
   .contact-actions-grid {
      grid-template-columns: 1fr;
   }
}

/* Inline options for dynamic flow */
.chat-options-inline {
   padding: 10px 0;
   background-color: transparent;
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   width: 100%;
   animation: messageIn 0.3s ease;
}


/* Prevent zoom on mobile inputs */
@media (max-width: 768px) {

   .chat-date-input,
   .chat-pax-select,
   .chat-input-text {
      font-size: 16px !important;
   }
}

/* Custom Calendar Icon for Date Input */
.chat-date-input[type="date"] {
   position: relative;
   padding-right: 40px;
   background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
   background-repeat: no-repeat;
   background-position: right 10px center;
   background-size: 20px;
   -webkit-appearance: none;
   appearance: none;
}

.chat-date-input[type="date"]::-webkit-calendar-picker-indicator {
   background: transparent;
   bottom: 0;
   color: transparent;
   cursor: pointer;
   height: auto;
   left: 0;
   position: absolute;
   right: 0;
   top: 0;
   width: auto;
}

/* Footer Logo White Filter */
.logo-footer img {
   filter: brightness(0) invert(1);
}