/* Header Template: Minimal */
/* Minimal header styles - clean and simple */


/* Header navigation */
.header-minimal .header-wrap {
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-minimal .header-wrap.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-minimal .header-nav{
    background: var(--white);
    border-radius: 15px;
    position: relative;
}

.header-minimal .header-nav::before{
    background: var(--white-overlay);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    content: '';
    height: 10px;
    position: absolute;
    right: 15px;
    bottom: -10px;
    left: 15px;
}

/* Logo styles */
.header-minimal .logo img {
    max-height: 80px;
    width: auto;
}

/* Menu styles */
.header-minimal .top-menu {
    display: flex;
    align-items: center;
}

.header-minimal .main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.header-minimal .main-nav li a {
    text-decoration: none;
    color: var(--text, #333);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.header-minimal .main-nav li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color, #007cba);
    transition: width 0.3s ease;
}

.header-minimal .main-nav li a:hover::after {
    width: 100%;
}

.header-minimal .main-nav li a:hover {
    color: var(--primary-color, #007cba);
}

/* Offcanvas toggle button */
.header-minimal .offcanvas-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text, #333);
    transition: color 0.3s ease;
}

.header-minimal .offcanvas-toggle:hover {
    color: var(--primary-color, #007cba);
}

.header-minimal .offcanvas-toggle i {
    font-size: 1.5rem;
    line-height: 1;
}

/* Desktop: hide offcanvas toggle, show top menu */
@media (min-width: 992px) {
       
    .header-minimal .top-menu {
        display: flex;
    }
}

/* Mobile: show offcanvas toggle, hide top menu */
@media (max-width: 991px) {
    .header-minimal .top-menu {
        display: none !important;
    }
    
    .header-minimal .offcanvas-toggle {
        display: flex !important;
    }
    
    .header-minimal .nav-offcanvas {
        display: block !important;
    }
}

/* Offcanvas menu */
.header-minimal .offcanvas {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.header-minimal .offcanvas.active {
    right: 0;
}

.header-minimal .offcanvas-content {
    padding: 2rem;
}

.header-minimal .offcanvas-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: var(--text, #333);
}

.header-minimal .offcanvas-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-minimal .offcanvas-nav ul li a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text, #333);
    border-bottom: 1px solid #eee;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.header-minimal .offcanvas-nav ul li a:hover {
    color: var(--HBCTA-primary-color, #007cba);
}

.header-minimal .offcanvas-contact {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}



.header-minimal .offcanvas-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color, #007cba);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-minimal .offcanvas-social a:hover {
    background: var(--secondary-color, #6c757d);
    transform: translateY(-3px);
}

.cta-contact a{
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-contact a i{
    background:var(--pink-med);
    border-radius: 100%;
    color:var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
}

.cta-contact a em{
    color: var(--text);
    font-style: normal;
}

.cta-contact a em span{
    display: block;
    color: var(--pink-med);
    font-size: 20px;
    font-weight: 600;
}
