@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
    --primary: #111111;
    --secondary: #0ea5e9;
    --accent: #d4af37;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    font-weight: 700;
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
}

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

/* Top Bar */
.top-bar {
    background: #1a1a1a;
    color: white;
    padding: 10px 0;
    font-size: 0.95rem;
}

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

.top-contact {
    display: flex;
    gap: 25px;
    align-items: center;
}

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

.icon-circle {
    background: var(--secondary);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

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

.top-social a {
    background: var(--secondary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

.top-social a:hover {
    background: var(--accent);
}

/* Header & Nav */
header {
    background: #ffffff;
    /* Dark blue matching logo */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* So button and logo stretch to full height */
    padding: 0;
}

.logo-wrapper {
    background: transparent;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
}

.logo img {
    height: 110px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #002244;
    /* Dark blue text */
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    color: #000000;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--secondary);
}

.btn-call-now {
    background: linear-gradient(to right, #0284c7, #38bdf8);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 40px;
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-call-now:hover {
    opacity: 0.9;
    color: white;
}

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

/* Hero Section */
.hero {
    margin-top: 70px;
    /* Adjusted for taller header */
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(42, 44, 49, 0.8) 100%), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2074&auto=format&fit=crop') center/cover;
    color: white;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
}

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

/* Sections */
section {
    padding: 100px 0;
}

/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    height: 100%;
}

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

.service-card:hover h3,
.service-card:hover p,
.service-card:hover i {
    color: white !important;
}

.service-card:hover .btn-outline {
    color: white !important;
    border-color: white !important;
}

.service-card:hover .btn-outline:hover {
    color: var(--primary) !important;
    background: white !important;
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: var(--transition);
}

/* About Section */
.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.year-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 20px;
}

.contact-info h3 {
    color: white;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-top: 2px;
}

.info-item div h4 {
    display: none;
}

.info-item div p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    margin-top: 40px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer (New Redesign) */
footer {
    background: #0a0a0a;
    /* Fallback */
    background-image: radial-gradient(#222 1px, transparent 1px);
    background-size: 30px 30px;
    color: white;
    padding: 70px 0 20px 0;
    margin-top: 50px;
}

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

.footer-logo img {
    height: 100px;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    color: #999;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #999;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

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

.footer-social a {
    background: var(--secondary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #999;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom span {
    color: white;
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

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

.whatsapp-float {
    background-color: #25d366;
}

.call-float {
    background-color: #00e676;
    /* Bright green similar to WhatsApp */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .about-flex {
        flex-direction: column;
    }

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

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

    .top-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

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

    .btn-call-now {
        display: none;
        /* Hide large call now on mobile header */
    }

    .logo-wrapper {
        padding: 0 10px;
        flex: 1;
        min-width: 0;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        height: 90px;
    }

    .logo span {
        font-size: clamp(0.8rem, 3.8vw, 1.2rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }

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

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 130px;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider .container {
    color: white;
    max-width: 1200px;
    width: 100%;
    padding: 0 5%;
}

.hero-slider h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-slider p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
}

.hero-slider .hero-btns {
    animation: fadeInUp 1.4s ease;
}

@media (max-width: 768px) {
    .hero-slider h1 {
        font-size: 2.5rem;
    }

    .hero-slider p {
        font-size: 1.1rem;
    }
}

/* Destinations Carousel */
.destinations-section {
    padding: 60px 0;
    background: #ffffff;
}

.destinations-section .container.relative {
    position: relative;
}

.carousel-track-container {
    overflow: hidden;
    margin: 0 60px;
    /* Space for buttons */
}

.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.5s ease-in-out;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.carousel-slide {
    min-width: calc(33.333% - 13.33px);
    /* Show 3 at a time */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: var(--accent);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 991px) {
    .carousel-slide {
        min-width: calc(50% - 10px);
    }

    /* Show 2 on tablet */
}

@media (max-width: 576px) {
    .carousel-slide {
        min-width: 100%;
    }

    /* Show 1 on mobile */
}


/* New Destinations Carousel */
#destinations-carousel {
    padding: 40px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.dest-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.dest-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.dest-carousel-track::-webkit-scrollbar {
    display: none;
}

.dest-carousel-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dest-carousel-slide:hover {
    transform: translateY(-5px);
}

.dest-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dest-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    z-index: 10;
    transition: all 0.3s ease;
}

.dest-prev-arrow {
    left: 0;
}

.dest-next-arrow {
    right: 0;
}

.dest-carousel-arrow:hover,
.dest-carousel-arrow:active {
    color: var(--secondary);
    /* Turns blue */
    background: #fff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

@media (max-width: 991px) {
    .dest-carousel-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .dest-carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .dest-carousel-container {
        padding: 0 40px;
    }

    .dest-prev-arrow {
        left: -5px;
    }

    .dest-next-arrow {
        right: -5px;
    }
}

\n

/* --- Load Animations --- */
body {
    animation: fadeInPage 0.8s ease-in-out;
}

@keyframes fadeInPage {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Values List Styling --- */
.values-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.values-list li {
    position: relative;
    padding: 15px 15px 15px 50px;
    background: #f8fafc;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary);
}

.values-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.values-list li::before {
    content: '\f00c';
    /* FontAwesome check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    font-size: 1.1rem;
}

\n\n

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 5px solid #e2e8f0;
    border-top: 5px solid var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

\n

/* Custom Spacing Fixes */
#services {
    padding-top: 40px !important;
}

#why-choose-us {
    padding-top: 40px !important;
}

.destinations-section {
    padding-top: 40px !important;
}