/* Root Variables */
:root {
    --primary-color: #FF6B1A;
    --primary-gradient: linear-gradient(135deg, #FF6B1A 0%, #ff8c42 100%);
    --secondary-color: #2b3e7e;
    --secondary-gradient: linear-gradient(135deg, #2b3e7e 0%, #3e56a3 100%);
    --accent-color: #1a936f;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 26, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 26, 0.4);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(43, 62, 126, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 62, 126, 0.4);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info i {
    font-size: 12px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    color: var(--white);
    font-size: 13px;
}

.top-link:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-plan-trip {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-plan-trip:hover {
    background: #ff7b2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 26, 0.3);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: var(--white);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.nav-menu a i {
    font-size: 10px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: var(--secondary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: 20px;
    color: var(--white);
    cursor: pointer;
    z-index: 1100;
    transition: var(--transition);
    display: none; /* Hidden by default, shown in media query */
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: visible;
}

.hero-slider {
    position: relative;
    height: 100%;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* Transition opacity, but delay visibility and z-index changes when fading out */
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s 2s,
                z-index 0s 2s;
    transform: scale(1);
    z-index: 5;
    visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    /* When becoming active, visibility and z-index change instantly */
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heroZoom 8s linear forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0 C300,80 600,80 900,40 C1050,20 1150,30 1200,50 L1200,120 L0,120 Z' fill='%23c71585' opacity='0.3'/%3E%3C/svg%3E") bottom center no-repeat;
    background-size: 100% 100%;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,30 C200,70 400,50 600,60 C800,70 1000,40 1200,60 L1200,120 L0,120 Z' fill='%23FF9500' opacity='0.2'/%3E%3C/svg%3E") bottom center no-repeat;
    background-size: 100% 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
    padding: 0 50px;
}

.hero-text-wrapper {
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-title {
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-subtitle {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Brush Script MT', cursive;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-subtitle {
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-tagline {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-tagline {
    animation: fadeInUp 1s ease forwards 0.9s;
}

/* Destination Cards Overlay */
.destination-cards-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    z-index: 10;
}

.destination-cards-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    padding: 0 20px;
}

.dest-mini-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dest-mini-card:hover,
.dest-mini-card.active {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 20px 45px rgba(255, 107, 26, 0.3);
}

.dest-mini-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dest-mini-card:hover img {
    transform: scale(1.1);
}

.dest-mini-card h3 {
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    background: var(--white);
}

/* Recognition Badge */
.recognition-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 15px 0;
    text-align: center;
    z-index: 5;
}

.recognition-badge p {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Features Section */
.features {
    padding: 160px 0 80px;
    background: var(--bg-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-color);
}

.feature-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
}

.feature-link:hover {
    text-decoration: underline;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Cars Section */
.cars-section {
    padding: 80px 0;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.car-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.car-image {
    height: 220px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.1);
}

.car-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
    color: var(--secondary-color);
}

.car-card > p {
    padding: 0 20px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.car-features {
    display: flex;
    justify-content: space-around;
    padding: 15px 20px;
    background: var(--bg-light);
}

.car-features li {
    font-size: 14px;
    color: var(--text-dark);
}

.car-features i {
    color: var(--primary-color);
    margin-right: 5px;
}

.car-card .btn {
    width: calc(100% - 40px);
    margin: 20px;
}

.car-image {
    position: relative;
}

.car-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.car-price {
    padding: 0 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-from {
    font-size: 12px;
    color: #666;
    margin-bottom: 3px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Destinations Section */
.destinations-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.destination-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.2);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 20px 20px;
    color: var(--white);
    transition: all 0.3s ease;
}

.destination-overlay h3 {
    font-size: 26px;
    margin-bottom: 5px;
}

.destination-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(transparent, rgba(255, 107, 53, 0.9));
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.package-duration {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.package-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.package-includes span {
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: var(--text-dark);
}

.package-includes i {
    color: var(--primary-color);
    margin-right: 5px;
}

.package-content .btn {
    width: 100%;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 14px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 10px 0 15px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-link:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-item i {
    font-size: 30px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-info-item h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .top-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-plan-trip {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 15px;
        transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        z-index: 1050;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Overlay when menu is open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(3px);
        z-index: 1040;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .hero {
        height: auto;
        min-height: 500px;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 60px;
    }
    
    .hero-tagline {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .destination-cards-overlay {
        position: relative;
        bottom: 0;
        margin-top: -60px;
    }
    
    .destination-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .dest-mini-card h3 {
        font-size: 12px;
        padding: 10px 5px;
    }
    
    .dest-mini-card img {
        height: 80px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .feature-grid,
    .cars-grid,
    .destinations-grid,
    .packages-grid,
    .testimonials-slider,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Package Card Enhancements for Dynamic Content */
.package-location {
    color: var(--text-color);
    font-size: 14px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-location i {
    color: var(--primary-color);
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.package-rating i {
    color: #ffc107;
    font-size: 14px;
}

.package-rating .fa-star,
.package-rating .fa-star-half-alt {
    color: #ffc107;
}

.package-rating .fa-star.far {
    color: #ddd;
}

.package-rating span {
    font-size: 13px;
    color: #666;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.package-price .old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.package-price .new-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.package-price .price-label {
    font-size: 13px;
    color: #666;
}

.package-discount {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.no-tours {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    grid-column: 1 / -1;
}

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 26, 0.3);
}

.btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 40px;
    }
    
    .hero-tagline {
        font-size: 14px;
    }
    
    .destination-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo img {
        height: 45px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Office Gallery */
.office-gallery {
    margin-top: 60px;
}

.office-gallery h3 {
    text-align: center;
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.office-img-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 250px;
    transition: var(--transition);
}

.office-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-img-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.office-img-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .office-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .office-grid {
        grid-template-columns: 1fr;
    }
}
