*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Urbanist', sans-serif;
}
body{
    font-family: "Urbanist", sans-serif;
    overflow-x: hidden;
}



/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    width: 100%;
}

.header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border-bottom-color: #ddd;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h2 {
    color: #d4af37;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: none; /* Hide text when logo image is used */
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    display: inline-block; 
    height: 24px;
}

.nav-link span{
    display: block;
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.nav-link::after{
    content: attr(data-text);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.nav-link:hover span{
    transform: translateY(-100%);
}

.nav-link:hover::after{
    transform: translateY(0);
}

/* Packages Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
}

.nav-dropdown .nav-link {
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown .nav-link .desktop-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-link .desktop-chevron {
    transform: rotate(180deg);
}

.nav-dropdown .nav-link::after {
    transform: translateY(100%);
}

.nav-dropdown .nav-link:hover::after {
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
    padding-top: 15px;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    display: flex;
    gap: 0;
    background-color: #faf5e8;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 600px;
}

.dropdown-options {
    flex: 1;
    padding: 24px 0;
    min-width: 250px;
}

.dropdown-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover,
.dropdown-option.active {
    background-color: rgba(99, 207, 191, 0.1);
    color: #63cfbf;
}

.dropdown-option .option-arrow {
    width: 20px;
    height: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-option:hover .option-arrow {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-image {
    flex: 1;
    min-width: 300px;
    padding: 24px;
    background-color: #fffaf5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ddd;
}

.dropdown-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

@media (max-width: 968px) {
    .dropdown-menu {
        min-width: 400px;
    }
    
    .dropdown-content {
        flex-direction: column;
    }
    
    .dropdown-image {
        border-left: none;
        border-top: 1px solid #ddd;
        min-width: 100%;
    }
}

.header_button {
    border-radius: 999px;
    display: inline-flex;
    position: relative;
    margin-inline: auto;
    cursor: pointer;
    text-decoration: none;
}
 .header_button .btn__content{
    align-items: center;
    background-color: #63cfbf;
    border: 1px solid #000;
    border-radius: inherit;
    display: flex;
    height: 50px;
    justify-content: space-between;
    min-height: 50px;
    gap: 12px;
    min-width: 100%;
    padding: 0 2rem;
    position: relative;
    transition: transform .5s cubic-bezier(.19, 1, .22, 1);
    z-index: 2;
    position: relative;
    font-weight: 600;
}
.header_button img{
    width: 30px;
}
.header_button:after {
    background-image: url(images/texture.png);
    background-size: cover;
    border: 1px solid #000;
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translate3d(4px, 4px, 0);
    transition: transform .5s cubic-bezier(.19, 1, .22, 1);
    width: 100%;
    z-index: 1;
}

.header_button:hover .btn__content {
    transform: translate3d(4px, 4px, 0);
}

.header_button:hover:after {
    transform: translate3d(0, 0, 0);
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Full Screen Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 100px 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-link {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
    transition: color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link:hover {
    color: #63cfbf;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #63cfbf;
    transition: width 0.3s ease;
}

.mobile-nav-link:hover::after {
    width: 100%;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}

.mobile-dropdown-toggle .mobile-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.mobile-dropdown-toggle.active .mobile-chevron {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 1.5rem;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-option {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-dropdown-option:hover,
.mobile-dropdown-option.active {
    color: #63cfbf;
    padding-left: 1rem;
}

.mobile-menu-button {
    margin-top: 2rem;
    width: 100%;
}

.mobile-menu-button .header_button {
    width: 100%;
}

/* Header Responsive Styles */
@media (max-width: 968px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo h2 {
        font-size: 1.5rem;
    }
    
    .header_button .btn__content {
        padding: 0 1.5rem;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    html,body{
        overflow-x: hidden;
    }
    .container{
        padding-inline: 16px;
    }
    .header {
        padding: 0.75rem 0;
    }
    
    .header-container {
        padding: 0 1rem;
        position: relative;
    }
    
    /* Hide desktop menu */
    .nav-menu {
        display: none;
    }
    
    /* Show hamburger menu */
    .hamburger-menu {
        display: flex;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo h2 {
        font-size: 1.25rem;
    }
    
    /* Mobile menu styles */
    .mobile-menu-overlay {
        display: block;
    }
}
