@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #000000;
    --secondary: #F5DEB3;
    --accent: #D4AF37;
    --cream: #F5F5F5;
    --dark: #121212;
    --gold-light: #E6C88C;
    --gold-dark: #B78D4A;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: var(--primary);
    color: var(--cream);
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000000;
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.mobile-menu {
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
    border-color: var(--accent);
}

.testimonial-slider {
    scroll-behavior: smooth;
}

.logo-text {
    background: linear-gradient(90deg, var(--gold-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.top-header {
    background-color: var(--dark);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold-light) 100%);
    color: #0a0a0a;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--accent) 100%);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--cream);
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.05);
}

.btn-outline:hover {
    background: var(--accent);
    color: #0a0a0a;
}

.dark-card {
    background-color: #0f0f0f;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dark-card:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.border-gold {
    border-color: rgba(212, 175, 55, 0.3);
}

.text-cream {
    color: var(--cream);
}

.text-accent {
    color: var(--accent);
}

.hover\:text-accent:hover {
    color: var(--accent);
}

.destination-card:hover img {
    transform: scale(1.05);
}

.hero-container {
    scroll-snap-type: x mandatory;
}

.hero-slide {
    scroll-snap-align: start;
    flex: 0 0 100%;
    transition: all 0.5s ease;
}

.carousel-pagination {
    bottom: 30px;
    left: 0;
    right: 0;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background-color: var(--accent);
    width: 30px;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, var(--gold-light), var(--accent));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dark-form input,
.dark-form select,
.dark-form textarea {
    background-color: #0f0f0f;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.dark-form input:focus,
.dark-form select:focus,
.dark-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent), var(--gold-light));
    color: var(--dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.whatsapp-button:hover {
    transform: scale(1.1);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: #1a1a1a;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 200px;
    pointer-events: none;
    border: 1px solid var(--accent);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--accent), var(--gold-light));
}

.flag-item {
    transition: all 0.3s ease;
}

.flag-item:hover {
    transform: translateY(-5px);
}

.flag-img {
    transition: all 0.3s ease;
    filter: grayscale(20%);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.flag-item:hover .flag-img {
    filter: grayscale(0);
    transform: scale(1.05);
    border-color: var(--accent);
}

.blog-card {
    background-color: #0f0f0f;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
    border-color: var(--accent);
}

.blog-image {
    transition: transform 0.5s ease;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-date {
    color: var(--accent);
    font-size: 0.85rem;
}

.blog-title {
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--accent);
}

.blog-excerpt {
     display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -moz-box;
    -moz-box-orient: vertical;
    -moz-line-clamp: 3;
    display: box;
    line-clamp: 3;
    box-orient: vertical;
}

.counter {
    font-weight: bold;
    color: white;
}

/* Enhanced gold accents */
.gold-accent {
    background: linear-gradient(135deg, var(--accent), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gold-border {
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.gold-border:hover {
    border-color: var(--accent);
}

/* Improved card hover effects */
.hover-gold:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

/* Enhanced form styling */
.form-label {
    color: var(--gold-light);
    font-weight: 500;
}

/* Better contrast for text */
.text-contrast {
    color: rgba(245, 245, 245, 0.9);
}

/* Refined footer styling */
.footer-link:hover {
    color: var(--gold-light);
}

/* Smooth transitions */
.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improved button gradients */
.btn-gradient {
    background: linear-gradient(135deg, var(--accent), var(--gold-light));
}

/* Enhanced section backgrounds */
.section-bg {
    background-color: #0f0f0f;
    background-image: radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .top-header > div {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-header > div > div {
        justify-content: center;
        text-align: center;
    }
    
    .testimonial-slider > div {
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


