/* =========================================================
   AURORA THEME - NAVBAR.CSS
   PART 1A
   - Reset
   - Root Variables
   - Navbar Layout
   - Logo Section
========================================================= */


/* =========================================================
   RESET
========================================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    font-family:"Segoe UI",sans-serif;
    background:var(--surface-primary);
    color:var(--text-primary);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    display:block;
    max-width:100%;
}

button{
    border:none;
    outline:none;
    background:none;
    cursor:pointer;
}

ul,
ol{
    list-style:none;
}





/* =========================================================
   NAVBAR LAYOUT
========================================================= */

.navbar{
    position:fixed;
    top:0;
    left:var(--navbar-left);
    transform:translateX(-50%);
    width:100%;
    max-width:var(--nav-max-width);
    z-index:1000;
    padding:var(--space-0);
    background:transparent;
    box-shadow:var(--navbar-shadow);
    z-index: 1000;
    margin-top:var(--space-0);

}


.single-navbar.absolute{

    position:absolute;

}

.single-navbar.sticky{

    position:sticky;

    top:0;

}

.nav-container{
    position:relative;
    width:100%;
    min-height:var(--nav-height);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:var(--container-padding);
    border-radius:var(--nav-radius);
    background:var(--surface-gradient);
    border:1px solid var(--border-secondary);
    box-shadow:var(--shadow-md);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    transition:var(--transition);
}

.nav-container:hover{

    box-shadow:var(--shadow-lg);

}


/* =========================================================
   LOGO SECTION
========================================================= */

.logo-container,
.logo-container-default{

    display:flex;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    transition:var(--transition);

}


/* Logo Circle */

.logo-image{

    width:85px;
    height:85px;
    min-width:56px;
    border-radius:50%;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--surface-secondary);
    border:3px solid rgba(255,255,255,.70);
    box-shadow:var(--shadow-md);
    transition:var(--transition);
}

.logo-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/* Placeholder */

.logo-placeholder{
    background:var(--surface-gradient);
    color:var(--text-light);

    font-size:28px;

    font-weight:700;

    user-select:none;

}


/* Hover */

.logo:hover{

    transform:translateY(-2px);

}

.logo:hover .logo-image{

    transform:rotate(-5deg) scale(1.05);

    box-shadow:
        0 12px 28px rgba(0,0,0,.18),
        0 0 0 6px rgba(0,184,148,.12);

}
/* =========================================================
   COMPANY DETAILS
========================================================= */

.company-details{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:4px;
}

.company-details h1{
    margin:0;
    color:var(--text-light);
    font-size:22px;
    font-weight:700;
    line-height:1.1;
    letter-spacing:.3px;
    transition:var(--transition);
}

.company-details span{
    display:block;
    color:var(--text-accent);
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1.2px;
    transition:var(--transition);
}

.logo:hover .company-details h1{
    color:var(--brand-accent);
}

.logo:hover .company-details span{
    color:#ffffff;
}


/* =========================================================
   ROYAL HORIZON
   RIGHT SECTION LAYOUT
========================================================= */

.nav-right{

    margin-left:auto;

    display:flex;

    flex-direction:column;

    justify-content:center;

    flex:1;

    /* padding-left:40px; */

}

.bottom-navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    margin-top:12px;

}


/* =========================================================
   TOP INFO BAR
========================================================= */

.top-info{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:36px;

    padding-bottom:10px;

    margin-bottom:6px;

    border-bottom:1px solid var(--topbar-divider);

}

.top-info-left,
.top-info-right{

    display:flex;

    align-items:center;

    gap:22px;

}

.top-info a{

    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--text-light);
    font-size:13px;
    font-weight:500;
    transition:var(--transition);

}

.top-info a i{

    color:var(--brand-accent);

    font-size:13px;

    transition:var(--transition);

}

.top-info a:hover{

    color:var(--brand-accent);

}

.top-info a:hover i{

    color:var(--brand-accent);

}


/* divider */

.top-info-left a:not(:last-child)::after{
    content:"";
    width:1px;
    height:14px;
    margin-left:18px;
    background:var(--border-light);
}


/* =========================================================
   MENU ROW
========================================================= */

.bottom-navbar .nav-links{

    margin-left:0;

    justify-content:flex-start;

    gap:28px;

    flex:1;

}

.bottom-navbar .nav-links a{
    color:var(--text-light);
    font-size:15px;
    font-weight:600;
    letter-spacing:.25px;
}

.bottom-navbar .nav-links a:hover{
    color:var(--brand-accent);
}

.bottom-navbar .nav-links a.active{
    color:var(--brand-accent);
}


/* underline */

.bottom-navbar .nav-links a::after{
    background:var(--brand-accent);
    height:2px;
}

/* =========================================================
   ROYAL HORIZON
   NAV ACTIONS
========================================================= */

.nav-actions{

    display:flex;

    align-items:center;

    gap:14px;

    margin-left:24px;

    flex-shrink:0;

}


/* =========================================================
   ICON BUTTON
========================================================= */

.icon-btn{

    position:relative;

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--icon-bg);

    color:var(--icon-color);

    border:1px solid rgba(255,255,255,.08);

    overflow:hidden;

    transition:var(--transition);

}

.icon-btn i{

    font-size:17px;

    transition:var(--transition);

}

.icon-btn::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    background:var(--surface-highlight);
    opacity:0;
    transform:scale(.4);
    transition:.35s ease;
}

.icon-btn i{

    position:relative;

    z-index:2;

}

.icon-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 12px 28px rgba(0,0,0,.22);

}

.icon-btn:hover::before{

    opacity:1;

    transform:scale(1);

}

.icon-btn:hover i{

    color:var(--icon-hover-color);

}


/* =========================================================
   SEARCH BUTTON
========================================================= */

.icon-btn:first-child:hover{

    transform:
        translateY(-3px)
        rotate(8deg);

}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.icon-btn:last-child:hover{

    box-shadow:

        0 12px 30px rgba(37,211,102,.35);

}


/* =========================================================
   BOOK BUTTON
========================================================= */

.nav-actions .book-btn{
    position:relative;
    overflow:hidden;
    padding:14px 32px;
    margin-left:8px;
    border-radius:50px;
    background:var(--button-primary-bg);
    color:var(--button-primary-text);
    box-shadow:var(--shadow-md);
    font-size:15px;
    font-weight:700;
    letter-spacing:.3px;
    transition:var(--transition);
}

.nav-actions .book-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:120%;

    height:100%;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.35),

            transparent

        );

    transition:.8s;

}

.nav-actions .book-btn:hover{
    transform:translateY(-4px);
    background:var(--button-primary-hover);
    box-shadow:var(--shadow-lg);
}

.nav-actions .book-btn:hover::before{

    left:120%;

}

.nav-actions .book-btn:active{

    transform:scale(.98);

}


/* =========================================================
   NAV CONTAINER IMPROVEMENTS
========================================================= */

/* .nav-container{

    align-items:flex-start;

    padding-top:14px;

    padding-bottom:14px;

} */

.logo-container{

    flex-shrink:0;

}


/* =========================================================
   PREMIUM HOVER
========================================================= */

.nav-container::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:1px;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.18),

            transparent

        );

}

.nav-container::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:1px;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(248,193,70,.22),

            transparent

        );

}


/* =========================================================
   MENU SPACING
========================================================= */

.bottom-navbar{

    position:relative;

}

.bottom-navbar .nav-links{

    /* min-height:46px; */

    align-items:center;

}

.bottom-navbar .nav-links a{

    height:46px;

    display:flex;

    align-items:center;

}
/* =========================================================
   ROYAL HORIZON
   RESPONSIVE
========================================================= */

@media (max-width:1200px){

    .nav-right{

        padding-left:24px;

    }

    .top-info-left,
    .top-info-right{

        gap:14px;

    }

    .top-info a{

        font-size:12px;

    }

    .bottom-navbar .nav-links{

        gap:18px;

    }

    .bottom-navbar .nav-links a{

        font-size:14px;

    }

    .nav-actions{

        gap:10px;

    }

    .nav-actions .book-btn{

        padding:12px 24px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:992px){

    .nav-container{

        align-items:center;

    }

    .nav-right{

        position:absolute;

        left:0;

        top:calc(100% + 12px);

        width:100%;

        background:var(--nav-mobile-bg);

        border:1px solid var(--nav-mobile-border);

        border-radius:16px;

        box-shadow:var(--shadow-lg);

        padding:20px;

        opacity:0;

        visibility:hidden;

        pointer-events:none;

        transform:translateY(-15px);

        transition:var(--transition);

        z-index:100;

    }

    .nav-right.active{

        opacity:1;

        visibility:visible;

        pointer-events:auto;

        transform:translateY(0);

    }

    .top-info{

        flex-direction:column;

        align-items:flex-start;

        gap:16px;

        border-bottom:1px solid rgba(0,0,0,.08);

        margin-bottom:20px;

    }

    .top-info-left,
    .top-info-right{

        width:100%;

        flex-wrap:wrap;

        gap:14px;

    }

    .top-info a{

        color:#444;

    }

    .top-info i{

        color:var(--brand-primary);

    }

    .bottom-navbar{

        flex-direction:column;

        align-items:flex-start;

        gap:18px;

    }

    .bottom-navbar .nav-links{

        position:static;

        width:100%;

        display:flex;

        flex-direction:column;

        align-items:flex-start;

        gap:0;

        opacity:1;

        visibility:visible;

        pointer-events:auto;

        transform:none;

        background:none;

        border:none;

        box-shadow:none;

        padding:0;

    }

    .bottom-navbar .nav-links a{

        width:100%;

        height:auto;

        padding:15px 0;

        color:#222;

        border-bottom:1px solid rgba(0,0,0,.06);

    }

    .bottom-navbar .nav-links a::after{

        display:none;

    }

    .bottom-navbar .nav-links a:hover{

        padding-left:12px;

        color:var(--brand-primary);

    }

    .nav-actions{

        width:100%;

        margin:10px 0 0;

        justify-content:flex-start;

    }

    .nav-actions .book-btn{

        flex:1;

        justify-content:center;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px){

    .logo{

        gap:10px;

    }

    .logo-image{

        width:50px;

        height:50px;

        min-width:50px;

    }

    .company-details h1{

        font-size:18px;

    }

    .company-details span{

        font-size:11px;

    }

    .top-info{

        gap:12px;

    }

    .top-info-left,
    .top-info-right{

        flex-direction:column;

        align-items:flex-start;

        gap:10px;

    }

    .top-info-left a::after{

        display:none;

    }

    .icon-btn{

        width:42px;

        height:42px;

    }

    .icon-btn i{

        font-size:15px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:576px){

    .company-details span{

        display:none;

    }

    .company-details h1{

        font-size:16px;

    }

    .nav-right{

        padding:16px;

    }

    .top-info a{

        font-size:12px;

    }

    .bottom-navbar .nav-links a{

        font-size:14px;

    }

    .nav-actions{

        flex-wrap:wrap;

    }

    .nav-actions .book-btn{

        width:100%;

        margin-left:0;

    }

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width:1600px){

    .bottom-navbar .nav-links{

        gap:36px;

    }

}


/* =========================================================
   ROYAL HOVER EFFECTS
========================================================= */

.top-info a,
.bottom-navbar .nav-links a,
.icon-btn,
.nav-actions .book-btn,
.nav-right{

    transition:all .35s ease;

}

.top-info a:hover{

    transform:translateY(-1px);

}

.bottom-navbar .nav-links a:hover{

    transform:translateY(-2px);

}


/* =========================================================
   OPTIONAL ACTIVE MENU
========================================================= */

.bottom-navbar .nav-links a.active{

    color:var(--brand-accent);

}

.bottom-navbar .nav-links a.active::after{

    width:100%;

}


/* =========================================================
   MOBILE MENU ANIMATION
========================================================= */

@keyframes royalMenu{

    from{

        opacity:0;

        transform:translateY(-15px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.nav-right.active{

    animation:royalMenu .35s ease;

}
/* =========================================================
   NAVIGATION
========================================================= */

.nav-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:34px;
    margin-left:auto;
}

.nav-links a{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:var(--text-light);
    font-size:15px;
    font-weight:600;
    letter-spacing:.2px;
    transition:var(--transition);
}

.nav-links a:not(.book-btn)::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    border-radius:50px;
    background:var(--brand-primary);
    transition:var(--transition);
}

.nav-links a:not(.book-btn):hover{
    color:var(--brand-primary);
}

.nav-links a:not(.book-btn):hover::after{
    width:100%;
}

.nav-links a.active{
    color:var(--brand-primary);
}

.nav-links a.active::after{
    width:100%;
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 28px;
    border-radius:50px;
    background:var(--button-primary-bg);
    color:#ffffff !important;
    font-size:15px;
    font-weight:700;
    white-space:nowrap;
    box-shadow:0 8px 25px rgba(0,184,148,.30);
    transition:var(--transition);
}

.book-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,184,148,.40);
}

.book-btn:active{
    transform:scale(.98);
}


/* =========================================================
   MENU TOGGLE
========================================================= */

.menu-toggle{
    display:none;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    border-radius:10px;
    color:var(--text-light);
    font-size:26px;
    cursor:pointer;
    transition:var(--transition);
}

.menu-toggle:hover{
    background:rgba(255,255,255,.08);
}

.menu-toggle i{
    transition:var(--transition);
}
/* =========================================================
   AURORA THEME - NAVBAR.CSS
   PART 2
   - Mobile Navigation
   - Responsive
   - Animations
========================================================= */


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width:992px){

    .menu-toggle{
        display:flex;
    }

    .nav-links{
        position:absolute;
        top:calc(100% + 12px);
        left:0;
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:18px;
        border-radius:14px;
        background:var(--surface-secondary);
        box-shadow:0 18px 40px rgba(0,0,0,.12);
        border:1px solid var(--border-primary);
        opacity:0;

        visibility:hidden;

        pointer-events:none;

        transform:translateY(-15px);

        transition:.35s ease;

        z-index:100;

    }

    .nav-links.active{

        opacity:1;

        visibility:visible;

        pointer-events:auto;

        transform:translateY(0);

    }

    .nav-links a{
        width:100%;
        padding:14px 8px;
        color:var(--text-primary);
        border-bottom:1px solid rgba(0,0,0,.06);
        justify-content:flex-start;
    }

    .nav-links a:last-child{

        border-bottom:none;

    }

    .nav-links a::after{

        display:none;

    }

    .nav-links a:hover{
        color:var(--brand-primary);
        padding-left:16px;
    }

    .book-btn{

        width:100%;

        justify-content:center;

        margin-top:14px;

        color:#ffffff !important;

        border:none !important;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:768px){

    .single-navbar{

        padding:6px;

    }

    .nav-container{

        min-height:70px;

        padding:14px 16px;

    }

    .logo{

        gap:12px;

    }

    .logo-image{

        width:52px;

        height:52px;

        min-width:52px;

    }

    .company-details h1{

        font-size:19px;

    }

    .company-details span{

        font-size:11px;

        letter-spacing:.8px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:576px){

    .single-navbar{

        padding:5px;

    }

    .nav-container{

        min-height:66px;

        padding:12px 14px;

        border-radius:10px;

    }

    .logo{

        gap:10px;

    }

    .logo-image{

        width:46px;

        height:46px;

        min-width:46px;

        border-width:2px;

    }

    .logo-placeholder{

        font-size:22px;

    }

    .company-details h1{

        font-size:17px;

    }

    .company-details span{

        display:none;

    }

    .menu-toggle{

        width:42px;

        height:42px;

        font-size:22px;

    }

    .nav-links{

        padding:14px;

    }

    .nav-links a{

        font-size:15px;

        padding:13px 4px;

    }

    .book-btn{

        padding:12px 18px;

        font-size:14px;

    }

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width:1400px){

    .single-navbar{

        max-width:1400px;

    }

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(-15px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.nav-links.active{

    animation:fadeDown .35s ease;

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.nav-links a:focus-visible,
.book-btn:focus-visible,
.menu-toggle:focus-visible{
    outline:2px solid var(--brand-primary);
    outline-offset:3px;
}


/* =========================================================
   SMOOTH TRANSITIONS
========================================================= */

.logo,
.logo-image,
.company-details h1,
.company-details span,
.nav-links,
.nav-links a,
.book-btn,
.menu-toggle,
.nav-container{

    transition:all .3s ease;

}









.nav-links-menu, .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 15px 0px;
    margin: 21px 20px;
  }

  .nav-links-menu li,
  .nav-links li {
    color: var(--text);
    margin: 0 15px;
    position: relative;
    cursor: pointer;
  }


















