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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
}

/* ===================================
   HEADER
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 50px;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===================================
   HERO SLIDER
   =================================== */

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    animation: kenburns 20s ease-out infinite;
}

@keyframes kenburns {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 10;
}

.slide-text {
    max-width: 700px;
}

.slide-label {
    font-size: 14px;
    letter-spacing: 4px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.slide-title {
    font-size: 90px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.slide-subtitle {
    font-size: 70px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}

.slide-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

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

.slide-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
}

.btn-primary, .btn-secondary {
    padding: 18px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #0a0a0a;
}

/* ===================================
   SLIDER CONTROLS
   =================================== */

.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.nav-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 20px;
}

.nav-arrow:hover {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-color: transparent;
    transform: scale(1.1);
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-home {
    background: #0a0a0a;
}

.section-title {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
}

.service-box {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
}

.service-box:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.service-icon-home {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-home i {
    font-size: 35px;
    color: #fff;
}

.service-box h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-box p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

/* ===================================
   DESTINATIONS SECTION
   =================================== */

.destinations-section {
    background: #0f0f0f;
}

.destination-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

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

.destination-card:hover img {
    transform: scale(1.15);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 2rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.destination-overlay h4 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.destination-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.btn-destination {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-destination:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    color: #fff;
}

/* ===================================
   WHY CHOOSE US
   =================================== */

.why-choose {
    background: #0a0a0a;
}

.lead {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #fff;
    font-size: 20px;
}

.feature-item h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #000;
    padding: 60px 0 20px;
    color: #fff;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.tagline {
    color: #ff6b35;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ff6b35;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    display: flex;
    align-items: start;
}

.footer-contact i {
    color: #ff6b35;
    margin-right: 12px;
    margin-top: 3px;
}

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

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

.social-links a:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin: 0;
}

/* ===================================
   WHATSAPP FLOAT
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1200px) {
    .slide-title { font-size: 70px; }
    .slide-subtitle { font-size: 55px; }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .slide-title {
        font-size: 50px;
    }
    
    .slide-subtitle {
        font-size: 40px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 30px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .destination-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 40px;
    }
    
    .slide-subtitle {
        font-size: 32px;
    }
}
