/* =========================================
   FANTAZIA CRUISE - Main Stylesheet
   ========================================= */

/* === CSS Variables === */
:root {
    --primary-dark: #1a1a2e;
    --primary-purple: #16213e;
    --accent-purple: #6c5ce7;
    --accent-pink: #e84393;
    --accent-cyan: #00cec9;
    --text-light: #ffffff;
    --text-muted: #b2bec3;
    --gold: #f1c40f;
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

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

/* === Navigation === */
.navbar {
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand .logo {
    height: 100px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-cyan);
}

.menu-toggle, .lang-toggle {
    font-size: 0.85rem;
}

/* === Hero Section === */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=1920&h=1080&fit=crop') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 46, 0.3) 0%,
        rgba(26, 26, 46, 0.5) 50%,
        rgba(26, 26, 46, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.btn-book-now {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 12px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

/* === Section Styles === */
.section-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.section-header {
    margin-bottom: 3rem;
}

/* === Trips Section === */
.trips-section {
    background: var(--primary-purple);
    padding: 80px 0;
}

.trip-card {
    background: transparent;
    text-align: left;
}

.trip-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.trip-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    height: 200px;
}

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

.trip-card:hover .trip-image img {
    transform: scale(1.1);
}

.trip-actions {
    display: flex;
    gap: 10px;
}

.trip-actions .btn {
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 8px 20px;
}

.trip-actions .btn-outline-light {
    border-color: var(--text-muted);
    color: var(--text-muted);
}

.trip-actions .btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-dark);
    border-color: var(--text-light);
}

.trip-actions .btn-primary {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
}

.trip-actions .btn-primary:hover {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
}

/* Carousel Indicators */
.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.carousel-indicators-custom .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators-custom .indicator.active {
    background: var(--text-light);
}

/* === Experience Section === */
.experience-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.experience-section .section-title {
    font-size: 2rem;
}

.experience-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
    color: white;
}

/* === Partners Section === */
.partners-section {
    background: var(--primary-dark);
    padding: 40px 0 80px;
}

.partners-box, .info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.partners-box h5, .info-box h5 {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
}

.partners-carousel {
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--text-muted);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--text-light);
    color: var(--primary-dark);
    border-color: var(--text-light);
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
}

.partners-logos img {
    height: 40px;
    width: auto;
}

/* Weather Info */
.weather-info {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.weather-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.weather-item i {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.weather-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.weather-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === Footer === */
.footer {
    background: var(--primary-purple);
    padding: 60px 0 0;
}

.footer h5 {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.newsletter {
    display: flex;
    max-width: 300px;
}

.newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    border-radius: 4px 0 0 4px;
    padding: 12px 15px;
    font-size: 0.85rem;
}

.newsletter .form-control::placeholder {
    color: var(--text-muted);
}

.newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.btn-subscribe {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 12px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-subscribe:hover {
    background: #00b894;
    color: var(--primary-dark);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-purple);
    color: var(--text-light);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

/* === Page Header === */
.page-header {
    background: var(--gradient-purple);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin: 0;
}

.content-section {
    padding: 80px 0;
}

/* === Responsive Styles === */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .trips-section, .experience-section {
        padding: 60px 0;
    }
    
    .weather-info {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .weather-item {
        flex: 0 0 33.333%;
    }
    
    .partners-logos {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .btn-book-now {
        padding: 10px 30px;
        font-size: 0.8rem;
    }
    
    .trip-actions {
        flex-direction: column;
    }
    
    .newsletter {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter .form-control,
    .btn-subscribe {
        border-radius: 4px;
    }
}

/* =========================================
   TRIP DETAIL PAGE STYLES
   ========================================= */

.trip-details-section {
    background: var(--primary-dark);
    padding: 50px 0;
}

.trip-detail-title {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 12px;
}

.trip-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 2px;
}

.trip-description {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-section, .menu-section {
    margin-bottom: 1.2rem;
}

.program-title, .menu-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
}

.program-title::before, .menu-title::before {
    content: '';
    width: 3px;
    height: 16px;
    background: var(--accent-cyan);
    margin-right: 10px;
    border-radius: 2px;
}

.menu-intro {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.program-list, .menu-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.program-list li, .menu-list li {
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 2px 0;
    padding-left: 15px;
    position: relative;
}

.program-list li::before, .menu-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.trip-cta-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2rem;
}

/* Booking Card */
.booking-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 3px solid #2d2d2d;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.booking-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #666;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-info {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-info:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    color: #888;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.boat-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #1a1a2e;
}

.depart-location {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.price {
    margin: 0;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
}

.btn-book-trip {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 14px 30px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    border-radius: 8px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
}

.btn-book-trip:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6) !important;
}

.trip-side-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.trip-side-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(26, 26, 46, 0.5) 100%);
    pointer-events: none;
}

.trip-side-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trip-side-image:hover img {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    padding: 100px 0;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Booking Form Section */
.booking-form-section {
    background: linear-gradient(180deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
}

.booking-form-card {
    background: linear-gradient(145deg, #1e2545 0%, #16213e 100%);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.booking-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.booking-form-card .form-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.booking-form-card .form-control,
.booking-form-card .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 4px rgba(0, 206, 201, 0.15);
    color: var(--text-light);
    outline: none;
}

.booking-form-card .form-control::placeholder {
    color: rgba(178, 190, 195, 0.7);
}

.booking-form-card .form-select {
    cursor: pointer;
}

.booking-form-card .form-select option {
    background: var(--primary-purple);
    color: var(--text-light);
}

.booking-form-card label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-submit-booking {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    border: none;
    color: #fff;
    padding: 20px 70px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 12px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 65, 108, 0.5);
    transition: all 0.3s ease;
    margin-top: 10px;
    cursor: pointer;
}

.btn-submit-booking:hover {
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    color: #fff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 65, 108, 0.6);
}

.btn-submit-booking:active {
    transform: translateY(-2px) scale(1.01);
}

/* Country Selector with Flags - Select2 Styling */
.country-select-wrapper {
    position: relative;
}

.country-select-wrapper .select2-container {
    width: 100% !important;
}

/* Main selection box */
.country-select-wrapper .select2-container--default .select2-selection--single {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    height: 54px !important;
    padding: 10px 15px !important;
}

/* Selected text */
.country-select-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
    line-height: 30px !important;
    padding-left: 5px !important;
}

/* Placeholder text */
.country-select-wrapper .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(178, 190, 195, 0.7) !important;
}

/* Arrow */
.country-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px !important;
    right: 10px !important;
}

.country-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #b2bec3 transparent transparent transparent !important;
}

/* Focus state */
.country-select-wrapper .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #00cec9 !important;
    box-shadow: 0 0 0 4px rgba(0, 206, 201, 0.15) !important;
}

/* Dropdown container */
.select2-dropdown {
    background: #1e2545 !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

/* Search box in dropdown */
.select2-container--default .select2-search--dropdown {
    padding: 10px !important;
    background: #16213e !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    padding: 12px 15px !important;
    font-size: 0.95rem !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
    color: rgba(178, 190, 195, 0.7) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #00cec9 !important;
    outline: none !important;
}

/* Results container */
.select2-results {
    background: #1e2545 !important;
}

.select2-results__options {
    max-height: 300px !important;
}

/* Each option in dropdown */
.select2-container--default .select2-results__option {
    padding: 12px 15px !important;
    color: #ffffff !important;
    background: transparent !important;
    font-size: 0.95rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Hovered option */
.select2-container--default .select2-results__option--highlighted,
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option:hover {
    background: linear-gradient(135deg, #00cec9 0%, #00b894 100%) !important;
    color: #1a1a2e !important;
}

/* Selected option */
.select2-container--default .select2-results__option[aria-selected=true] {
    background: rgba(0, 206, 201, 0.2) !important;
    color: #00cec9 !important;
}

/* No results message */
.select2-results__message {
    color: rgba(178, 190, 195, 0.7) !important;
    padding: 15px !important;
    text-align: center !important;
}

/* Country option with flag */
.country-option {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.country-option .flag {
    font-size: 1.4rem !important;
}

/* Clear button */
.select2-container--default .select2-selection__clear {
    color: #b2bec3 !important;
    font-size: 1.2rem !important;
    margin-right: 10px !important;
}

.select2-container--default .select2-selection__clear:hover {
    color: #ff416c !important;
}

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

.contact-info-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.contact-card {
    background: var(--primary-purple);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form-section {
    background: var(--primary-purple);
    padding: 80px 0;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 14px 18px;
    border-radius: 8px;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
    box-shadow: none;
    color: var(--text-light);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.country-select-wrapper {
    position: relative;
}

.country-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.btn-send-message {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 12px 35px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.btn-send-message:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

.about-content-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--primary-purple);
    border-radius: 12px;
    height: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--text-light);
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.about-feature p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.why-choose-list li i {
    color: var(--accent-green);
}

/* =========================================
   TRIPS LIST PAGE STYLES
   ========================================= */

.trips-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
}

.header-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 10px;
}

.trips-list-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.trip-card-full {
    background: linear-gradient(145deg, #1e2545 0%, #16213e 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trip-card-full:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 206, 201, 0.3);
}

.trip-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.trip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trip-card-full:hover .trip-card-image img {
    transform: scale(1.1);
}

.trip-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e84393 0%, #d63384 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.4);
}

.trip-price-badge span {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.9;
}

.trip-card-content {
    padding: 30px;
}

.trip-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    transition: color 0.3s ease;
}

.trip-card-full:hover .trip-card-content h3 {
    color: var(--accent-cyan);
}

.trip-boat {
    color: var(--accent-cyan);
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.trip-excerpt {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trip-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.btn-primary-trip {
    background: linear-gradient(135deg, #00cec9 0%, #00b894 100%) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 14px 28px !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    box-shadow: 0 6px 20px rgba(0, 206, 201, 0.5) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
}

.btn-primary-trip:hover {
    background: linear-gradient(135deg, #00b894 0%, #00a885 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0, 206, 201, 0.6) !important;
}

.btn-outline-trip {
    background: linear-gradient(135deg, #e84393 0%, #d63384 100%) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 14px 28px !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(232, 67, 147, 0.5) !important;
}

.btn-outline-trip:hover {
    background: linear-gradient(135deg, #d63384 0%, #c42a78 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(232, 67, 147, 0.6) !important;
}

/* =========================================
   FLASH MESSAGES
   ========================================= */

.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}
