/* =========================================
   TOUR & TRAVELS HEADER
========================================= */

:root {
    --primary: #082c4c;
    --primary-dark: #051d33;
    --gold: #d7ad45;
    --gold-light: #f0cf78;
    --white: #ffffff;
    --text: #17202a;
    --light-bg: #f7f9fc;
    --whatsapp: #25d366;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
}

a {
    text-decoration: none;
}

/* =========================================
   HEADER
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 9999;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(8, 44, 76, 0.08);

    transition:
        height 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.site-header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================
   CONTAINER
========================================= */

.header-container {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    margin: auto;

    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* =========================================
   BRAND
========================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #0d527e
        );

    color: var(--gold-light);

    font-size: 24px;

    box-shadow:
        0 7px 20px rgba(8, 44, 76, 0.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    color: var(--primary);
    font-size: 18px;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.brand-text small {
    color: #7b8794;
    font-size: 9px;
    margin-top: 5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* =========================================
   NAVIGATION
========================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.main-nav a {
    position: relative;

    color: #273746;

    padding: 10px 13px;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background: var(--gold);

    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 55%;
}

/* =========================================
   HEADER ACTIONS
========================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-btn,
.whatsapp-btn {
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 15px;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.call-btn {
    color: var(--primary);
    border: 1px solid rgba(8, 44, 76, 0.18);
    background: #fff;
}

.call-btn span {
    font-size: 16px;
}

.whatsapp-btn {
    color: var(--white);
    background: var(--whatsapp);

    box-shadow:
        0 6px 18px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn span {
    font-size: 17px;
}

.call-btn:hover,
.whatsapp-btn:hover {
    transform: translateY(-2px);
}

.call-btn:hover {
    box-shadow: 0 7px 20px rgba(8, 44, 76, 0.12);
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 9px;

    background: var(--primary);

    cursor: pointer;

    padding: 10px;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    z-index: 10001;
}

.menu-toggle span {
    width: 23px;
    height: 2px;

    background: var(--white);

    border-radius: 5px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1150px) {

    .header-container {
        padding: 0 20px;
        gap: 15px;
    }

    .main-nav {
        gap: 0;
    }

    .main-nav a {
        padding: 9px 8px;
        font-size: 12px;
    }

    .call-btn,
    .whatsapp-btn {
        padding: 0 10px;
    }

    .call-btn b,
    .whatsapp-btn b {
        display: none;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .site-header {
        height: 70px;
    }

    .site-header.scrolled {
        height: 66px;
    }

    .header-container {
        padding: 0 16px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        font-size: 20px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text small {
        font-size: 7px;
        letter-spacing: 1px;
    }

    /* Hide Desktop Nav */
    .main-nav {
        position: fixed;

        top: 70px;
        left: 0;

        width: 100%;

        padding: 15px 18px 22px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        background: #ffffff;

        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        width: 100%;

        padding: 14px 10px;

        border-bottom: 1px solid #edf0f3;

        font-size: 14px;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a.active {
        background: rgba(215, 173, 69, 0.1);
        border-radius: 7px;
    }

    /* Actions */
    .header-actions {
        margin-left: auto;
    }

    .call-btn,
    .whatsapp-btn {
        width: 38px;
        height: 38px;

        padding: 0;

        border-radius: 50%;
    }

    .call-btn span,
    .whatsapp-btn span {
        font-size: 16px;
    }

    /* Hamburger */
    .menu-toggle {
        display: flex;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 500px) {

    .header-container {
        padding: 0 12px;
        gap: 7px;
    }

    .brand {
        gap: 8px;
    }

    .brand-logo {
        width: 39px;
        height: 39px;
        font-size: 18px;
    }

    .brand-text strong {
        font-size: 13px;
    }

    .brand-text small {
        display: none;
    }

    .header-actions {
        gap: 5px;
    }

    .call-btn,
    .whatsapp-btn {
        width: 35px;
        height: 35px;
    }

    .menu-toggle {
        width: 39px;
        height: 39px;
        padding: 8px;
    }

    .menu-toggle span {
        width: 20px;
    }

}

/* =========================================
   BODY TOP SPACE
========================================= */

body {
    padding-top: 82px;
}

@media (max-width: 900px) {
    body {
        padding-top: 70px;
    }
}