/* ==================== VARIABLES ==================== */
:root {
    /* Primary Colors */
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #4d94ff;
    --primary-gradient: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    
    /* Secondary Colors */
    --secondary-color: #1a365d;
    --secondary-light: #2d4a77;
    
    /* Accent Colors */
    --accent-orange: #ff6b35;
    --accent-green: #28a745;
    --accent-gold: #ffc107;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --dark: #1a1a2e;
    --black: #000000;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f7fa;
    --bg-dark: #0d1b2a;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 10px 30px rgba(0, 102, 255, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ==================== UTILITY CLASSES ==================== */
.section-padding {
    padding: 100px 0;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-light-gradient {
    background: var(--bg-gradient);
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== BUTTONS ==================== */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

/* ==================== HEADER & NAVIGATION ==================== */
.header .navbar {
    padding: 15px 0;
    background: transparent;
    transition: var(--transition-normal);
}

.header .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-normal);
}

.navbar.scrolled .brand-text {
    color: var(--secondary-color);
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 18px;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-link {
    color: var(--dark-gray);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 102, 255, 0.1);
}

.btn-booking {
    padding: 10px 24px;
    font-size: 14px;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}

.navbar.scrolled .navbar-toggler {
    background: rgba(0, 102, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230066ff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
   
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.85) 0%, rgba(0, 30, 80, 0.7) 100%);
}

.hero-content {
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-badge i {
    color: var(--accent-gold);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    font-size: 20px;
    color: var(--accent-gold);
}

.hero-image {
    position: relative;
}

.floating-airplane {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-30px) rotate(-5deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgb(0 0 0 / 56%);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: #281b1b9c;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ==================== CONTACT BAR ==================== */
.contact-bar {
    background: var(--white);
    padding: 25px 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
    margin-top: -50px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.contact-item:hover .contact-icon,
.contact-item:hover .contact-label,
.contact-item:hover .contact-value {
    color: var(--white);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 22px;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-icon.email {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.contact-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: var(--bg-primary);
}

.about-images {
    position: relative;
}

.image-main {
    position: relative;
    z-index: 1;
}

.image-main img {
    box-shadow: var(--shadow-xl);
}

.image-secondary {
    position: absolute;
    bottom: -50px;
    right: -30px;
    width: 60%;
    z-index: 2;
}

.image-secondary img {
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.experience-badge {
    position: absolute;
    top: 50px;
    right: -20px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-primary);
    z-index: 3;
}

.experience-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    color: var(--gray);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-weight: 500;
    color: var(--secondary-color);
}

.feature-box i {
    color: var(--accent-green);
    font-size: 20px;
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-us-section {
    position: relative;
    overflow: hidden;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card.featured {
    background: var(--primary-gradient);
    color: var(--white);
}

.why-card.featured::before {
    background: var(--white);
}

.why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 32px;
    margin: 0 auto 25px;
    transition: var(--transition-normal);
}

.why-card.featured .why-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.why-card:hover .why-icon {
    transform: rotateY(360deg);
}

.why-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.why-card.featured .why-title {
    color: var(--white);
}

.why-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

.why-card.featured .why-text {
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== DESTINATIONS SECTION ==================== */
.destinations-section {
    background: var(--bg-primary);
}

.destination-tabs .nav-pills {
    gap: 10px;
}

.destination-tabs .nav-link {
    padding: 14px 30px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    color: var(--dark-gray);
    background: var(--off-white);
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.destination-tabs .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.destination-tabs .nav-link.active {
    background: var(--primary-gradient);
    color: var(--white);
}

.destination-tabs .nav-link i {
    margin-right: 8px;
}

.destination-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
}

.card-badge.hot {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}



.btn-view {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 20px;
    transform: scale(0);
    transition: var(--transition-normal);
}

.destination-card:hover .btn-view {
    transform: scale(1);
}

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

.card-content {
    padding: 25px;
}

.destination-rating {
    margin-bottom: 10px;
}

.destination-rating i {
    color: var(--accent-gold);
    font-size: 14px;
}

.destination-rating span {
    color: var(--gray);
    font-size: 14px;
    margin-left: 5px;
}

.destination-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.destination-location {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.destination-location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.destination-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.price .price-label {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

.price .price-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 30, 80, 0.9) 0%, rgba(0, 102, 255, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-airplane {
    position: absolute;
    right: -100px;
    bottom: -50px;
    width: 400px;
    opacity: 0.3;
    transform: rotate(-15deg);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.stat-card {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 28px;
    margin: 0 auto 20px;
}

.stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    background: var(--primary-gradient);
    color: var(--white);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    color: var(--gray);
    border-radius: var(--radius-full);
    font-size: 36px;
}

.testimonial-card.featured .testimonial-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.testimonial-card.featured .testimonial-name {
    color: var(--white);
}

.testimonial-role {
    font-size: 13px;
    color: var(--gray);
}

.testimonial-card.featured .testimonial-role {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-rating {
    margin-left: auto;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 14px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-gray);
    font-style: italic;
}

.testimonial-card.featured .testimonial-content p {
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-footer {
    text-align: right;
    margin-top: 20px;
}

.testimonial-footer i {
    font-size: 36px;
    color: var(--light-gray);
}

.testimonial-card.featured .testimonial-footer i {
    color: rgba(255, 255, 255, 0.2);
}

/* Proof Section */
.proof-section h4 {
    color: var(--secondary-color);
    font-weight: 600;
}

.proof-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.proof-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 30px;
    margin: 0 auto 15px;
}

.proof-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Swiper Styles */
.proofSwiper {
    padding-bottom: 50px;
}

.proofSwiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
}

.proofSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ==================== NEWS SECTION ==================== */
.news-section {
    background: var(--bg-primary);
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    text-align: center;
}

.news-date .day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    font-size: 12px;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.news-meta span {
    font-size: 13px;
    color: var(--gray);
}

.news-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-title a {
    color: var(--secondary-color);
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.footer-links a::before {
    content: '›';
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.copyright strong {
    color: var(--white);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links li a:hover {
    color: var(--primary-color);
}

/* ==================== FLOATING BUTTONS ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 37px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-float .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.5);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 28px;
    box-shadow: var(--shadow-primary);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: var(--white);
}

/* Contact Hero Global Style */
.contact-hero {
    position: relative;
    margin-top: 76px; /* Navbar height offset */
    overflow: hidden;
}

.contact-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 40px;
    }
}

@media (max-width: 991.98px) {
    .contact-hero img {
        height: 300px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-content {
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius-lg);
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav .nav-link {
        color: var(--dark-gray);
        padding: 12px 20px;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-color);
        background: rgba(0, 102, 255, 0.1);
        border-radius: var(--radius-sm);
    }
    
    .btn-booking {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .about-images {
        margin-bottom: 80px;
    }
    
    .image-secondary {
        bottom: -30px;
        right: 0;
    }
    
    .cta-airplane {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        margin-top: 60px; /* Smaller navbar offset */
    }
    
    .contact-hero img {
        height: 200px; /* Reduced banner height for mobile */
    }

    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .contact-bar {
        margin-top: 0;
        border-radius: 0;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .experience-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-top: 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-rating {
        margin-left: 0;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .whatsapp-float {
        right: 20px;
        bottom: 80px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .back-to-top {
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .destination-tabs .nav-link {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 140px 0 80px; /* Add padding instead of fixed height */
    }
    
    .hero-bg-img {
        height: 100% !important;
        object-fit: cover;
    }
}
