/* Global Styles */
:root {
    --primary-color: #ff8c00;
    --secondary-color: #333;
    --accent-color: #ff6b6b;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --navbar-height: 80px;
    --mobile-breakpoint: 768px;
    --tablet-breakpoint: 1024px;
    --hero-height: 40vh;  /* Standard hero height for all pages except index */
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: var(--navbar-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
    z-index: 1000;
    transition: all 0.5s ease;
}

/* Transparent navbar only for index page */
.home-page .navbar {
    background: transparent;
}

.home-page .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.logo img {
    height: 50px;
    transition: opacity 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

/* White text for index page */
.home-page .nav-links a {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

/* White text for index page */
.home-page .nav-links a::after {
    background: white;
}

.nav-links a.active {
    font-weight: 500;
}

.nav-links a.active::after {
    transform: scaleX(1);
}

.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

/* White mobile menu icon for index page */
.home-page .mobile-menu {
    color: white;
}

.navbar.scrolled .nav-links a {
    color: var(--secondary-color);
}

.navbar.scrolled .nav-links a::after {
    background: var(--secondary-color);
}

.mobile-menu.active i::before {
    content: "\f00d";
}

/* Hero Section */
.hero {
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('../assets/images/hero-bg.jpg');
}

/* Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.3)
    );
    z-index: 1;
}

/* Ensure content appears above video */
.hero-content,
.flight-elements,
.hero-3d-elements {
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 100%;
    padding: 0 5%;
    animation: fadeInUp 1.5s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: rotateIn 1.2s ease-out 0.5s both;
}

.hero-tagline {
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    animation: slideInFromRight 1s ease-out 0.8s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-tagline .highlight {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
}

.hero-tagline .divider {
    color: rgba(255,255,255,0.8);
    font-size: 1.6rem;
    font-weight: 200;
}

.hero-tagline .services {
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    text-shadow: none;
}

.hero-content p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 300;
    text-transform: uppercase;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    animation: slideInFromRight 1s ease-out 0.8s both;
}

.hero-buttons {
    margin-top: 2rem;
    perspective: 1000px;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: var(--primary-color);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--accent-color), 
        var(--primary-color)
    );
    z-index: -1;
    border-radius: 7px;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px) translateZ(20px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
}

/* Services Section */
.services-overview {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: glowPulse 2s infinite;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: floatWithRotate 3s ease-in-out infinite;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Contact Form */
.quick-contact {
    padding: 5rem 5%;
    background: white;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

/* Footer Styles */
footer {
    background: #074799;
    color: white;
    padding: 3rem 5% 1rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section i {
    margin-right: 8px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(0);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        height: auto;
        max-height: calc(100vh - var(--navbar-height));
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        margin: 0.5rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .mobile-menu {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .nav-links a {
        color: var(--secondary-color);
        font-size: 1rem;
    }

    .nav-links a::after {
        background: var(--secondary-color);
    }

    .hero-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-tagline .divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Add these new animation keyframes at the top of styles.css */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate3d {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }
    100% {
        transform: perspective(1000px) rotateY(360deg);
    }
}

@keyframes floatWithRotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

@keyframes rotateIn {
    0% {
        transform: perspective(1000px) rotateY(90deg);
        opacity: 0;
    }
    100% {
        transform: perspective(1000px) rotateY(0);
        opacity: 1;
    }
}

/* Update existing styles with animations */
.hero-content {
    animation: fadeInUp 1.5s ease-out;
}

.service-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: glowPulse 2s infinite;
}

.service-card i {
    animation: floatWithRotate 3s ease-in-out infinite;
}

.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.cta-button:hover:before {
    left: 100%;
}

/* Add 3D effect to navbar */
.navbar {
    transform-style: preserve-3d;
    perspective: 1000px;
    backdrop-filter: blur(10px);
}

.logo img {
    transition: opacity 0.3s ease;
}

/* Add animations to form elements */
.contact-form input,
.contact-form select,
.contact-form textarea {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer animations */
.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(8deg);
}

/* Add particle effect to hero section */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 8%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 8%);
    animation: sparkle 4s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Add floating elements in the background */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    animation: float 6s infinite;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
.floating-element:nth-child(3) { top: 40%; left: 80%; animation-delay: 2s; }
.floating-element:nth-child(4) { top: 80%; left: 90%; animation-delay: 3s; }

/* 3D Elements Styles */
.hero-3d-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    pointer-events: none;
}

.floating-plane,
.floating-compass,
.floating-globe {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
    animation: float3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.floating-plane {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.floating-compass {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-globe {
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float3D {
    0% {
        transform: translateZ(0) rotateY(0deg) translateY(0);
    }
    50% {
        transform: translateZ(100px) rotateY(180deg) translateY(-20px);
    }
    100% {
        transform: translateZ(0) rotateY(360deg) translateY(0);
    }
}

/* Enhanced Service Cards */
.services-3d-container {
    perspective: 2000px;
    padding: 2rem;
}

.services-grid {
    transform-style: preserve-3d;
    transform: rotateX(5deg);
}

.service-card {
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 140, 0, 0.1));
    transform: translateZ(-1px);
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(10deg) translateZ(50px);
    box-shadow: 
        20px 20px 40px rgba(0,0,0,0.2),
        inset 0 0 15px rgba(255,140,0,0.2);
}

/* Enhanced Section Title */
.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    transform-style: preserve-3d;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) translateZ(-10px);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Add 3D hover effect to buttons */
@keyframes buttonPulse {
    0% {
        transform: translateZ(0) scale(1);
    }
    50% {
        transform: translateZ(30px) scale(1.05);
    }
    100% {
        transform: translateZ(0) scale(1);
    }
}

/* Ripple effect styles */
.cta-button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 1s linear;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* Add common hero styles */
.hero h1,
.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p,
.about-hero p,
.services-hero p,
.contact-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero p,
    .services-hero p,
    .contact-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 1.8rem;
    }
}

/* Flight-themed animations */
@keyframes flyAcross {
    0% {
        transform: translateX(-100%) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(0) translateY(-50px) rotate(5deg);
    }
    100% {
        transform: translateX(100%) translateY(0) rotate(0deg);
    }
}

@keyframes floatCloud {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-20px) translateY(-10px);
        opacity: 1;
    }
    100% {
        transform: translateX(0) translateY(0);
        opacity: 0.8;
    }
}

@keyframes destinationPulse {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) translateY(-10px);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes ticketFloat {
    0% {
        transform: translateZ(0) rotate(0deg);
    }
    50% {
        transform: translateZ(50px) rotate(10deg);
    }
    100% {
        transform: translateZ(0) rotate(0deg);
    }
}

/* Flight Elements Styles */
.flight-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.airplane {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.8);
    animation: flyPath 15s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.airplane-1 { 
    top: 20%; 
    left: -50px; 
    animation: flyPath1 20s linear infinite;
    transform: rotate(15deg);
}

.airplane-2 { 
    top: 40%; 
    left: -50px; 
    animation: flyPath2 25s linear infinite;
    animation-delay: 5s;
    transform: rotate(-10deg);
}

.airplane-3 { 
    top: 60%; 
    left: -50px; 
    animation: flyPath3 22s linear infinite;
    animation-delay: 10s;
    transform: rotate(5deg);
}

.flight-route {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, white 50%, transparent 100%) 0 20%,
        linear-gradient(90deg, transparent 0%, white 50%, transparent 100%) 0 40%,
        linear-gradient(90deg, transparent 0%, white 50%, transparent 100%) 0 60%;
    background-size: 200% 1px;
    background-repeat: no-repeat;
    opacity: 0.1;
    animation: moveRoute 20s linear infinite;
}

.destination-marker {
    position: absolute;
    bottom: 30%;
    right: 20%;
    font-size: 3rem;
    color: var(--primary-color);
    animation: destinationPulse 3s ease-in-out infinite;
}

.flight-path {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    top: 50%;
    transform-style: preserve-3d;
    animation: pathGlow 2s ease-in-out infinite;
}

.compass {
    position: absolute;
    top: 30%;
    right: 20%;
    font-size: 2.5rem;
    color: white;
    animation: rotate3D 8s linear infinite;
}

.ticket {
    position: absolute;
    bottom: 40%;
    left: 15%;
    font-size: 2.5rem;
    color: white;
    animation: ticketFloat 5s ease-in-out infinite;
}

.passport {
    position: absolute;
    top: 60%;
    right: 30%;
    font-size: 2.5rem;
    color: white;
    animation: float3D 6s ease-in-out infinite;
}

@keyframes pathGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.7;
        transform: scaleY(2);
    }
}

@keyframes rotate3D {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes flyPath1 {
    0% {
        transform: translate(-50px, 0) rotate(15deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(calc(100vw + 50px), -100px) rotate(15deg);
        opacity: 0;
    }
}

@keyframes flyPath2 {
    0% {
        transform: translate(-50px, 0) rotate(-10deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(calc(100vw + 50px), 50px) rotate(-10deg);
        opacity: 0;
    }
}

@keyframes flyPath3 {
    0% {
        transform: translate(-50px, 0) rotate(5deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(calc(100vw + 50px), -50px) rotate(5deg);
        opacity: 0;
    }
}

@keyframes moveRoute {
    0% {
        background-position: -200% 20%, -200% 40%, -200% 60%;
    }
    100% {
        background-position: 300% 20%, 300% 40%, 300% 60%;
    }
}

/* Inner pages specific styles */
.inner-page .navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.inner-page .hero {
    margin-top: var(--navbar-height);
    height: var(--hero-height);
}

/* Logo color adjustment */
.inner-page .logo img {
    filter: brightness(0.8);
}

/* Mobile menu adjustments for inner pages */
@media (max-width: 768px) {
    .inner-page .nav-links {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .inner-page .nav-links a {
        color: var(--secondary-color);
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #128C7E;
    color: white;
}

.whatsapp-btn i {
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover i {
    transform: rotate(10deg);
}

/* Adjust WhatsApp button position when footer is in view */
@media (max-height: 800px) {
    .whatsapp-btn {
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }

    /* Ensure button doesn't overlap with mobile navigation */
    .nav-links.active ~ .whatsapp-btn {
        display: none;
    }
}

/* Travel Categories Section */
.travel-categories {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.category-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: var(--primary-color);
}

.category-card:hover .category-icon i {
    color: white;
    transform: rotateY(360deg);
}

.category-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.category-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
    }
} 
