/* ==========================================================================
   GLOBAL STYLES
   ========================================================================== */

/* Remove focus-visible borders globally */
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.country-code-select::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right:6px!important;;
    top: 27px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray);
}

#country-code-selectHome select {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0px !important;
}

/* ==========================================================================
   HAMBURGER MENU STYLES
   ========================================================================== */

/* Custom Hamburger Menu Icon */
.navbar-toggler {
    border: none;
    padding: 10px;
    background: transparent;
    cursor: pointer;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation when Navbar is Open */
.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================================================
   NAVBAR & DROPDOWN STYLES - CONSOLIDATED
   ========================================================================== */

/* Dropdown hover effect fix */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Bootstrap dropdown show class override */
.nav-item.dropdown.show .dropdown-menu {
    display: block;
}

/* Ensure dropdown stays open on hover */
.nav-item.dropdown:hover > .dropdown-menu,
.dropdown-menu:hover {
    display: block !important;
}

/* Fix for click and hover */
.navbar-nav .dropdown-menu {
    pointer-events: auto;
}


/* ----------.header-phone s------------ */

   .header-phone a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1.5px solid #d4a11e;
    border-radius: 40px;
    color: #d4a11e;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
}

.header-phone a i {
    font-size: 14px;
}

.header-phone a:hover {
    background: #d4a11e;
    color: #000;
}


/* ----------.header-phone end------------ */


/* Desktop Dropdown Styling */
@media (min-width: 992px) {
    .navbar-nav .dropdown-menu,
    .luxury-navbar .nav-item.dropdown .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.98);
        border: none;
        border-radius:0px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        padding: 15px 0;
        min-width:190px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        display: block;
        pointer-events: none;
    }
    
    .nav-item.dropdown:hover .dropdown-menu,
    .luxury-navbar .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block !important;
        pointer-events: auto;
    }
    
    .navbar-nav .dropdown-item,
    .luxury-navbar .dropdown-menu .dropdown-item {
        padding: 10px 25px;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        font-size: 14px;
        border-left: 3px solid transparent;
    }
    
    .navbar-nav .dropdown-item:hover,
    .luxury-navbar .dropdown-menu .dropdown-item:hover {
        background-color: transparent;
        color: #0a2463;
        padding-left: 30px;
        border-left: 3px solid #c19a6b;
    }
    
    .navbar-nav .dropdown-divider,
    .luxury-navbar .dropdown-divider {
        margin: 10px 25px;
        opacity: 0.3;
    }
    
    .navbar-nav .dropdown-toggle::after,
    .luxury-navbar .dropdown-toggle::after {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }
    
    .nav-item.dropdown:hover .dropdown-toggle::after,
    .luxury-navbar .nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Mobile Dropdown Styling */
@media (max-width: 991.98px) {
    /* Mobile Navbar Container */
    #navbarNav {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    /* Mobile Nav Items */
    .luxury-navbar .navbar-nav {
        padding: 15px 0;
    }
    
    .luxury-navbar .nav-item {
        margin: 8px 0;
    }
    
    .luxury-navbar .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 12px 15px !important;
        font-size: 16px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .luxury-navbar .nav-link:hover,
    .luxury-navbar .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        color: white !important;
    }
    
    /* Mobile Dropdown Menu */
    .navbar-nav .dropdown-menu,
    .luxury-navbar .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none !important;
    }
    
    .navbar-nav .dropdown-menu.show,
    .luxury-navbar .dropdown-menu.show {
        display: block !important;
        background: rgba(255, 255, 255, 0.05);
        padding: 0 0 0 20px;
        margin: 10px 0;
    }
    
    /* Mobile dropdown items */
    .navbar-nav .dropdown-item,
    .luxury-navbar .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 10px 15px !important;
        font-size: 15px !important;
        border-left: 2px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    .navbar-nav .dropdown-item:hover,
    .luxury-navbar .dropdown-menu .dropdown-item:hover {
        color: white !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
        padding-left: 20px !important;
    }
    
    /* Arrow rotation on mobile when expanded */
    .navbar-nav .dropdown-toggle[aria-expanded="true"]::after,
    .luxury-navbar .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg) !important;
    }
    
    /* Make sure dropdown menu doesn't inherit desktop styles */
    .luxury-navbar .nav-item.dropdown .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        transform: none !important;
    }
    
    /* Brochure button on mobile */
    .luxury-navbar .btn-luxury-primary {
        width: 100%;
        margin-top: 15px;
        padding: 12px;
        font-size: 16px;
    }
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

/* Footer disclaimer */
p.text-light.mb-4.disclimerline {
    font-size: 13px;
}

.urlfooter ul {
    display: flex;
    padding: 0px;
    line-height: 17px;
}

.urlfooter ul li {
    list-style: none;
    border-right: 1px solid #8a8a8a;
    padding: 0px 10px;
}

.urlfooter ul li a {
    text-decoration: none;
    display: inline-block;
    color: aliceblue;
    font-size: 14px;
}

.urlfooter ul li:last-child {
    border-right: none;
}

/* ==========================================================================
   CONTENT WRAPPER STYLES
   ========================================================================== */

.wraperSimpleContent {
    padding: 25px 25px;
    background: #fdfdfd;
    margin: 20px 0px;
}

.wraperSimpleContent h1 {
    font-size: 35px;
}

.wraperSimpleContent h2 {
    font-size: 25px;
}

.wraperSimpleContent h3 {
    font-size: 23px;
}

.wraperSimpleContent h4 {
    font-size: 20px;
}

.wraperSimpleContent h5 {
    font-size: 18px;
}

.wraperSimpleContent h6 {
    font-size: 15px;
}

.wraperSimpleContent ul {
    padding-left: 20px;
}

.wraperSimpleContent ul li {
    line-height: 33px;
}

.bannerheroSmall h1 {
    font-size: 40px;
}

/* ==========================================================================
   LOCATION CONNECTIVITY STYLES
   ========================================================================== */

/* Location Connectivity Box */
.location-connectivity-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.location-connectivity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-connectivity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.location-connectivity-item:hover {
    background-color: #f9f9f9;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}

.location-connectivity-item:last-child {
    border-bottom: none;
}

.location-name {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    flex: 1;
}

.location-time {
    font-size: 16px;
    color: #c29b40;
    font-weight: 600;
    min-width: 100px;
    text-align: right;
}

/* Map Container */
.location-map-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-map-box {
    flex: 1;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 40px;
}

.map-icon {
    color: #c29b40;
    margin-bottom: 20px;
}

.map-placeholder h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: #666;
    font-size: 16px;
}

/* Key Points */
.location-key-points {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.key-point {
    text-align: center;
    padding: 15px 10px;
}

.key-time {
    font-size: 24px;
    font-weight: 700;
    color: #c29b40;
    margin-bottom: 5px;
}

.key-place {
    font-size: 14px;
    color: #666;
    line-height: 1.3;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 992px) {
    .location-connectivity-box {
        margin-bottom: 30px;
        padding: 30px;
    }
    
    .location-map-box {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .location-connectivity-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }
    
    .location-time {
        text-align: left;
        margin-top: 5px;
        min-width: auto;
    }
    
    .key-time {
        font-size: 20px;
    }
    
    .location-connectivity-box {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .wraperSimpleContent {
        padding: 15px;
    }
    
    .wraperSimpleContent h1 {
        font-size: 28px;
    }
    
    .wraperSimpleContent h2 {
        font-size: 22px;
    }
    
    .urlfooter ul {
        flex-direction: column;
        align-items: center;
    }
    
    .urlfooter ul li {
        border-right: none;
        border-bottom: 1px solid #8a8a8a;
        padding: 8px 0;
        width: 100%;
        text-align: center;
    }
    
    .urlfooter ul li:last-child {
        border-bottom: none;
    }
}