/* Navbar New - Responsive Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Navbar Container */
.navbar-new {
    background-color: #FFFFFF;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

/* Logo */
.navbar-new__logo {
    display: flex;
    align-items: center;
}

.navbar-new__logo img {
    height: 50px;
    width: auto;
}

/* Desktop & Tablet Menu */
.navbar-new__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: baseline;
}

.navbar-new__menu-item {
    color: #101010;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 100%;
    transition: color 0.3s ease;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
}

.navbar-new__menu-item:hover {
    color: #C80180;
}

.navbar-new__menu-item.active {
    border-bottom: 2px solid #101010;
    font-weight: 600;
    padding-bottom: 10px;
}

/* Contact Button */
.navbar-new__cta {
    background-color: transparent;
    color: #101010;
    border: 1px solid #101010;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.navbar-new__cta:hover {
    background-color: #C80180;
    border-color: #C80180;
    color: #ffffff;
}

/* Dropdown Menu */
.navbar-new__dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-new__dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.navbar-new__dropdown-toggle.active {
    border-bottom: 2px solid #101010;
    font-weight: 600;
    padding-bottom: 10px;
}

.navbar-new__dropdown-toggle svg {
    width: 12px;
    height: auto;
    transition: transform 0.3s ease;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.navbar-new__dropdown.active .navbar-new__dropdown-toggle svg {
    transform: rotate(180deg);
}

.navbar-new__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 1rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar-new__dropdown.active .navbar-new__dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.navbar-new__dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #101010;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.navbar-new__dropdown-item:hover,
.navbar-new__dropdown-item.active {
    background-color: #f5f5f5;
    color: #C80180;
}

/* Mobile Dropdown */
.navbar-new__mobile-dropdown {
    width: 100%;
}

.navbar-new__mobile-dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.navbar-new__mobile-dropdown-toggle svg {
    width: 14px;
    height: auto;
    transition: transform 0.3s ease;
}

.navbar-new__mobile-dropdown.active .navbar-new__mobile-dropdown-toggle svg {
    transform: rotate(180deg);
}

.navbar-new__mobile-dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.navbar-new__mobile-dropdown.active .navbar-new__mobile-dropdown-menu {
    max-height: 200px;
}

.navbar-new__mobile-dropdown-item {
    display: block;
    padding: 1rem 0;
    color: #101010;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    text-align: center;
}

.navbar-new__mobile-dropdown-item:hover,
.navbar-new__mobile-dropdown-item.active {
    color: #C80180;
}

/* Hamburger Menu */
.navbar-new__hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navbar-new__hamburger span {
    width: 100%;
    height: 3px;
    background-color: #101010;
    transition: all 0.3s ease;
}

.navbar-new__hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.navbar-new__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar-new__hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.navbar-new__mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-new__mobile-overlay.active {
    right: 0;
}

/* Close Button */
.navbar-new__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: #152257;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.navbar-new__close:hover {
    color: #C80180;
}

/* Mobile Menu Items */
.navbar-new__mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.navbar-new__mobile-menu > li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar-new__mobile-overlay.active .navbar-new__mobile-menu > li:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.navbar-new__mobile-overlay.active .navbar-new__mobile-menu > li:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.navbar-new__mobile-overlay.active .navbar-new__mobile-menu > li:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.navbar-new__mobile-overlay.active .navbar-new__mobile-menu > li:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.navbar-new__mobile-overlay.active .navbar-new__mobile-menu > li:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.navbar-new__mobile-overlay.active .navbar-new__mobile-menu > li:nth-child(6) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.navbar-new__mobile-item {
    color: #101010;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 100%;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
}

.navbar-new__mobile-item:hover {
    color: #C80180;
}

.navbar-new__mobile-item.active {
    background: linear-gradient(132.73deg, #152257 0%, #C80180 131.77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2px solid;
    border-image-source: linear-gradient(132.73deg, #152257 0%, #C80180 131.77%);
    border-image-slice: 1;
    font-weight: 600;
    padding-bottom: 10px;
}

.navbar-new__mobile-cta {
    background-color: transparent;
    color: #101010;
    border: 1px solid #101010;
    padding: 1rem 2rem;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.navbar-new__mobile-cta:hover {
    background-color: #C80180;
    border-color: #C80180;
    color: #ffffff;
}

/* Large Desktop/Tablet Transition (1024px - 1200px) */
@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .navbar-new__menu {
        gap: 1.5rem;
    }
    
    .navbar-new__menu-item {
        font-size: 13px;
    }
    
    .navbar-new__cta {
        padding: 0.65rem 1.3rem;
        font-size: 13px;
    }
}

/* Tablet Styles (768px - 1023px) */
@media screen and (max-width: 1023px) {
    .navbar-new__menu {
        gap: 1.5rem;
    }
    
    .navbar-new__menu-item {
        font-size: 0.85rem;
    }
    
    .navbar-new__cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .navbar-new__hamburger {
        display: flex;
    }
}

/* iPad Air and similar tablets (768px - 900px) */
@media screen and (min-width: 768px) and (max-width: 900px) {
    .navbar-new__menu,
    .navbar-new__cta {
        display: none;
    }
    
    .navbar-new__hamburger {
        display: flex;
    }
    
    .navbar-new__logo img {
        height: 45px;
    }
}

/* Mobile Styles (< 768px) */
@media screen and (max-width: 768px) {
    .navbar-new {
        padding: 1rem 1.5rem;
    }
    
    .navbar-new__logo img {
        height: 40px;
    }
    
    .navbar-new__menu,
    .navbar-new__cta {
        display: none;
    }
    
    .navbar-new__hamburger {
        display: flex;
    }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}
