/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --accent-blue: #60a5fa;
    --white: #ffffff;
    --off-white: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

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

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

.btn-outline:hover {
    background-color: var(--secondary-blue);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== Header ===== */
.header {
    background-color: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.logo h1 span {
    color: var(--secondary-blue);
    font-weight: 600;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu ul li a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: var(--secondary-blue);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* ===== Hero Carousel Section ===== */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 70px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.carousel-slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.carousel-slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.75) 100%);
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 900px;
    width: 90%;
    z-index: 2;
}

.carousel-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
}

.carousel-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.carousel-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    width: 35px;
    border-radius: 10px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Carousel Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-blue);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* ===== Featured Services ===== */
.featured-services {
    padding: 80px 0;
    background-color: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-blue);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--secondary-blue);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

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

.learn-more {
    color: var(--secondary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 10px;
}

/* ===== Statistics Section ===== */
.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Travel Services ===== */
.travel-services {
    padding: 80px 0;
    background-color: var(--white);
}

.travel-services-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.travel-service-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background-color: var(--off-white);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.travel-service-item:hover {
    transform: translateX(10px);
}

.travel-service-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--light-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travel-service-icon i {
    font-size: 2rem;
    color: var(--secondary-blue);
}

.travel-service-info h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.travel-service-info p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.travel-service-info ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.travel-service-info ul li {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.travel-service-info ul li::before {
    content: '✓';
    color: var(--secondary-blue);
    font-weight: bold;
}

/* ===== Specialized Services ===== */
.specialized-services {
    padding: 80px 0;
    background: var(--primary-blue);
}

.specialized-services .section-header h2 {
    color: var(--white);
}

.specialized-services .section-header h2::after {
    background: var(--accent-blue);
}

.specialized-services .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.specialized-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.specialized-card:hover {
    transform: translateY(-10px);
}

.specialized-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
}

.specialized-image i {
    font-size: 3rem;
    color: var(--secondary-blue);
}

.specialized-content {
    padding: 30px;
}

.specialized-content h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

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

.specialized-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.specialized-content ul li {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.specialized-content ul li::before {
    content: '•';
    color: var(--secondary-blue);
    font-size: 1.5rem;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials-wrapper {
    position: relative;
    min-height: 350px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote i {
    color: var(--white);
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    margin-top: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-blue), var(--off-white));
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 3rem;
    color: var(--secondary-blue);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 3px;
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--secondary-blue);
    color: var(--secondary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

.testimonial-indicators {
    display: flex;
    gap: 10px;
}

.t-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-indicator.active {
    background: var(--secondary-blue);
    width: 30px;
    border-radius: 10px;
}

/* ===== Partners Section ===== */
.partners-section {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.partners-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: calc(200px * 12);
}

.partner-logo {
    min-width: 200px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    margin: 0 15px;
    background: var(--off-white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: var(--light-blue);
    transform: translateY(-5px);
}

.partner-logo i {
    font-size: 2rem;
    color: var(--secondary-blue);
}

.partner-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6));
    }
}

/* ===== Booking Section ===== */
.booking-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-tabs {
    display: flex;
    background: var(--primary-blue);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    background-color: var(--secondary-blue);
    color: var(--white);
}

.booking-form {
    display: none;
    padding: 40px;
}

.booking-form.active {
    display: block;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-blue);
    border-radius: 8px;
    font-size: 1rem;
    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(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* ===== Enquiry Section ===== */
.enquiry-section {
    padding: 80px 0;
    background-color: var(--white);
}

.enquiry-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.enquiry-info h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.enquiry-info > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.enquiry-form {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: 15px;
}

/* ===== Careers Section ===== */
.careers-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.careers-intro h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.careers-intro > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
}

.benefits-list li i {
    color: var(--secondary-blue);
    font-size: 1.2rem;
}

.job-openings h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.job-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateX(10px);
}

.job-card h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.job-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.job-type {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--secondary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 15px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.contact-section .section-header h2 {
    color: var(--white);
}

.contact-section .section-header h2::after {
    background: var(--white);
}

.contact-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.social-links {
    text-align: center;
}

.social-links h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-blue);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-blue);
    color: var(--white);
    transform: translateY(-5px);
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand h2 span {
    color: var(--secondary-blue);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--secondary-blue);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--secondary-blue);
    border: none;
    border-radius: 0 5px 5px 0;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-blue);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .carousel-content h2 {
        font-size: 2.5rem;
    }

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

    .enquiry-container,
    .careers-content {
        grid-template-columns: 1fr;
    }

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

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .carousel-content h2 {
        font-size: 2rem;
    }

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

    .carousel-btn {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .booking-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1 1 50%;
    }

    .travel-service-item {
        flex-direction: column;
        text-align: center;
    }

    .travel-service-icon {
        margin: 0 auto;
    }

    .travel-service-info ul {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

    .testimonial-content {
        padding: 30px 20px;
    }

    .testimonials-wrapper {
        min-height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .carousel-content h2 {
        font-size: 1.6rem;
    }

    .carousel-subtitle {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .carousel-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .testimonials-wrapper {
        min-height: 450px;
    }

    .testimonial-author {
        flex-direction: column;
    }

    .partner-logo {
        min-width: 150px;
    }
}
