:root {
    --primary: #1A1A1A;
    --text-white: #FFFFFF;
    --text-light: #E5E7EB;
    --text-dark: #333333;
    --accent: #0f172a;
    --blur-bg: rgba(255, 255, 255, 0.95);
    /* Set main font to Montserrat for better alignment with logos */
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --whatsapp-green: #25D366;
    
    /* Branding Colors */
    --brand-blue: #1e3a8a;    /* Professional deep blue */
    --brand-orange: #ea580c;  /* Corporate vibrant orange */
    --brand-orange-light: #fff7ed;
}

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

body {
    background-color: #ffffff;
    font-family: var(--font-sans);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* NAVBAR (Transparent Initially) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.main-header.scrolled {
    background: var(--blur-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 65px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.main-header.scrolled .nav-link {
    color: var(--primary);
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--text-white);
    transition: var(--transition);
}

.main-header.scrolled .nav-link::after {
    background-color: var(--primary);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wa-contact-btn {
    background-color: var(--whatsapp-green);
    color: var(--text-white);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.wa-contact-btn:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.wa-contact-btn i {
    font-size: 20px;
}

.menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--text-white);
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.main-header.scrolled .menu-btn {
    color: var(--primary);
    text-shadow: none;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('assets/hero.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Keep the shadow subtle enough to let image pop, but dark enough to read white text */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.swoosh-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: inherit;
    font-size: 8vw;
    color: var(--text-white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    line-height: 1;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle-box {
    text-align: center;
    max-width: 600px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    color: var(--text-white);
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.lets-go-btn {
    background-color: var(--primary);
    color: var(--text-white);
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 30px;
}

.lets-go-btn:hover {
    background-color: #000;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-social {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-social p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.ig-btn i {
    font-size: 24px;
}

.ig-btn:hover {
    color: #E1306C;
    transform: translateY(-2px);
}

/* SCROLL ANIMATION CLASSES (FADE IN) */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

/* SERVICES SECTION */
.services-section {
    background-color: #f8fafc;
    padding: 100px 5%;
    position: relative;
    z-index: 2;
}

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

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s, transform 0.8s;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
    line-height: 1.3;
}

.card-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.card-btn {
    text-decoration: none;
    color: var(--whatsapp-green);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.card-btn i {
    font-size: 20px;
    transition: var(--transition);
}

.service-card:hover .card-btn {
    color: #1ebe57;
}

.service-card:hover .card-btn i {
    transform: translateX(4px);
}

.wide-card {
    grid-column: span 2;
    flex-direction: row;
}

.wide-card .card-image-wrapper {
    width: 50%;
    height: auto;
    min-height: 350px;
}

.wide-card .card-content {
    width: 50%;
    justify-content: center;
    padding: 48px;
}

.wide-card .card-content h3 {
    font-size: 30px;
}

/* DESTINATIONS SECTION */
.destinations-section {
    background-color: #f8fafc;
    padding: 100px 5%;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s, transform 0.8s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-top: 4px solid var(--brand-blue);
}

.destination-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.1);
    border-top-color: var(--brand-orange);
}

.destination-item i {
    font-size: 35px;
    color: var(--brand-orange);
    background: var(--brand-orange-light);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: var(--transition);
}

.destination-item:hover i {
    background: var(--brand-orange);
    color: #fff;
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.2);
}

.destination-item h3 {
    font-size: 20px;
    color: var(--brand-blue);
    font-family: var(--font-sans);
    font-weight: 600;
}

.destination-item p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: #f8fafc;
    padding: 100px 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s, transform 0.8s;
}

.testimonial-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    background: #fff;
    transform: translateY(-5px) !important;
}

.quote-icon {
    font-size: 40px;
    color: var(--primary);
    opacity: 0.1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-info h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 18px;
    color: var(--primary);
}

.author-info span {
    font-size: 14px;
    color: #94a3b8;
}

/* FLOATING WHATSAPP BUTTON */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .wide-card {
        grid-column: span 1;
        flex-direction: column;
    }

    .wide-card .card-image-wrapper,
    .wide-card .card-content {
        width: 100%;
    }

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

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

@media (max-width: 768px) {

    .nav-center,
    .nav-right {
        display: none;
    }

    .navbar-content {
        position: relative;
        justify-content: center;
    }

    .nav-left {
        width: 100%;
        justify-content: center;
    }

    .menu-btn {
        display: block;
        position: absolute;
        left: 5%;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }

    .hero-title {
        font-size: 12vw;
    }

    .hero-subtitle-box {
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .testimonials-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}

/* FOOTER */
.main-footer {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 30px 5%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-ig-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.footer-ig-link:hover {
    color: #E1306C;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}