:root {
    --primary: #c5a059; /* Luxury Gold */
    --primary-dark: #a68446;
    --accent: #d4af37;
    --background: #fafafa;
    --text: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --black: #000000;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 50px;
    border-radius: 40px;
    width: 90%;
    max-width: 850px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.close-modal {
    position: absolute;
    right: 30px;
    top: 25px;
    font-size: 40px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

#modal-body h2 {
    color: var(--text);
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 800;
}

#modal-body ul {
    list-style: none;
}

#modal-body li {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

#modal-body li:hover {
    background-color: #fcfcfc;
}

.trip-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.trip-price {
    text-align: right;
}

.price-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.trip-duration {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    animation: fadeInBody 1s ease-out;
}

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

/* Ticker Bar */
.ticker-wrapper {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1001;
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.1);
}

.ticker {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Glassmorphism Header */
header {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 24px;
}

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

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: rotate(-5deg) scale(1.1);
}

.logo span {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1519125323398-675f0ddb6308?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(transparent, var(--background));
}

.hero-content h1 {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease forwards;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 24px);
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-content .btn {
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

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

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

.hero-content .btn {
    background-color: var(--primary);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.3);
}

.btn:active {
    transform: translateY(-2px);
}

/* Categories Section */
.categories {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.categories h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.category-card {
    height: 350px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,188,212,0.2);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    transition: background 0.3s;
}

.category-card:hover .overlay {
    background: linear-gradient(to top, rgba(0, 188, 212, 0.8) 0%, rgba(0,0,0,0.2) 100%);
}

.cat-icon {
    font-size: 56px;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.category-card:hover .cat-icon {
    animation-play-state: paused;
    transform: scale(1.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.05);
}

.info-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0,188,212,0.1);
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
}

.contact {
    background-color: var(--background);
    padding: 120px 24px;
}

.info-icon {
    font-size: 24px;
    background-color: rgba(0, 188, 212, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-text strong {
    display: block;
    font-size: 16px;
}

.info-text span {
    color: var(--text-light);
    font-size: 14px;
}

.contact-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-actions .btn {
    flex: 1;
}

.btn-call {
    background-color: var(--primary);
    color: var(--white);
}

.btn-email {
    background-color: var(--white);
    color: var(--text);
    border: 1px solid #ddd;
}

.privacy-link a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--background);
    color: var(--text-light);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .contact-actions {
        flex-direction: column;
    }
}
