/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #bcbcc2 0%, #9ca1af 50%, #ffffff 100%);
    overflow-x: hidden;
}

/* Import stylish fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.nav-logo h2 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.6rem;
    background: linear-gradient(45deg, #8b5cf6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8b5cf6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #8b5cf6, #f59e0b);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-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;
    transform: scale(1.1);
    transition: opacity 1s ease-in-out, transform 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(22, 33, 62, 0.4) 50%, rgba(15, 52, 96, 0.4) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3) 0%, rgba(22, 33, 62, 0.3) 50%, rgba(15, 52, 96, 0.3) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    background: linear-gradient(45deg, #8b5cf6, #f59e0b);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.carousel-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

/* Carousel Button - Modern Ghost Style */
.carousel-btn {
    background: rgba(26, 26, 46, 0.25);
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.15);
    transition: background 0.2s, transform 0.2s;
    opacity: 0.7;
    backdrop-filter: blur(4px);
}

.carousel-btn:hover {
    background: rgba(139, 92, 246, 0.18);
    transform: scale(1.08);
    opacity: 1;
}

.carousel-btn i {
    font-size: 1.1rem;
    color: #f59e0b;
    /* gold accent */
}

/* Mobile: smaller, even more minimal */
@media (max-width: 480px) {
    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        opacity: 0.85;
    }

    .carousel-btn i {
        font-size: 0.9rem;
    }
}

.carousel-indicators {
    display: flex;
    gap: 15px;
}

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

.indicator.active {
    background: #8b5cf6;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(139, 92, 246, 0.7);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.1rem;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Stylish h2 Font for Services & Top Destinations Section --- */
.services-section .section-header h2,
.destinations-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #f59e0b;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Responsive font size for mobile */
@media (max-width: 600px) {

    .services-section .section-header h2,
    .destinations-section .section-header h2 {
        font-size: 2rem;
    }

    .services-section .section-header p,
    .destinations-section .section-header p {
        font-size: 1rem;
    }
}

/* Professional Services Section Styles */
.services {
    padding: 60px 0;
    background: linear-gradient(120deg, #16213e 0%, #2d2f4a 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.service-card {
    background: #23244a;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s;
    border: 1px solid #23244a;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.18);
    border-color: #8b5cf6;
}

.service-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #1a1a2e;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.service-card:hover .service-img {
    transform: scale(1.07);
}

.service-card-content {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-icon {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 0.7rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f59e0b;
}

.service-card p {
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 0;
}

/* --- Services Section: Bold, Large Cards, Left & Right Layout --- */
.services-main-grid {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin-top: 2.5rem;
    align-items: stretch;
    justify-content: center;
    min-height: 650px;
}

/* --- Services Images: Beautiful Card Styling --- */
.services-images {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 340px;
    max-width: 480px;
    justify-content: stretch;
}

.service-img-card {
    position: relative;
    background: linear-gradient(120deg, #23244a 60%, #2d2f4a 100%);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.18);
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s;
    border: 2px solid #23244a;
}

/* 3D Entrance Animation for Image Cards - Faster */
.service-img-card {
    opacity: 0;
    transform: perspective(800px) rotateY(40deg) scale(0.95) translateY(60px);
    transition:
        opacity 0.35s cubic-bezier(.77, 0, .18, 1),
        transform 0.35s cubic-bezier(.77, 0, .18, 1);
    will-change: opacity, transform;
}

.service-img-card.visible {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg) scale(1) translateY(0);
}

/* Stagger effect for each card */
.services-images .service-img-card:nth-child(1) {
    transition-delay: 0.05s;
}

.services-images .service-img-card:nth-child(2) {
    transition-delay: 0.12s;
}

.services-images .service-img-card:nth-child(3) {
    transition-delay: 0.19s;
}

.services-images .service-img-card:nth-child(4) {
    transition-delay: 0.26s;
}

.services-images .service-img-card:nth-child(5) {
    transition-delay: 0.33s;
}

.services-images .service-img-card:nth-child(6) {
    transition-delay: 0.40s;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: brightness(0.88);
    transition: filter 0.3s;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.service-img-card:hover .service-img {
    filter: brightness(1);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(26, 26, 46, 0.96) 80%, rgba(26, 26, 46, 0.0) 100%);
    color: #fff;
    padding: 1.2rem 1.3rem 1rem 1.3rem;
    box-sizing: border-box;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.img-caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #f59e0b;
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.img-caption p {
    font-size: 1.08rem;
    margin: 0;
    color: #e5e7eb;
    text-shadow: 0 2px 8px rgba(26, 26, 46, 0.18);
    font-weight: 500;
}

/* --- Services Info Cards: Uniform Styling --- */
.services-info-cards {
    flex: 1.2 1 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 340px;
    max-width: 520px;
    justify-content: stretch;
}

.service-info-card {
    background: linear-gradient(120deg, #23244a 60%, #2d2f4a 100%);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.18);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.18s, box-shadow 0.18s;
    border: 2px solid #23244a;
    min-height: 120px;
}

.service-info-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.22);
    border-color: #8b5cf6;
}

.service-icon {
    font-size: 2.4rem;
    color: #8b5cf6;
    margin-bottom: 0.8rem;
}

.service-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #f59e0b;
}

.service-info-card p {
    font-size: 1.08rem;
    color: #e5e7eb;
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .services-main-grid {
        flex-direction: column;
        gap: 2rem;
        min-height: unset;
        align-items: stretch;
    }

    .services-images,
    .services-info-cards {
        min-width: unset;
        max-width: 100%;
        gap: 1.5rem;
    }

    .service-img-card,
    .service-info_card {
        min-height: 160px;
        border-radius: 16px;
        padding: 1.2rem 1rem;
    }

    .service-img {
        height: 140px;
        border-radius: 16px 16px 0 0;
    }

    .img-caption {
        padding: 0.9rem 1rem 0.7rem 1rem;
        border-radius: 0 0 16px 16px;
    }
}

@media (max-width: 700px) {
    .services-main-grid {
        flex-direction: column;
        gap: 1.2rem;
    }

    .services-images,
    .services-info-cards {
        gap: 1.2rem;
    }

    .service-img-card,
    .service-info-card {
        min-height: 120px;
        border-radius: 12px;
        padding: 0.8rem;
    }

    .service-img {
        height: 100px;
        border-radius: 12px 12px 0 0;
    }

    .img-caption {
        padding: 0.6rem 0.7rem 0.4rem 0.7rem;
        border-radius: 0 0 12px 12px;
    }
}

/* --- Why Choose Us Section --- */
.why-choose-us {
    background: linear-gradient(120deg, #16213e 0%, #2d2f4a 100%);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: #23244a;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(139, 92, 246, 0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.18s, box-shadow 0.18s;
    border: 1px solid #23244a;
    min-height: 160px;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.18);
    border-color: #8b5cf6;
}

.feature-icon {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 0.7rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f59e0b;
}

.feature-card p {
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 0;
}

/* --- Exclusive Escape Section (Featured Destination) --- */
.exclusive-escape-section {
    background: linear-gradient(120deg, #16213e 0%, #2d2f4a 100%);
    padding: 90px 0 90px 0;
    width: 100%;
}

.exclusive-escape-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.exclusive-escape-section .section-header {
    text-align: center;
    margin-bottom: 3.2rem;
}

.exclusive-escape-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #f59e0b;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.exclusive-escape-section .section-header p {
    font-size: 1.22rem;
    color: #e5e7eb;
    font-weight: 500;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

/* Main Showcase Layout */
.exclusive-escape-showcase {
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main Image Card */
.exclusive-escape-image {
    background: #23244a;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.10);
    overflow: hidden;
    width: 600px;
    min-width: 340px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    transition: box-shadow 0.3s, transform 0.3s;
}

.exclusive-escape-image:hover {
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.18);
    transform: scale(1.02);
}

.exclusive-escape-img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    background: #23244a;
    filter: brightness(0.98) contrast(1.08);
}

/* Content below image */
.exclusive-escape-image-content {
    width: 100%;
    padding: 2rem 2rem 1.5rem 2rem;
    background: transparent;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.exclusive-escape-image-content h3 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
    color: #f59e0b;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: none;
}

.exclusive-escape-image-content p {
    font-size: 1.22rem;
    margin-bottom: 1.2rem;
    color: #e5e7eb;
    font-weight: 500;
    text-shadow: none;
}

.exclusive-escape-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.18rem;
    border-radius: 16px;
    background: linear-gradient(90deg, #8b5cf6 0%, #f59e0b 100%);
    color: #fff;
    font-weight: 800;
    border: none;
    box-shadow: 0 2px 12px rgba(139, 92, 246, 0.14);
    margin-top: 0.5rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.7px;
}

.exclusive-escape-btn:hover,
.exclusive-escape-btn:focus {
    background: linear-gradient(90deg, #f59e0b 0%, #8b5cf6 100%);
    color: #23244a;
    transform: scale(1.07);
}

/* Info Cards Layout */
.exclusive-escape-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 370px;
    min-width: 260px;
    max-width: 100%;
    margin-top: 0.5rem;
}

.exclusive-escape-info-card {
    background: #23244a;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.10);
    padding: 1.7rem 1.3rem 1.3rem 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #23244a;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.exclusive-escape-info-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.18);
    border-color: #8b5cf6;
}

.exclusive-escape-info-icon {
    font-size: 1.7rem;
    color: #8b5cf6;
    margin-bottom: 0.8rem;
}

.exclusive-escape-info-card h4 {
    font-size: 1.22rem;
    color: #f59e0b;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.exclusive-escape-info-card p {
    font-size: 1.08rem;
    color: #e5e7eb;
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .exclusive-escape-section .container {
        padding: 0 1rem;
    }

    .exclusive-escape-image {
        width: 480px;
    }

    .exclusive-escape-img {
        height: 320px;
    }

    .exclusive-escape-info {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 900px) {
    .exclusive-escape-showcase {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }

    .exclusive-escape-image {
        width: 100%;
        max-width: 100vw;
        border-radius: 18px;
        margin-bottom: 1.2rem;
    }

    .exclusive-escape-img {
        height: 220px;
        border-radius: 18px;
    }

    .exclusive-escape-image-content {
        padding: 1.2rem 1rem 1rem 1rem;
    }

    .exclusive-escape-info {
        margin-top: 0;
        gap: 1.2rem;
    }
}

@media (max-width: 600px) {
    .exclusive-escape-section {
        padding: 38px 0 38px 0;
    }

    .exclusive-escape-section .section-header h2 {
        font-size: 2rem;
    }

    .exclusive-escape-section .section-header p {
        font-size: 1rem;
    }

    .exclusive-escape-image {
        border-radius: 14px;
    }

    .exclusive-escape-img {
        border-radius: 14px;
        height: 140px;
    }

    .exclusive-escape-image-content {
        padding: 1rem 0.7rem 0.7rem 0.7rem;
    }

    .exclusive-escape-image-content h3 {
        font-size: 1.15rem;
    }

    .exclusive-escape-image-content p {
        font-size: 0.98rem;
    }

    .exclusive-escape-btn {
        font-size: 1rem;
        padding: 0.7rem 1.3rem;
        border-radius: 8px;
    }

    .exclusive-escape-info-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .exclusive-escape-info-card h4 {
        font-size: 1rem;
    }

    .exclusive-escape-info-card p {
        font-size: 0.95rem;
    }
}

/* --- Featured Destination Section */
.featured-destination {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0;
}

.destination-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.destination-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.destination-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.showcase-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.destination-image:hover .showcase-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: #ffffff;
}

.overlay-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffffff, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.overlay-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.explore-btn {
    background: linear-gradient(45deg, #8b5cf6, #f59e0b);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.destination-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #8b5cf6;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f59e0b, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #ffffff;
}

.info-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.info-card p {
    color: #cbd5e1;
    line-height: 1.6;
}


/* --- Testimonials Section --- */
.testimonials {
    background: linear-gradient(120deg, #16213e 0%, #2d2f4a 100%);
    padding: 60px 0;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: #23244a;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s;
    border: 1px solid #23244a;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-height: 180px;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.18);
}

.testimonial-content p {
    font-size: 1.05rem;
    color: #e2e8f0;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    background: #8b5cf6;
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.author-info h4 {
    font-size: 1.05rem;
    color: #f59e0b;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.95rem;
    color: #8b5cf6;
    margin: 0;
}

/* Responsive for Testimonials Section */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        padding: 1rem;
        min-height: unset;
    }
}

/* --- Contact Section --- */
.contact {
    background: #1a1a2e;
    padding: 60px 0;
}

.contact-content {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.contact-form {
    flex: 2;
    background: #23244a;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(139, 92, 246, 0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 320px;
}

.form-group {
    margin-bottom: 1.2rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #8b5cf6;
    background: #1a1a2e;
    color: #fff;
    font-size: 1rem;
    margin-top: 0.3rem;
    outline: none;
    transition: border 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #f59e0b;
}

.submit-btn {
    background: #8b5cf6;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #f59e0b;
    color: #23244a;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: flex-start;
    min-width: 260px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #23244a;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
}

.contact-icon {
    font-size: 1.3rem;
    color: #8b5cf6;
    margin-top: 0.2rem;
}

.contact-details h4 {
    font-size: 1rem;
    color: #f59e0b;
    margin-bottom: 0.2rem;
}

.contact-details p {
    font-size: 0.98rem;
    color: #e5e7eb;
    margin: 0;
}

/* --- Footer --- */
.footer {
    background: #23244a;
    color: #e5e7eb;
    padding: 40px 0 0 0;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.footer-section h4,
.footer-logo h3 {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #8b5cf6;
}

.social-links a {
    color: #8b5cf6;
    font-size: 1.2rem;
    margin-right: 0.7rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #f59e0b;
}

.footer-bottom {
    border-top: 1px solid #8b5cf6;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.98rem;
    color: #e5e7eb;
}

/* --- WhatsApp Chatbot Widget --- */
.whatsapp-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #16213e;
    padding: 12px 16px;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid #8b5cf6;
    opacity: 1;
    animation: fadeInChat 1.2s ease forwards 1.5s;
}

.whatsapp-chatbot .chat-icon img {
    width: 24px;
    height: 24px;
}

.whatsapp-chatbot .chat-text {
    display: block;
    font-size: 15px;
}

@media (max-width: 600px) {
    .whatsapp-chatbot {
        padding: 10px;
        border-radius: 50px;
        gap: 8px;
        font-size: 0;
        min-width: 44px;
        min-height: 44px;
    }

    .whatsapp-chatbot .chat-text {
        display: none;
    }

    .whatsapp-chatbot .chat-icon img {
        width: 28px;
        height: 28px;
    }
}

/* --- Responsive Styles --- */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .destination-showcase {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .services-main-grid {
        flex-direction: column;
        gap: 2rem;
        min-height: unset;
        align-items: stretch;
    }

    .services-images,
    .services-info-cards {
        min-width: unset;
        max-width: 100%;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

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

    .contact-content {
        flex-direction: column;
        gap: 1.2rem;
    }

    .destination-showcase {
        flex-direction: column;
        gap: 1.2rem;
    }
}

@media (max-width: 600px) {

    .service-info-card,
    .feature-card,
    .testimonial-card,
    .contact-form,
    .contact-item,
    .info-card {
        padding: 1rem;
        min-height: unset;
    }

    .footer {
        padding: 24px 0 0 0;
    }

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

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

    .showcase-img {
        height: 180px;
    }

    .destination-image {
        min-width: unset;
        max-width: 100vw;
    }
}

/* --- Our Services Section: Match Testimonials Colors & Hover --- */
.services-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.service-info-card {
    background: #23244a;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.10);
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    border: 1px solid #23244a;
    position: relative;
}

.service-info-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.18);
    border-color: #8b5cf6;
}

.service-icon {
    font-size: 2.2rem;
    color: #8b5cf6;
    margin-bottom: 0.7rem;
}

.service-info_card h3 {
    font-size: 1.25rem;
    color: #f59e0b;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-info-card p {
    font-size: 1.05rem;
    color: #e5e7eb;
    margin-bottom: 0;
}

.quick-highlight .service-icon {
    color: #f59e0b;
}

.quick-highlight h3 {
    color: #f59e0b;
}

/* Responsive for Services Section */
@media (max-width: 900px) {
    .services-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    .services-content {
        padding: 2rem 0.5rem 1.5rem 0.5rem;
    }
}

@media (max-width: 600px) {
    .services-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-content {
        padding: 1.2rem 0.2rem 1rem 0.2rem;
    }

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

    .service-info-card {
        padding: 1.2rem 0.7rem 0.7rem 0.7rem;
        border-radius: 12px;
    }
}