/* ==========================================================================
   1. CSS VARIABLES & RESET
   ========================================================================== */
:root {
    /* Brand Colors */
    --primary-red: #E31837;
    --primary-red-hover: #BF122A;
    --dark-bg: #1A1A1A;
    --light-gray: #F8F9FA;
    --border-color: #E0E0E0;
    
    /* Text Colors */
    --text-main: #333333;
    --text-muted: #666666;
    --text-white: #FFFFFF;

    /* Typography */
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* Effects */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative; /* For the floating button */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   2. UTILITY CLASSES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-gray { background-color: var(--light-gray); }
.bg-dark { background-color: var(--dark-bg); }
.text-red { color: var(--primary-red); }
.text-white { color: var(--text-white); }
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.underline { text-decoration: underline; }

.section-header {
    margin-bottom: 50px;
}

.subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.section-header .subtitle {
    position: relative;
    padding-left: 40px;
}
.section-header .subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--text-main);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h2 { font-size: 36px; }
h3 { font-size: 20px; }

/* ==========================================================================
   3. BUTTONS & FLOATING WIDGETS
   ========================================================================== */
.btn-primary, .btn-secondary, .btn-dark, .btn-outline, .btn-outline-dark, .btn-outline-red, .btn-submit, .btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    gap: 8px;
}

.btn-small { padding: 6px 16px; font-size: 14px; }
.red-bg { background-color: var(--primary-red); color: white; border-radius: 4px; }

.btn-primary { background-color: var(--primary-red); color: white; }
.btn-primary:hover { background-color: var(--primary-red-hover); transform: translateY(-2px); }

.btn-secondary { background-color: #333; color: white; }
.btn-secondary:hover { background-color: black; transform: translateY(-2px); }

.btn-dark { background-color: var(--dark-bg); color: white; }
.btn-dark:hover { background-color: var(--primary-red); }

.btn-outline { border-color: var(--border-color); color: var(--text-main); background: transparent; }
.btn-outline:hover { border-color: var(--text-main); }

.btn-outline-dark { border-color: var(--text-main); color: var(--text-main); background: transparent; padding: 10px 20px;}
.btn-outline-dark:hover { background-color: var(--text-main); color: white; }

.btn-outline-red { border-color: var(--primary-red); color: var(--primary-red); background: transparent; }
.btn-outline-red:hover { background-color: var(--primary-red); color: white; }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.25);
}

/* ==========================================================================
   4. TOP BAR & HEADER
   ========================================================================== */
.top-bar {
    background-color: #000;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left { display: flex; align-items: center; gap: 15px; }
.top-bar-right { display: flex; gap: 20px; }
.top-bar-right a:hover { color: var(--primary-red); }

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo img {
    height: 50px;
    width: auto;
}
.main-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.main-nav .nav-links a {
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 10px 0;
}
.main-nav .nav-links a.active, .main-nav .nav-links a:hover {
    color: var(--primary-red);
}

/* Dropdown Menu */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--box-shadow);
    list-style: none;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    border-top: 3px solid var(--primary-red);
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
}
.dropdown-menu li a:hover {
    background-color: var(--light-gray);
    padding-left: 25px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero {
    padding: 60px 0;
    overflow: hidden;
}
.hero-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}
.hero-content {
    flex: 1;
}
.hero-content h1 {
    font-size: 54px;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.stat-item i {
    font-size: 30px;
    color: var(--primary-red);
}
.stat-item h4 { margin: 0; font-size: 24px; }
.stat-item span { font-size: 13px; color: var(--text-muted); }

.hero-image-wrapper {
    flex: 1;
}
.hero-img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

/* ==========================================================================
   6. GRID LAYOUTS & CARDS (Features & Services)
   ========================================================================== */
.grid-3-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

.feature-card, .service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

/* New CSS for FontAwesome Icons in Grid */
.feature-icon {
    font-size: 45px;
    color: var(--primary-red);
    margin-bottom: 25px;
    display: block;
}

.feature-card p, .service-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    min-height: 65px;
}
.learn-more {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid transparent;
}
.learn-more:hover { border-bottom-color: var(--primary-red); }

/* ==========================================================================
   7. LEAD FORM SECTION
   ========================================================================== */
.lead-form-section { position: relative; }
.lead-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}
.lead-text { flex: 1; }
.lead-text h2 { font-size: 42px; margin-bottom: 20px; }
.lead-form-wrapper {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; }
.form-group.full-width { width: 100%; margin-bottom: 20px; }

.inquiry-form input, .inquiry-form textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 16px;
    outline: none;
    transition: border-color var(--transition-fast);
}
.inquiry-form textarea { resize: none; height: 60px; }
.inquiry-form input:focus, .inquiry-form textarea:focus { border-bottom-color: var(--primary-red); }
.inquiry-form input::placeholder, .inquiry-form textarea::placeholder { color: rgba(255,255,255,0.5); }

.form-checkbox { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 30px; }
.form-checkbox input { margin-top: 5px; cursor: pointer; }
.form-checkbox label { font-size: 12px; color: rgba(255,255,255,0.7); }

.btn-submit {
    background-color: white;
    color: var(--dark-bg);
    width: 100%;
    padding: 15px;
    font-size: 16px;
}
.btn-submit:hover { background-color: var(--primary-red); color: white; }

.form-message {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}
.form-message.success { color: #4CAF50; }
.form-message.error { color: #f44336; }

/* ==========================================================================
   8. PROMO SECTIONS
   ========================================================================== */
.promo-row { display: flex; align-items: center; gap: 60px; }
.promo-row.reverse { flex-direction: row-reverse; }
.promo-content { flex: 1; }
.promo-content h2 { margin-bottom: 20px; }
.promo-content p { color: var(--text-muted); margin-bottom: 30px; font-size: 16px; }
.promo-image { flex: 1; }
.promo-image img { border-radius: 12px; box-shadow: var(--box-shadow); }
.promo-content .btn-dark, .promo-content .btn-outline { margin-right: 15px; }

/* ==========================================================================
   9. DESTINATIONS
   ========================================================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}
.destination-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.destination-card:hover img { transform: scale(1.1); }
.card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.flag-icon { width: 24px !important; height: 24px !important; border-radius: 50%; aspect-ratio: 1/1 !important; object-fit: cover; }

/* ==========================================================================
   10. FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}
.faq-question h4 { margin: 0; font-size: 18px; color: var(--text-main); }
.faq-question i { transition: transform var(--transition-fast); }
.faq-item.active .faq-question h4 { color: var(--primary-red); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary-red); }
.faq-answer {
    display: none;
    padding-bottom: 20px;
    color: var(--text-muted);
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.main-footer {
    padding: 70px 0 30px;
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-logo img { height: 60px; margin-bottom: 15px; }
.tagline { color: var(--text-muted); font-size: 14px; font-style: italic; }
.contact-info p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
}
.contact-info i { color: var(--primary-red); margin-top: 4px; }
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e0e0;
    color: var(--text-main);
    margin-right: 10px;
    transition: var(--transition-fast);
}
.social-links a:hover { background: var(--primary-red); color: white; }

.footer-col h4 { font-size: 16px; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--primary-red); padding-left: 5px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
}
.footer-legal a { margin-right: 10px; }
.footer-legal a:hover { color: var(--primary-red); }

/* ==========================================================================
   12. ANIMATIONS & EFFECTS
   ========================================================================== */
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow);
    border-color: transparent;
}
.hover-scale { overflow: hidden; }

/* Scroll reveal classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   13. MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-4-col, .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 42px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .header-actions .btn-outline-dark { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px;
        display: none;
    }
    .main-nav.active { display: block; }
    .main-nav .nav-links { flex-direction: column; gap: 15px; }
    .dropdown-menu { position: static; visibility: visible; opacity: 1; transform: none; box-shadow: none; border-top: none; padding-left: 15px; display: none; }
    .dropdown:hover .dropdown-menu { display: block; }
    
    .hero-inner, .lead-inner, .promo-row, .promo-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
    
    .grid-3-col { grid-template-columns: 1fr; }
    
    .form-row { flex-direction: column; gap: 0; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    
    /* Adjust WhatsApp Button for mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .grid-4-col, .destinations-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 36px; }
    .section-padding { padding: 50px 0; }
}