/* ============================================
   LuxETL - Luxury Travel Website Styles
   Elegant, minimalist, high-end luxury design
   Dark/Navy and Gold accents
   ============================================ */

:root {
    --primary-dark: #0a0e27;
    --primary-navy: #1a1f3a;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4e4bc;
    --text-light: #f5f5f5;
    --text-gray: #b8b8b8;
    --overlay-dark: rgba(10, 14, 39, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: auto !important;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-light);
    background-color: var(--primary-dark);
    line-height: 1.6;
    position: relative;
}

/* Elegant serif for headings */
h1, h2, h3, h4, h5, h6,
.hero-headline,
.section-title,
.page-hero-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold) !important;
    text-decoration: none;
}

.brand-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4e4bc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 400;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-gold) !important;
}

/* Dropdown Menu Styling */
.navbar-nav .dropdown-menu {
    background: rgba(10, 14, 39, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.navbar-nav .dropdown-item {
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    padding-left: 2rem;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: 0.15em;
}

.navbar-nav .dropdown-toggle:focus {
    color: var(--accent-gold) !important;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 100vh;
    display: block;
    overflow: visible;
    padding-top: 80px; /* Account for fixed navbar */
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    background-image: url('../../images/hero/slider1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.4) 0%, rgba(26, 31, 58, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 2rem;
    }
}

.hero-subheadline {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    color: var(--primary-dark);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    pointer-events: none;
}

.scroll-arrow {
    color: var(--accent-gold);
    font-size: 2rem;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   Sections
   ============================================ */

section {
    padding: 5rem 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    min-height: 300px;
    width: 100%;
    display: block;
    visibility: visible;
}

/* Ensure sections are visible by default */
section:not(.hero-section) {
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Only apply fade-in if JavaScript adds the initial state */
section.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ============================================
   Welcome Section
   ============================================ */

.welcome-section {
    background: var(--primary-dark);
    padding: 6rem 0;
}

.welcome-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.welcome-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 0 auto 3rem;
}

.welcome-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.welcome-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.welcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.welcome-list li {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 2.2;
    padding-left: 1.5rem;
    position: relative;
}

.welcome-list li::before {
    content: '•';
    color: var(--accent-gold);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.welcome-video-wrapper {
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.welcome-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-link-wrapper {
    text-align: center;
}

.video-link {
    color: #4A90E2;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.video-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Responsive adjustments for Welcome Section */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-subtitle {
        font-size: 1.5rem;
    }
    
    .welcome-description {
        font-size: 1rem;
    }
}

/* ============================================
   Global Reach Section
   ============================================ */

.global-reach-section {
    background: var(--primary-dark);
    padding: 6rem 0;
    position: relative;
}

.global-reach-section::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto 3rem;
}

.world-map-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.world-map-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.95;
    filter: brightness(1.1);
}

.global-messages {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.global-message-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.global-message-list li {
    color: var(--accent-gold-light);
    font-size: 1.3rem;
    line-height: 2.2;
    margin-bottom: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
    padding: 0;
    list-style: none;
    display: block;
}

.global-message-list::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 2rem auto 0;
}

/* Responsive adjustments for Global Reach Section */
@media (max-width: 768px) {
    .global-message-list {
        text-align: center;
    }
    
    .global-message-list li {
        font-size: 1.1rem;
        line-height: 2;
        margin-bottom: 0.8rem;
        letter-spacing: 0.3px;
    }
    
    .global-messages {
        padding: 0 1rem;
    }
    
    .world-map-container {
        padding: 0;
    }
}

/* ============================================
   About Experience Section
   ============================================ */

.about-experience-section {
    background: var(--primary-dark);
    padding: 6rem 0;
    position: relative;
}

.about-experience-section::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto 3rem;
}

.about-experience-section::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 3rem auto 0;
}

.experience-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.experience-text {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.experience-text:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for About Experience Section */
@media (max-width: 768px) {
    .experience-text {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .experience-content {
        padding: 0 1rem;
    }
}

/* ============================================
   Calendar of Sporting Events Section
   ============================================ */

.calendar-section {
    background: var(--primary-dark);
    padding: 6rem 0;
}

.calendar-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-intro {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.calendar-table-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: auto;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    color: var(--text-light);
}

.calendar-table thead {
    background-color: var(--primary-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.calendar-table th {
    padding: 1.2rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--primary-navy);
}

.calendar-table td {
    padding: 1rem;
    text-align: left;
    font-size: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.calendar-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.03);
}

.calendar-table tbody tr:nth-child(odd) {
    background-color: transparent;
}

.calendar-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.1) !important;
}

.calendar-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive adjustments for Calendar Section */
@media (max-width: 768px) {
    .calendar-title {
        font-size: 2rem;
    }
    
    .calendar-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .calendar-table-wrapper {
        padding: 0 1rem;
    }
    
    .calendar-table th,
    .calendar-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .calendar-table th {
        font-size: 0.95rem;
    }
}

/* ============================================
   Sporting Events Section
   ============================================ */

.sporting-event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sporting-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2) !important;
}

.sporting-event-small-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.sporting-event-small-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25) !important;
}

@media (max-width: 768px) {
    .sporting-event-small-card {
        height: auto !important;
    }
    
    .sporting-event-small-card > div {
        flex-direction: column !important;
    }
    
    .sporting-event-small-card > div > div:first-child {
        width: 100% !important;
        height: 150px !important;
    }
}

/* ============================================
   Combined Packages Section
   ============================================ */

.combined-packages-section,
.transport-only-section,
.accommodation-only-section {
    padding: 6rem 0;
}

.combined-package-card {
    background: rgba(26, 31, 58, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.combined-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
    border-width: 2px;
}

.combined-package-images {
    position: relative;
    display: flex;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.combined-image-container {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: width 0.5s ease, transform 0.5s ease;
}

.combined-image-container.transport-image-container {
    border-right: 2px solid rgba(212, 175, 55, 0.2);
}

.combined-image-container.accommodation-image-container {
    border-left: 2px solid rgba(212, 175, 55, 0.2);
}

.combined-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.image-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 14, 39, 0.9);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
}

/* Hover Effects for Combined Cards */
.combined-package-card:hover .combined-image-container.transport-image-container {
    width: 65%;
    z-index: 3;
}

.combined-package-card:hover .combined-image-container.accommodation-image-container {
    width: 65%;
    z-index: 3;
}

.combined-package-card:hover .combined-image {
    transform: scale(1.1);
}

.combined-package-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: rgba(10, 14, 39, 0.8);
}

.combined-package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.combined-package-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.6;
}

.combined-package-details {
    margin-bottom: 1rem;
}

.combined-package-details .transport-info,
.combined-package-details .accommodation-info {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.combined-package-details .transport-info i,
.combined-package-details .accommodation-info i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.combined-package-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.combined-package-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.combined-package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Modal Styling for Combined Packages */
.combined-package-modal-content .modal-section {
    padding: 1rem;
    background: rgba(26, 31, 58, 0.5);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.combined-package-modal-content .modal-section h5 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.combined-package-modal-content .modal-section h6 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.combined-package-modal-content .amenities-list ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.combined-package-modal-content .amenities-list li {
    color: var(--text-gray);
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.combined-package-modal-content .amenities-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Responsive adjustments */
.transport-capacity {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.transport-capacity i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .combined-package-images {
        height: 250px;
    }
    
    .combined-package-card:hover .combined-image-container.transport-image-container,
    .combined-package-card:hover .combined-image-container.accommodation-image-container {
        width: 50%;
    }
}

/* ============================================
   Packages Section
   ============================================ */

.packages-section {
    background: var(--primary-navy);
}

.package-card {
    background: rgba(26, 31, 58, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
    border-width: 2px;
}

.package-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.package-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.package-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.view-details-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--accent-gold);
    text-decoration: none;
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.view-details-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   Private Events Section
   ============================================ */

.private-events-section {
    background: var(--primary-dark);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.features-list li i {
    color: var(--accent-gold);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.private-events-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.private-events-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.private-events-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   Transport Carousel
   ============================================ */

.transport-section {
    background: var(--primary-navy);
}

.transport-carousel {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.transport-slide {
    position: relative;
    height: 100%;
}

.transport-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.transport-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transport-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.6) 100%);
    padding: 3rem 2rem 2rem;
    color: var(--text-light);
}

.transport-overlay h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.transport-overlay p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.transport-capacity {
    font-size: 0.9rem;
    color: var(--accent-gold-light);
    margin-top: 0.5rem;
}

/* ============================================
   Services Page Styles
   ============================================ */

.page-hero-section {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: block;
    overflow: visible;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    background-image: url('../../images/hero/slider-image-1-1920x600.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.4) 0%, rgba(26, 31, 58, 0.6) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 300;
}

.transport-type-section {
    background: var(--primary-navy);
}

.transport-type-section.bg-dark {
    background: var(--primary-dark);
}

.transport-type-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.transport-type-section .section-title i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.transport-card {
    background: rgba(26, 31, 58, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.transport-card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.transport-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.transport-card:hover .transport-card-image img {
    transform: scale(1.1);
}

.transport-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.transport-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.transport-card-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.6;
}

.transport-card-capacity {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.transport-card-capacity i {
    margin-right: 0.5rem;
}

.transport-details-btn {
    margin-top: auto;
    width: 100%;
}

/* Transport Details Modal */
.modal-content {
    background: var(--primary-navy);
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-title {
    color: var(--accent-gold);
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.modal-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.transport-details {
    color: var(--text-light);
}

.transport-specs {
    margin-top: 1.5rem;
}

.spec-item {
    padding: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

.spec-item strong {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.spec-item i {
    margin-right: 0.5rem;
}

/* ============================================
   Accommodations Page Styles
   ============================================ */

.accommodations-section {
    background: var(--primary-dark);
}

.accommodation-card {
    background: rgba(26, 31, 58, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.accommodation-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accommodation-card:hover .accommodation-image img {
    transform: scale(1.15);
}

.accommodation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.98) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.accommodation-card:hover .accommodation-overlay {
    opacity: 1;
}

.accommodation-amenities {
    text-align: center;
    width: 100%;
}

.accommodation-amenities h4 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.amenities-list li {
    color: var(--text-light);
    padding: 0.5rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.amenities-list li:last-child {
    border-bottom: none;
}

.amenities-list li i {
    color: var(--accent-gold);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.book-now-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    color: var(--primary-dark);
}

.book-now-btn i {
    margin-right: 0.5rem;
}

.accommodation-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.accommodation-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.accommodation-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.accommodation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.amenities-preview {
    color: var(--accent-gold);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.amenities-preview i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.view-amenities-btn {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-amenities-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.view-amenities-btn i {
    margin-right: 0.5rem;
}

.no-accommodations {
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.no-accommodations h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ============================================
   Extra Services Page Styles
   ============================================ */

.extraservices-section {
    background: var(--primary-navy);
}

.service-card {
    background: rgba(26, 31, 58, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.98) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay-content {
    text-align: center;
    width: 100%;
}

.service-overlay-content h4 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-overlay-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-details-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--primary-dark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    cursor: pointer;
}

.service-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.service-details-btn i {
    margin-right: 0.5rem;
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.view-service-btn {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
    font-weight: 500;
}

.view-service-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.view-service-btn i {
    margin-right: 0.5rem;
}

.no-services {
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.no-services h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ============================================
   Itineraries Page Styles
   ============================================ */

.itineraries-section {
    background: var(--primary-dark);
}

.itinerary-month-section {
    margin-bottom: 4rem;
}

.itinerary-card {
    background: rgba(26, 31, 58, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.itinerary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.itinerary-flyer {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.itinerary-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxetl-logo-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 80px;
    height: 80px;
    background: rgba(10, 14, 39, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 2;
}

.luxetl-logo-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.itinerary-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.itinerary-card:hover .itinerary-overlay {
    opacity: 1;
}

.itinerary-overlay-content h4 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-date {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.event-date i {
    margin-right: 0.5rem;
    color: var(--accent-gold);
}

.event-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.itinerary-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.download-flyer-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.download-flyer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    color: var(--primary-dark);
}

.itinerary-details-btn {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    cursor: pointer;
}

.itinerary-details-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.no-itineraries {
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.no-itineraries h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-section {
    background: var(--primary-navy);
}

.contact-form-card {
    background: rgba(26, 31, 58, 0.95);
    border-radius: 20px;
    padding: 3.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.form-title {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.form-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-phone-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-phone-wrapper i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.phone-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #b8941f;
    text-decoration: underline;
}

.contact-form {
    margin-top: 2rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(10, 14, 39, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.form-section:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(10, 14, 39, 0.5);
}

.section-title-form {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title-form i {
    font-size: 1.3rem;
}

.contact-form-card .form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.contact-form-card .form-label i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.contact-form-card .form-control {
    background: rgba(10, 14, 39, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--text-light);
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form-card .form-control:focus {
    background: rgba(10, 14, 39, 0.9);
    border-color: var(--accent-gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
    transform: translateY(-2px);
}

.contact-form-card .form-control:valid {
    border-color: rgba(40, 167, 69, 0.5);
}

.input-group-text {
    background: rgba(10, 14, 39, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--accent-gold);
    border-right: none;
    border-radius: 10px 0 0 10px;
}

.transportation-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.transport-option {
    position: relative;
}

.transport-option .form-check-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.transport-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: rgba(10, 14, 39, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: var(--text-light);
    font-weight: 500;
    gap: 0.75rem;
}

.transport-label i {
    font-size: 2rem;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.transport-label span {
    font-size: 0.95rem;
}

.transport-option .form-check-input:checked + .transport-label {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.transport-option .form-check-input:checked + .transport-label i {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.transport-label:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(10, 14, 39, 0.8);
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.submit-quote-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--primary-dark);
    padding: 1.25rem 4rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.submit-quote-btn i {
    font-size: 1.3rem;
}

.submit-quote-btn:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e5c547 0%, var(--accent-gold) 100%);
}

.submit-quote-btn:active:not(:disabled) {
    transform: translateY(-2px);
}

.submit-quote-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
    border-color: var(--primary-dark);
    border-right-color: transparent;
}

/* Form Loading Overlay */
.form-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.form-loading-overlay.active {
    display: flex;
    opacity: 1;
}

.form-loading-content {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    padding: 3rem 2rem;
    position: relative;
}

/* Luxury Icon Animation */
.loading-luxury-icon {
    font-size: 5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    animation: floatAndRotate 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

@keyframes floatAndRotate {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    25% { 
        transform: translateY(-10px) rotate(5deg);
    }
    50% { 
        transform: translateY(-5px) rotate(0deg);
    }
    75% { 
        transform: translateY(-10px) rotate(-5deg);
    }
}

.loading-main-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    animation: pulseText 2s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulseText {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}

.loading-sub-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    min-height: 30px;
    font-style: italic;
    animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Enhanced Progress Bar */
.loading-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold) 0%, #f4e4bc 50%, var(--accent-gold) 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    animation: progressShimmer 2s linear infinite;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

@keyframes progressShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Fun Facts Section */
.loading-fun-facts {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fun-fact-item {
    display: none;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    animation: slideInFade 0.5s ease;
}

.fun-fact-item.active {
    display: flex;
}

.fun-fact-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Steps */
.loading-steps {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    position: relative;
    padding: 0 1rem;
}

.loading-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    z-index: 0;
}

.loading-step {
    flex: 1;
    position: relative;
    z-index: 1;
    opacity: 0.4;
    transition: all 0.5s ease;
}

.loading-step.active {
    opacity: 1;
}

.loading-step.active .step-icon {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--primary-dark);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

.loading-step.completed .step-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    transition: all 0.5s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.5s ease;
}

.loading-step.active .step-text {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Loading Tips */
.loading-tips-container {
    min-height: 80px;
    margin: 2.5rem 0;
    position: relative;
}

.loading-tip {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
}

.loading-tip.active {
    opacity: 1;
    transform: translateY(0);
}

.loading-tip i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.loading-tip span {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

/* Progress Bar */
.loading-progress-container {
    margin-top: 2.5rem;
}

.loading-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold) 0%, #f4e4bc 50%, var(--accent-gold) 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.loading-progress-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-loading-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .loading-luxury-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .loading-main-text {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .loading-steps {
        margin: 2rem 0;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-text {
        font-size: 0.75rem;
    }
    
    .loading-tip {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .loading-tip span {
        font-size: 0.9rem;
    }
}

.form-help-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-help-text i {
    color: var(--accent-gold);
}

/* Form validation styling */
.contact-form-card .form-control:invalid:not(:placeholder-shown) {
    border-color: rgba(220, 53, 69, 0.5);
}

.contact-form-card .form-control:valid:not(:placeholder-shown) {
    border-color: rgba(40, 167, 69, 0.5);
}

/* Textarea specific styling */
.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form-card textarea.form-control:focus {
    min-height: 140px;
}

/* Date input styling */
.contact-form-card input[type="date"] {
    color-scheme: dark;
}

.contact-form-card input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Number input styling */
.contact-form-card input[type="number"]::-webkit-inner-spin-button,
.contact-form-card input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
    cursor: pointer;
}

/* Responsive adjustments for contact form */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .form-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .section-title-form {
        font-size: 1.3rem;
    }
    
    .transportation-options-grid {
        grid-template-columns: 1fr;
    }
    
    .transport-label {
        padding: 1.25rem 0.75rem;
    }
    
    .submit-quote-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .contact-phone-wrapper {
        flex-direction: column;
        padding: 1rem 1.5rem;
    }
}

/* ============================================
   About Page Styles
   ============================================ */

.about-section {
    background: var(--primary-dark);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.brand-story-card {
    background: rgba(26, 31, 58, 0.6);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.story-item {
    padding: 2rem;
}

.story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-dark);
}

.story-item h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   Packages Page Styles
   ============================================ */

.packages-section {
    background: var(--primary-navy);
}

.package-type {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.package-type i {
    margin-right: 0.25rem;
}

.package-detail-section {
    background: var(--primary-dark);
}

.package-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.package-detail-image img {
    width: 100%;
    height: auto;
}

.package-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.package-type-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-type-badge i {
    margin-right: 0.5rem;
}

.package-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.package-detail-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.package-detail-description p {
    margin-bottom: 1rem;
}

.package-detail-actions {
    margin-top: 2rem;
}

.no-packages {
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.no-packages h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--accent-gold);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-gold);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 2rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--primary-dark);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer h5 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-divider {
    border-color: rgba(212, 175, 55, 0.1);
    margin: 2rem 0 1rem;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .transport-carousel {
        height: 350px;
    }
    
    .hero-section {
        padding-top: 70px;
        min-height: 500px;
    }
    
    .transport-overlay h3 {
        font-size: 1.5rem;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .transport-type-section .section-title {
        font-size: 2rem;
    }
    
    .transport-card-image {
        height: 250px;
    }
    
    .accommodation-image {
        height: 250px;
    }
    
    .accommodation-overlay {
        padding: 1.5rem;
    }
    
    .accommodation-amenities h4 {
        font-size: 1.2rem;
    }
    
    .amenities-list li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-overlay {
        padding: 1.5rem;
    }
    
    .service-overlay-content h4 {
        font-size: 1.2rem;
    }
    
    .service-overlay-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    .transport-carousel {
        height: 300px;
    }
    
    .transport-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .transport-overlay h3 {
        font-size: 1.5rem;
    }
    
    .transport-overlay p {
        font-size: 1rem;
    }
}

/* ============================================
   Modern Date Picker (Flatpickr) - Luxury Theme
   ============================================ */

/* Flatpickr Input Styling */
.flatpickr-input.form-control {
    background-color: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.flatpickr-input.form-control:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background-color: rgba(26, 31, 58, 0.9);
}

.flatpickr-input.form-control:focus {
    border-color: var(--accent-gold);
    background-color: rgba(26, 31, 58, 0.95);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: var(--text-light);
}

.flatpickr-input.form-control::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

/* Flatpickr Alt Input (Display Format) */
.flatpickr-wrapper {
    position: relative;
}

.flatpickr-alt-input {
    background-color: rgba(10, 14, 39, 0.7) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    color: var(--text-light) !important;
    padding: 0.875rem 1.25rem !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    width: 100% !important;
}

.flatpickr-alt-input:hover {
    border-color: rgba(212, 175, 55, 0.6) !important;
    background-color: rgba(10, 14, 39, 0.9) !important;
}

.flatpickr-alt-input:focus {
    border-color: var(--accent-gold) !important;
    background-color: rgba(10, 14, 39, 0.9) !important;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
    outline: none !important;
}

/* Hide the original input (keeps Y-m-d format for backend) */
.flatpickr-wrapper .flatpickr-input[type="text"] {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Ensure the altInput is visible and styled correctly */
.flatpickr-wrapper .flatpickr-alt-input {
    position: relative;
    z-index: 1;
}

/* Flatpickr Calendar Container */
.flatpickr-calendar {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 1rem;
    animation: calendarFadeIn 0.3s ease;
}

@keyframes calendarFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Calendar Header */
.flatpickr-months {
    background: transparent;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.flatpickr-month {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.flatpickr-current-month {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: var(--accent-gold) !important;
    fill: var(--accent-gold) !important;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    width: 12px;
    height: 12px;
}

/* Weekday Headers */
.flatpickr-weekdays {
    background: transparent;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.flatpickr-weekday {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Calendar Days */
.flatpickr-days {
    padding: 0.5rem 0;
}

.dayContainer {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

.flatpickr-day {
    color: var(--text-light);
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 500;
    transition: all 0.2s ease;
    margin: 2px;
}

.flatpickr-day:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.flatpickr-day.today {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.15);
    font-weight: 700;
    color: var(--accent-gold);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: linear-gradient(135deg, #e5c547 0%, var(--accent-gold) 100%);
    transform: scale(1.08);
}

.flatpickr-day.inRange {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(184, 184, 184, 0.3);
    opacity: 0.4;
}

.flatpickr-day.flatpickr-disabled:hover {
    background: transparent;
    border-color: transparent;
    transform: none;
    cursor: not-allowed;
}

/* Time Picker (if enabled) */
.flatpickr-time {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.flatpickr-time input {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    border-radius: 6px;
}

.flatpickr-time input:hover {
    background: rgba(26, 31, 58, 0.7);
    border-color: rgba(212, 175, 55, 0.5);
}

.flatpickr-time input:focus {
    border-color: var(--accent-gold);
    background: rgba(26, 31, 58, 0.8);
}

/* Calendar Arrow */
.flatpickr-calendar.arrowTop::before {
    border-bottom-color: var(--accent-gold);
}

.flatpickr-calendar.arrowTop::after {
    border-bottom-color: rgba(10, 14, 39, 0.98);
}

.flatpickr-calendar.arrowBottom::before {
    border-top-color: var(--accent-gold);
}

.flatpickr-calendar.arrowBottom::after {
    border-top-color: rgba(10, 14, 39, 0.98);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .flatpickr-calendar {
        width: 100%;
        max-width: 100%;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto;
        border-radius: 10px;
    }
    
    .flatpickr-day {
        margin: 1px;
        font-size: 0.9rem;
    }
    
    .flatpickr-current-month {
        font-size: 1rem;
    }
}

