* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Playfair Display', serif;
}

body {
    background: #fff;
    color: #111;
    width: 100%;
    scroll-behavior: smooth;
}


/* Navbar Container */

.navbar {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background: transparent;
    position: fixed;
    top: 0px;
    z-index: 1000;
}


/* Rounded White Container */

.navbar-container {
    background: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1100px;
    box-shadow: 1px 6px 22px rgba(7, 7, 7, 0.08);
}


/* Logo */

.logo {
    width: 150px;
    height: 40px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.logo i {
    background: #000;
    color: #fff;
    padding: 6px;
    border-radius: 50%;
}


/* Desktop Nav */

.nav-links ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #000;
}

.bookmarkBtn {
    width: 120px;
    height: 40px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.349);
    background-color: rgb(12, 12, 12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
}

.IconContainer {
    width: 30px;
    height: 30px;
    /* background: linear-gradient(to bottom, rgb(250, 250, 251), rgb(254, 254, 255)); */
    /* background-color: #376ebb; */
    background-color: #f4a530;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    transition-duration: 0.3s;
}

.icon {
    border-radius: 1px;
    /* color: #fff; */
}

.bookmarkBtn .text {
    height: 100%;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
    transition-duration: 0.3s;
    font-size: 0.8em;
}

.bookmarkBtn:hover .IconContainer {
    width: 110px;
    transition-duration: 0.3s;
    color: #fff;
}

.bookmarkBtn:hover .text {
    transform: translate(10px);
    width: 0;
    font-size: 0;
    transition-duration: 0.3s;
}

.bookmarkBtn:active {
    transform: scale(0.95);
    transition-duration: 0.3s;
}


/* Dropdown */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 140%;
    height: 200px;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 10px 20px;
    width: 100%;
    /* make full clickable */
    display: block;
    /* font-size: 2rem; */
}

.dropdown-menu li a {
    color: #111;
    display: block;
}

.dropdown-menu li:hover {
    background: #f7f7f7;
}


/* Submenu */

.dropdown-sub {
    position: relative;
}

.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.dropdown-sub:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
}

.dropdown-submenu li {
    padding: 10px 20px;
    width: 100%;
    /* make full clickable */
    display: block;
}

.dropdown-submenu li:hover {
    background: #f7f7f7;
}


/* Mobile Menu Button */

.menu-btn {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 10px;
}

.menu-btn i {
    font-size: 16px;
}


/* Mobile Nav */

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 200px;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    padding: 12px 0;
}

.mobile-nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}


/* Responsive */

.mobile-nav .dropdown-menu {
    position: absolute;
    top: 140%;
    height: 100px;
    /* margin-right: 10%; */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    /* width: 10px; */
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.mobile-nav .dropdown-menu li {
    padding: 10px 20px;
    width: 100%;
    /* make full clickable */
    display: block;
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }
    .menu-btn {
        display: block;
    }
}


/* Hero */

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.badge {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* space between dot and text */
    position: relative;
}

.badge::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #000;
    opacity: 0.85;
    border-radius: 50%;
    display: inline-block;
}

.hero h1 {
    /* font-size: 48px;
            margin: 20px 0; */
    text-align: center;
    margin-bottom: 25px;
    font-size: 3.2rem;
    font-weight: 200;
    line-height: 1.2;
}

.hero p {
    color: #7e7d7d;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn {
    background: #000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
}

.avatars {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fefefe;
    margin-left: -10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.avatars img:hover {
    transform: scale(1.1);
    z-index: 2;
}

.sub {
    margin-top: 15px;
    font-size: 14px;
    color: #707070;
}

.hero-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}