body {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    min-height: 100vh;
    font-family: 'Georgia', serif;
    color: #f0f0f0;
}

.navbar {
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: #c4a971 !important;
}

.navbar-brand .logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav-link {
    color: #f0f0f0 !important;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #c4a971 !important;
}

.card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.btn-primary {
    background: transparent;
    border: 2px solid #c4a971;
    color: #c4a971;
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn-primary:hover {
    background: #c4a971;
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(196, 169, 113, 0.3);
}

#hotel-map {
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.linktree-container {
    background: transparent;
    backdrop-filter: none;
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
}

.linktree-link {
    display: block;
    margin: 1rem 0;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #c4a971;
    color: #f0f0f0;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.linktree-link:hover {
    background: #c4a971;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 169, 113, 0.3);
}

.contact-info {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #c4a971;
    color: #1a1a1a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(196, 169, 113, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(196, 169, 113, 0.6);
    color: #000;
}

.tour-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    min-height: 150px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
    text-decoration: none;
    background-color: #333; /* Placeholder color */
}

.tour-item:hover {
    transform: scale(1.03);
    color: white;
}

.tour-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Opaque overlay */
    transition: background-color 0.3s ease;
}

.tour-item:hover .tour-item-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.tour-item-title {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tour-item:hover {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.3);
}

.transport-item {
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.transport-item:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.modal {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1c1c1c;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    color: #f0f0f0;
}

.section-header {
    background: linear-gradient(45deg, #c4a971, #a1885c);
    color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    font-family: 'Georgia', serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.emergency-number {
    font-size: 1.2em;
    font-weight: bold;
    color: #ff8a80;
}

.service-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.service-card:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}



.lang-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    color: #f0f0f0;
    border: 1px solid #c4a971;
    border-radius: 25px;
    padding: 10px 15px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: #c4a971;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.youtube-section {
    background: #c4a971;
    color: #1a1a1a;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.youtube-btn {
    background: #1a1a1a;
    color: #c4a971;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.youtube-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
    background: #000;
}

.small-marker {
    width: 15px !important;
    height: 15px !important;
}

.modal-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f0f0;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-whatsapp-btn {
    background: #25D366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Transportation Section Enhancement */
.transport-title {
    color: #c4a971;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(196, 169, 113, 0.3);
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.transport-item-new {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.transport-item-new:hover {
    transform: translateY(-5px);
    background: rgba(196, 169, 113, 0.1);
    border-color: #c4a971;
}

.transport-item-new h5 {
    font-weight: bold;
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.transport-item-new p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.transport-item-new i {
    color: #c4a971;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.service-card h5 {
    color: #f0f0f0;
}

.transport-name-link {
    text-decoration: none;
    color: #f0f0f0;
    transition: color 0.3s ease;
}

.transport-name-link:hover {
    color: #c4a971;
}

/* City Walk Modal Styles */
.city-walk-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 2000;
}

.city-walk-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.city-walk-video-container iframe {
    width: 100%;
    height: 100%;
}

.city-walk-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.city-walk-close:hover {
    background: #c4a971;
    color: #1a1a1a;
    transform: scale(1.1);
}

.city-walk-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2001;
}

.menu-toggle-btn, .sponsors-toggle-btn, .contact-toggle-btn {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px 20px 0 0;
    cursor: pointer;
    font-weight: bold;
    margin: 0 5px;
    text-decoration: none;
}

.city-walk-menu, .sponsors-menu {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.city-walk-menu.open, .sponsors-menu.open {
    max-height: 200px; /* Adjust as needed */
    padding: 10px;
}

.city-walk-menu .list-group {
    justify-content: center;
}

.city-walk-menu .list-group-item {
    background-color: transparent;
    border: 1px solid #c4a971;
    color: #c4a971;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.city-walk-menu .list-group-item:hover {
    background-color: #c4a971;
    color: #1a1a1a;
}

.city-walk-menu .list-group-item.active {
    background-color: #c4a971;
    color: #1a1a1a;
    font-weight: bold;
    border-color: #fff;
}

.sponsors-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-item {
    margin: 0 15px;
}

.sponsor-item img {
    height: 50px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.sponsor-item:hover img {
    filter: none;
    transform: scale(1.1);
}

.bottom-bar-buttons {
    display: flex;
    justify-content: center;
}
