/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0  Variables & Reset
2.0  Header & Navigation
3.0  Hero Section
4.0  Search Section
5.0  Packages Grid
6.0  Single Package
7.0  Visa Services
8.0  Hotels Listing
9.0  Why Choose Us
10.0 Testimonials
11.0 CTA Section
12.0 Footer
13.0 Booking Form
14.0 Blog & Sidebar
15.0 Contact Page
16.0 Responsive Design
17.0 Animations
--------------------------------------------------------------*/

/* 1.0 Variables & Reset */
:root {
    --primary: #E31E24;
    --primary-dark: #C4181E;
    --secondary: #1A2C3E;
    --accent: #F5A623;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --gray-bg: #F8F9FA;
    --border: #E0E0E0;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--gray-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 2.0 Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.top-bar {
    background: rgba(0,0,0,0.7);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    margin-right: 20px;
}

.contact-info a i {
    margin-right: 8px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
}

.main-header {
    padding: 15px 0;
    transition: var(--transition);
}

.site-header.scrolled .main-header {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding img {
    max-height: 50px;
    width: auto;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation .nav-menu li a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.site-header.scrolled .main-navigation .nav-menu li a {
    color: var(--text-dark);
}

.main-navigation .nav-menu li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-navigation .nav-menu li a:hover:after,
.main-navigation .nav-menu li.current-menu-item a:after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-book-header {
    background: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-book-header:hover {
    background: var(--accent);
    transform: translateY(-2px);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    transition: var(--transition);
}

.site-header.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 9px; }
.mobile-menu-toggle span:nth-child(3) { bottom: 0; }

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* 3.0 Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-hero {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background: var(--accent);
    transform: translateY(-3px);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* 4.0 Search Section */
.search-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.package-search {
    background: var(--white);
    border-radius: 60px;
    padding: 30px 40px;
    box-shadow: var(--shadow);
}

.package-search h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--secondary);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.search-group {
    position: relative;
}

.search-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-group select,
.search-group input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
}

.search-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* 5.0 Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.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: var(--primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.875rem;
}

.package-content {
    padding: 20px;
}

.package-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.package-title a {
    color: var(--text-dark);
}

.package-title a:hover {
    color: var(--primary);
}

.package-duration {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.package-duration i {
    margin-right: 5px;
}

.package-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.btn-book {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-view-all {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 40px;
    font-weight: 600;
    margin-top: 40px;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--primary);
    transform: translateY(-2px);
    color: var(--white);
}

.section-footer {
    text-align: center;
}

/* 6.0 Visa Services */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.visa-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.visa-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.visa-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.visa-icon i {
    font-size: 30px;
    color: var(--white);
}

.visa-type {
    display: inline-block;
    background: var(--gray-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.visa-country {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.visa-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.visa-processing {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.btn-visa {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-visa:hover {
    background: var(--primary);
    color: var(--white);
}

/* 7.0 Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 35px;
    color: var(--white);
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-light);
}

/* 8.0 Testimonials */
.testimonials-slider {
    padding: 20px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-content i {
    font-size: 40px;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 20px;
    display: inline-block;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--secondary);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* 9.0 CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), #0f1a24);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--accent);
    transform: translateY(-3px);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* 10.0 Footer */
.site-footer {
    background: var(--secondary);
    color: var(--white);
}

.footer-widgets {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-widget-title {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-nav {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-nav a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-nav a:hover {
    color: var(--primary);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    background: #20b859;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
    color: var(--white);
}

/* 16.0 Responsive Design */
@media (max-width: 992px) {
    .features-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-form {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .main-navigation {
        display: none;
    }
    
    .main-navigation.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
    }
    
    .main-navigation.active .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-navigation.active .nav-menu li a {
        color: var(--text-dark);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .top-bar {
        display: none;
    }
    
    .package-search {
        border-radius: 20px;
        padding: 20px;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .visa-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .package-price {
        font-size: 0.75rem;
    }
}

/* 17.0 Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}