/* =========================================
   TRACES OF CRETE - PREMIUM LANDING PAGE
========================================= */

:root {
    /* Color Palette */
    --clr-primary: #8c592c; /* Copper / Bronze - Darkened for WCAG Contrast */
    --clr-primary-hover: #754a23;
    --clr-dark: #2C3625; /* Deep Olive */

    --iti-path-bg: #1a1a24;
    --iti-path-text: #ffffff;
    --iti-path-border: rgba(255,255,255,0.1);

    --clr-dark-light: #4f5d44;
    --clr-light: #fcfbf9; /* Warm Off-white */
    --clr-white: #ffffff;
    --clr-gray: #f2efe9;
    
    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Effects */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 10px 40px rgba(44, 54, 37, 0.08);
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.2);
    --radius-md: 12px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--clr-dark);
    background-color: var(--clr-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    color: var(--clr-dark);
}

.subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-primary);
    display: block;
    margin-bottom: 1rem;
}

.subtitle.light {
    color: var(--clr-primary);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 5%;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(252, 251, 249, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--clr-white);
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.logo span {
    font-weight: 500;
}

.header-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
    transition: filter 0.3s ease;
}

.navbar.scrolled .header-logo {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1)); /* Adjust or remove glow when scrolled on light bg */
}

.navbar.scrolled .logo {
    color: var(--clr-dark);
}

.mobile-nav-overlay {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--clr-white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--clr-dark);
}

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

.nav-links a {
    color: var(--clr-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-links a {
    color: var(--clr-dark);
}

.btn-nav {
    background: var(--clr-primary);
    color: var(--clr-white) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--clr-primary-hover);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: max(100vh, 800px);
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
    transform: translateZ(0);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, rgba(44,54,37,0.8) 0%, rgba(44,54,37,0.2) 100%),
        url('https://tracesofcrete.gr/wp-content/uploads/2026/06/6.jpg');
    background-size: cover;
    background-position: center 60%;
    z-index: -2;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.custom-datepicker-wrapper {
    position: relative;
    z-index: 50;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding-top: 5rem;
}

.hero-text-wrapper {
    max-width: 700px;
    color: var(--clr-white);
    animation: fadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 6rem);
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    background: var(--clr-primary);
    color: var(--clr-white);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: var(--clr-white);
    color: var(--clr-primary);
    transform: translateX(5px);
}

.btn-secondary {
    color: var(--clr-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--clr-white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* --- Features Section --- */
.features {
    padding: 8rem 5%;
    background: var(--clr-light);
    position: relative;
    z-index: 10;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--clr-white);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.feature-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(44, 54, 37, 0.12);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(177, 114, 57, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--clr-primary);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.feature-box:hover .icon-wrapper {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #666;
    font-size: 1.05rem;
}

/* --- Trip Details Section --- */
.trip-details {
    padding: 6rem 5%;
    background: var(--clr-gray);
}

.details-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.details-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.details-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-top: 0.3rem;
}

.info-item h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.info-item p {
    color: #666;
}

.inclusions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.inc-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.inc-col ul {
    list-style: none;
}

.inc-col li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.inc-col li i {
    color: var(--clr-primary);
    font-size: 0.9rem;
}

.schedule-card {
    background: var(--clr-white);
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.schedule-card h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.route-item {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--clr-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.route-item:hover {
    background: var(--clr-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.05);
}

.route-time {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 0.2rem;
    transition: var(--transition-smooth);
}

.route-time .arrow {
    color: var(--clr-primary);
    margin: 0 10px;
}

.route-item:hover .route-time {
    color: var(--clr-white);
}

.route-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.route-item:hover .route-label {
    color: #aaa;
}

.schedule-alert {
    display: flex;
    gap: 15px;
    background: rgba(177, 114, 57, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--clr-primary);
}

.schedule-alert i {
    color: var(--clr-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.schedule-alert p {
    font-size: 0.9rem;
    color: #555;
}

/* --- Booking Section --- */
.booking-section {
    padding: 8rem 5%;
    position: relative;
    background: var(--clr-dark);
    color: var(--clr-white);
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(177, 114, 57, 0.15) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(79, 93, 68, 0.2) 0%, transparent 50%);
}

.booking-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-header {
    margin-bottom: 4rem;
}

.booking-header h2 {
    color: var(--clr-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.glass-form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.form-step {
    margin-bottom: 3rem;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
}

.input-icon-wrapper input,
.input-icon-wrapper select {
    padding-left: 3rem !important;
}

.premium-form input,
.premium-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 1rem;
}

/* Fix for intl-tel-input plugin wrapper */
.iti {
    width: 100%;
}
.iti__country-list {
    background-color: rgba(20, 20, 25, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5) !important;
    max-width: 100vw;
    color: var(--clr-white) !important;
    font-family: 'Outfit', sans-serif !important;
}
.iti__country {
    padding: 10px 10px !important;
    text-align: left !important;
    display: block !important;
}
.iti__country:hover {
    background-color: rgba(255,255,255,0.1) !important;
}
.iti__search,
.iti__search-input,
.iti__country-list input[type="text"],
.iti__dropdown-content input[type="text"] {
    background: #1a1a24 !important;
    background-color: #1a1a24 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #ffffff !important;
    padding: 10px 12px !important;
    border-radius: 6px !important;
    width: calc(100% - 10px) !important;
    margin: 5px !important;
    display: block;
    box-sizing: border-box;
}
.iti__search-input::placeholder,
.iti__country-list input[type="text"]::placeholder,
.iti__dropdown-content input[type="text"]::placeholder {
    color: #aaaaaa !important;
}
.iti__search-input:focus {
    outline: none;
    border-color: rgba(177, 114, 57, 0.8) !important; /* using primary color */
    background: rgba(255,255,255,0.1) !important;
}
.iti__country-name {
    color: var(--clr-white) !important;
    font-size: 1rem !important;
    margin-right: 6px;
}
.iti__dial-code {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.9rem !important;
}
.premium-form input[type="tel"] {
    padding-left: 55px !important;
}

.premium-form select option {
    background: var(--clr-dark);
    color: var(--clr-white);
}

.premium-form input:focus,
.premium-form select:focus {
    outline: none;
    border-color: var(--clr-primary);
    background: rgba(0,0,0,0.4);
}

.error-msg {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

.pax-control-wrapper {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pax-selector {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    padding: 0.3rem;
}

.pax-selector button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--clr-white);
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    appearance: none;
}

.pax-selector button:hover {
    background: var(--clr-primary);
}

.pax-selector input {
    width: 50px;
    padding: 0;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--clr-white);
    font-size: 1.2rem;
    font-weight: 600;
    pointer-events: none;
}
/* --- Custom Pickup Request --- */
.custom-pickup-container {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.custom-pickup-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--clr-white);
    line-height: 1.4;
}

.custom-pickup-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--clr-primary);
    cursor: pointer;
    margin-top: 3px;
}

.map-wrapper {
    margin-top: 1.5rem;
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.map-wrapper.hidden {
    display: none;
}

.map-instruction {
    color: var(--clr-white);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.autocomplete-wrapper {
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
}

.autocomplete-wrapper input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--clr-white);
    font-family: inherit;
    box-sizing: border-box;
}

.autocomplete-wrapper input::placeholder {
    color: rgba(255,255,255,0.5);
}

.autocomplete-wrapper input:focus {
    outline: none;
    border-color: var(--clr-primary);
    background: rgba(255,255,255,0.15);
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    display: none; /* hidden by default */
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--clr-white);
    transition: background 0.2s ease;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover, .autocomplete-item.active {
    background: rgba(255,255,255,0.1);
}

.autocomplete-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.autocomplete-item-subtitle {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.pickup-map {
    height: 250px;
    border-radius: 8px;
    margin-bottom: 1rem;
    z-index: 10;
}

.pickup-address-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.2);
    color: var(--clr-primary);
    font-family: inherit;
    font-weight: 600;
}
.payment-summary {
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--clr-primary);
}

.payment-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.5;
}

.payment-disclaimer i {
    color: var(--clr-primary);
}

.btn-submit {
    width: 100%;
    background: var(--clr-primary);
    color: var(--clr-white);
    border: none;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-family: var(--font-display);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
}

.btn-submit:hover:not(:disabled) {
    background: var(--clr-white);
    color: var(--clr-primary);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3);
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    padding: 3rem;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--radius-md);
    margin-top: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.success-message h3 {
    color: #2ecc71;
    margin-bottom: 1rem;
}

.hidden {
    display: none;
}

/* --- Footer --- */
.premium-footer {
    background: #1a2215;
    color: var(--clr-white);
    padding: 6rem 5% 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-brand h2 {
    color: var(--clr-white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-brand h2 span {
    color: var(--clr-primary);
}

.footer-brand p {
    opacity: 0.7;
    max-width: 400px;
    margin-bottom: 2rem;
}

.socials a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    color: var(--clr-white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-right: 10px;
    transition: var(--transition-smooth);
}

.socials a:hover {
    background: var(--clr-primary);
    transform: translateY(-5px);
}

.footer-contact h4 {
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.8;
}

.footer-contact li i {
    color: var(--clr-primary);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.5;
    font-size: 0.9rem;
}

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

/* --- Responsive & Mobile Optimization --- */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile & Tablet Portrait */
@media (max-width: 768px) {
    /* Global Spacing */
    .features, .trip-details, .booking-section, .premium-footer, .quick-facts, .info-section, .faq-section, .how-it-works, .trust-section, .reviews-section {
        padding: 4rem 5%;
    }

    /* Navbar */
    .navbar {
        padding: 1rem 5%;
    }
    .logo {
        font-size: 1.2rem;
    }
    .nav-links {
        display: none; /* simple hidden for mobile, focused on booking */
    }

    /* Hero Section */
    .hero {
        min-height: max(80vh, 600px);
        align-items: center;
        padding-top: 5rem;
        overflow: hidden;
    }
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        margin-bottom: 1rem;
    }
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .btn-primary {
        justify-content: center;
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
    .btn-secondary {
        text-align: center;
        padding: 0.5rem;
    }

    /* Typography & Sections */
    .details-content h2, .booking-header h2 {
        font-size: 2rem;
    }
    .feature-box {
        padding: 2rem 1.5rem;
    }
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Inclusions Grid */
    .inclusions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Schedule Card */
    .schedule-card {
        padding: 2rem 1.5rem;
    }
    .route-item {
        padding: 1rem;
    }
    .route-time {
        font-size: 1.3rem;
    }

    /* Form */
    .input-grid {
        grid-template-columns: 1fr;
    }
    .glass-form-container {
        padding: 2rem 1.5rem;
    }
    .pax-control-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .pax-selector {
        justify-content: space-between;
        padding: 0.5rem;
    }
    .pax-selector input {
        flex-grow: 1;
        font-size: 1.3rem;
    }
    
    /* Touch Targets (Apple Guidelines: min 44px) */
    .premium-form input,
    .premium-form select,
    .btn-submit {
        min-height: 48px;
        font-size: 1rem;
    }
    .pax-selector button {
        width: 44px;
        height: 44px;
    }

    /* Summary */
    .payment-summary {
        padding: 1.5rem 1rem;
    }
    .summary-line {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    .summary-total {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Footer */
    .footer-brand p {
        margin-bottom: 1.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .glass-form-container {
        padding: 1.5rem 1rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .details-content h2, .booking-header h2 {
        font-size: 1.8rem;
    }
    .schedule-card h3 {
        font-size: 1.5rem;
    }
    .route-time {
        font-size: 1.1rem;
    }
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* --- Custom Date Picker --- */
.custom-datepicker-wrapper {
    position: relative;
    z-index: 500;
}

#datePickerBtn {
    cursor: pointer;
}

#bDateDisplay {
    cursor: pointer;
    background: rgba(0,0,0,0.2) !important;
}

.custom-calendar-popup {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 280px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 1rem;
    z-index: 100;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.custom-calendar-popup.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--clr-white);
    font-weight: 600;
}

.calendar-header button {
    background: transparent;
    border: none;
    color: var(--clr-white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.calendar-header button:hover {
    background: rgba(255,255,255,0.1);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    color: var(--clr-white);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    color: var(--clr-white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.calendar-day:not(.disabled):not(.empty):hover {
    background: rgba(255, 255, 255, 0.1);
}

.calendar-day.selected {
    background: var(--clr-primary) !important;
    color: var(--clr-white);
    font-weight: bold;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* --- Live Chat Widget --- */
.chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    pointer-events: none;
}

.whatsapp-float {
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 15px;
    padding: 0 25px;
    gap: 10px;
    pointer-events: auto;
}

.whatsapp-float i {
    font-size: 1.8rem;
}

.whatsapp-float span {
    font-size: 1rem;
    font-weight: 600;
}

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

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    pointer-events: auto;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    transform-origin: bottom right;
    opacity: 1;
    transform: scale(1);
}

.chat-window.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.chat-header {
    background: #075e54;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header-info i {
    font-size: 1.8rem;
    color: #25d366;
}

.chat-header-info div {
    display: flex;
    flex-direction: column;
}

.chat-header-info span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chat-header button {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.chat-header button:hover {
    opacity: 1;
}

.chat-body {
    padding: 20px 15px;
    min-height: 120px;
    background: rgba(255,255,255,0.02);
}

.chat-message {
    background: rgba(255,255,255,0.1);
    padding: 12px 15px;
    border-radius: 15px;
    border-top-left-radius: 0;
    font-size: 0.9rem;
    color: var(--clr-white);
    line-height: 1.4;
    display: inline-block;
    max-width: 90%;
}

.chat-footer {
    display: flex;
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    color: white;
    outline: none;
}

.chat-footer input::placeholder {
    color: rgba(255,255,255,0.5);
}

.chat-footer button {
    background: #25d366;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.chat-footer button:hover {
    background: #128c7e;
}

.footer-contact a:hover {
    color: var(--clr-primary) !important;
}

/* =========================================
   UI/UX REDESIGN CSS (Glassmorphism & New Layouts)
========================================= */

/* Glass Cards (Used for Quick Facts, Info sections) */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}
.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Quick Facts */
.quick-facts {
    position: relative;
    z-index: 10;
}

/* Grids */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Hero Elements */
.hero-title {
    font-size: 3.5rem;
}
.hero-desc {
    font-size: 1.1rem;
}
.clarity-strip {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.bullet-point {
    opacity: 0.5;
}

/* Timeline specific styles */
.timeline-step h4 {
    color: var(--clr-dark);
}
.timeline-step p {
    color: #555;
}
.timeline {
    border-left: 2px solid rgba(177, 114, 57, 0.3); /* Primary color low opacity */
}
.timeline-step .timeline-icon {
    background: var(--clr-primary);
    color: var(--clr-white);
    border: 3px solid var(--clr-light);
}

/* Hero WhatsApp Button */
.whatsapp-btn-hero {
    background: rgba(37, 211, 102, 0.15) !important;
    border: 1px solid rgba(37, 211, 102, 0.3) !important;
    color: var(--clr-white) !important;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: var(--transition-smooth);
    text-decoration: none;
}
.whatsapp-btn-hero i {
    color: #25d366;
    font-size: 1.2rem;
}
.whatsapp-btn-hero:hover {
    background: rgba(37, 211, 102, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn-solid {
    background: #25d366;
    color: #ffffff !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-btn-solid:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* Review Slider */
.reviews-slider-wrapper {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.reviews-slider {
    display: flex;
    gap: 2rem;
    animation: scrollReviews 40s linear infinite;
    width: max-content;
}
.reviews-slider:hover {
    animation-play-state: paused;
}
@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); } /* Scrolls exactly half to loop */
}
.review-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 350px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.review-glass:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}
.review-glass p {
    color: #444;
}

/* FAQ Glass */
.faq-glass {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-glass:hover {
    box-shadow: var(--shadow-soft);
    border-color: rgba(177, 114, 57, 0.3);
}
.faq-btn {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--clr-dark);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-display);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}
.faq-btn i {
    color: var(--clr-primary);
}
.faq-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-content p {
    color: #555;
    padding-bottom: 1.5rem;
}

/* =========================================
   MOBILE OPTIMIZATIONS FOR NEW UI/UX
========================================= */
@media (max-width: 768px) {
    /* Removed hamburger */

    .nav-links a {
        color: var(--clr-dark) !important;
        font-size: 1.1rem;
    }

    /* Hero Adjustments */
    .hero-title {
        font-size: 2.2rem !important;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .whatsapp-btn-hero, .whatsapp-btn-solid {
        width: 100%;
        justify-content: center;
        padding: 1.1rem;
    }

    /* Grids & Cards */
    .facts-grid {
        grid-template-columns: 1fr;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .features-container {
        grid-template-columns: 1fr;
    }
    .glass-card {
        padding: 1.5rem 1.2rem;
    }
    
    /* Reviews Slider */
    .reviews-slider-wrapper {
        width: 100%;
        margin-left: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .review-glass {
        width: 280px;
        padding: 1.5rem;
    }
    .reviews-slider {
        gap: 1rem;
        animation: scrollReviewsMobile 40s linear infinite;
    }
    
    /* FAQ */
    .faq-btn {
        font-size: 1rem;
        padding: 1.2rem;
    }
    .faq-content p {
        padding-bottom: 1.2rem;
    }
    
    /* Trust badges */
    .trust-section .badge {
        width: 100%;
        text-align: center;
    }
}

@keyframes scrollReviewsMobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.5rem)); } /* Accounts for 1rem gap on mobile */
}

/* =========================================
   STICKY MOBILE CTA
========================================= */
.sticky-mobile-cta {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    /* Disable Animations for Performance and UX */
    .hero-bg {
        animation: none !important;
        transform: none !important;
    }
    .hero-bg::after {
        animation: none !important;
        transform: none !important;
    }
    
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Modern Full-Screen Mobile Navigation */
    .mobile-menu-btn {
        display: block;
        font-size: 1.8rem;
        background: none;
        border: none;
        color: inherit;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        display: none !important; /* Hide desktop links */
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(13, 13, 18, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 10000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

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

    .mobile-menu-close {
        position: absolute;
        top: 2rem;
        right: 5%;
        background: none;
        border: none;
        color: white;
        font-size: 2.5rem;
        cursor: pointer;
    }

    .mobile-nav-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .mobile-nav-item {
        color: white;
        font-size: 1.8rem;
        text-decoration: none;
        font-weight: 600;
        font-family: var(--font-display);
        transition: color 0.3s ease;
    }
    
    .mobile-btn-nav {
        margin-top: 1rem;
        background: var(--clr-primary);
        padding: 1rem 2rem;
        border-radius: 30px;
        color: white !important;
        font-size: 1.5rem;
    }

    /* Fixed Sticky Mobile CTA - Floating to avoid iOS bottom bar touch-action deadzone */
    .sticky-mobile-cta {
        display: flex;
        position: fixed;
        bottom: 15px;
        left: 10px;
        width: calc(100% - 20px);
        background: var(--clr-light);
        padding: 0.8rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        z-index: 9999;
        gap: 0.8rem;
        align-items: center;
    }
    
    .sticky-btn-primary {
        flex: 1;
        background: var(--clr-primary);
        color: var(--clr-white);
        text-align: center;
        padding: 0.8rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-family: var(--font-display);
        font-size: 1.1rem;
    }
    
    .sticky-btn-whatsapp {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #25d366;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 8px;
        font-size: 1.5rem;
        text-decoration: none;
    }
    
    /* Hide the default chat toggle on mobile since we have the sticky WhatsApp */
    .whatsapp-float {
        display: none !important;
    }
    
    /* Add padding to body so sticky CTA doesn't cover content */
    body {
        padding-bottom: 70px;
    }
}
