
/* Password Toggle Styles */
.password-toggle-container {
    display: flex;
    align-items: center;
    margin-top: 8px;
    gap: 8px;
}

.password-toggle-container input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.password-toggle-label {
    font-size: 14px;
    color: white;
    cursor: pointer;
    user-select: none;
}

.password-toggle-label:hover {
    color: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: white;
}

       .hero-section {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: background-image 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
}

/* Fix hero image zoom on iPad Air and iPhone XR */
/* iPad Air - Portrait (820x1180) */
@media only screen 
    and (device-width: 820px) 
    and (device-height: 1180px) 
    and (-webkit-device-pixel-ratio: 2) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* iPad Air - Landscape (1180x820) */
@media only screen 
    and (device-width: 1180px) 
    and (device-height: 820px) 
    and (-webkit-device-pixel-ratio: 2) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* iPhone XR - Portrait (414x896) */
@media only screen 
    and (device-width: 414px) 
    and (device-height: 896px) 
    and (-webkit-device-pixel-ratio: 2) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* iPhone XR - Landscape (896x414) */
@media only screen 
    and (device-width: 896px) 
    and (device-height: 414px) 
    and (-webkit-device-pixel-ratio: 2) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* iPhone 12/13/14/15/16/17 - Portrait (390x844) */
@media only screen 
    and (device-width: 390px) 
    and (device-height: 844px) 
    and (-webkit-device-pixel-ratio: 3) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* iPhone 12/13/14/15/16/17 - Landscape (844x390) */
@media only screen 
    and (device-width: 844px) 
    and (device-height: 390px) 
    and (-webkit-device-pixel-ratio: 3) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* iPhone 12/13/14/15/16/17 Pro Max / Plus - Portrait (428x926) */
@media only screen 
    and (device-width: 428px) 
    and (device-height: 926px) 
    and (-webkit-device-pixel-ratio: 3) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* iPhone 12/13/14/15/16/17 Pro Max / Plus - Landscape (926x428) */
@media only screen 
    and (device-width: 926px) 
    and (device-height: 428px) 
    and (-webkit-device-pixel-ratio: 3) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* iPhone 14/15/16/17 Pro - Portrait (393x852) */
@media only screen 
    and (device-width: 393px) 
    and (device-height: 852px) 
    and (-webkit-device-pixel-ratio: 3) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* iPhone 14/15/16/17 Pro - Landscape (852x393) */
@media only screen 
    and (device-width: 852px) 
    and (device-height: 393px) 
    and (-webkit-device-pixel-ratio: 3) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* iPhone 14/15/16/17 Pro Max - Portrait (430x932) */
@media only screen 
    and (device-width: 430px) 
    and (device-height: 932px) 
    and (-webkit-device-pixel-ratio: 3) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* iPhone 14/15/16/17 Pro Max - Landscape (932x430) */
@media only screen 
    and (device-width: 932px) 
    and (device-height: 430px) 
    and (-webkit-device-pixel-ratio: 3) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* Additional iPad Air support (alternative dimensions 834x1194) */
@media only screen 
    and (device-width: 834px) 
    and (device-height: 1194px) 
    and (-webkit-device-pixel-ratio: 2) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* Additional iPad Air support (landscape 1194x834) */
@media only screen 
    and (device-width: 1194px) 
    and (device-height: 834px) 
    and (-webkit-device-pixel-ratio: 2) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

/* General iPad/iPad Air fallback */
@media only screen 
    and (min-device-width: 768px) 
    and (max-device-width: 1024px) 
    and (-webkit-min-device-pixel-ratio: 2)
    and (orientation: portrait) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

@media only screen 
    and (min-device-width: 768px) 
    and (max-device-width: 1024px) 
    and (-webkit-min-device-pixel-ratio: 2)
    and (orientation: landscape) {
    .hero-section {
        background-size: cover !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        transform: scale(1) !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    transition: background 0.8s ease-in-out;
}

.left-fade-shadow {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 60%;
    background: linear-gradient(to right, rgba(85, 62, 44, 0.7) 0%, rgba(85, 72, 44, 0.3) 40%, transparent 100%);
    z-index: 2;
    transition: background 0.8s ease-in-out;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background: #e6e6e6  !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    font-family: "Slackey", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.logo-img {
    width: 50px; /* Adjust as needed */
    height: 50px;
    margin-right: 0.5rem;
    border-radius:30px;

}



.hamburger {
    display: none;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

    .nav-links {
        display: flex;
        gap: 1.5rem;
        list-style: none;
    }

    .nav-links a {
    display: block; /* makes the anchor fill the li */
    padding: 0.3rem 0.8rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    border-radius: 5px; /* optional for rounded corners */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(30, 173, 230); /* match header.php underline color */
    transition: width 0.4s ease;
}

.nav-links a:hover {
    color: rgb(70, 203, 255); /* match header.php hover text color */
}

.nav-links a:hover::after {
    width: 100%;
}

/* Contact link spacing - desktop only */
@media (min-width: 769px) {
    .contact-link {
        margin-left: 0.5rem;
    }
}

/* Navbar scrolled state - black text */
.navbar.scrolled .logo {
    color: #000000d3;
}

.navbar.scrolled .hamburger {
    color: #000000;
}

.navbar.scrolled .nav-links > li > a {
    color: rgba(0, 0, 0, 0.9);
}

.navbar.scrolled .nav-links > li > a {
    position: relative;
}

.navbar.scrolled .nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(30, 173, 230);
    transition: width 0.4s ease;
}

.navbar.scrolled .nav-links > li > a:hover {
    color: rgb(70, 203, 255);
}

.navbar.scrolled .nav-links > li > a:hover::after {
    width: 100%;
}

.navbar.scrolled .dropdown-arrow {
    color: rgba(0, 0, 0, 0.85);
}

/* Keep dropdown items white even when navbar is scrolled */
.navbar.scrolled .dropdown a {
    color: #fff !important;
}

.navbar.scrolled .dropdown a:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown styles */
.nav-links li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 180px;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    margin-top: 5px;
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown a:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dropdown a:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Custom scrollbar for desktop dropdown */
.dropdown::-webkit-scrollbar {
    width: 8px;
}

.dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Smooth scrolling for desktop dropdown */
.dropdown {
    scroll-behavior: smooth;
}


.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.3rem 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid black;
    color: black;
}

.navbar .btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.navbar .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-solid {
    background: #2563eb;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.search-container {
position: absolute;
top: 20%;
left: 50%;
transform: translateX(-50%);
z-index: 50;
width: 90%;
max-width: 450px;
padding: 1rem;
box-sizing: border-box;
transition: box-shadow 0.3s ease;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

/* Optional: Improve layout for smaller screens */
@media (max-width: 600px) {
    .search-container {
        top: 20%;
        left: 50%;
        width: 95%;
        padding: 0.5rem;
    }
}

.search-box {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    outline: none;
    transition: all 0.3s ease;
}

.search-box:focus {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.search-box::placeholder {
    color: #999;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-results.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-result-item:hover,
.search-result-item.active {
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.search-result-item.active {
    background: rgba(74, 222, 128, 0.1);
    border-left: 3px solid #4ade80;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-icon {
    width: 104px;
    height: 104px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

.search-result-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.search-result-icon.attraction {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.search-result-icon.hotel {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.search-result-icon.food {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 1.3;
}

.search-result-description {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-location {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.search-result-location-text {
    color: inherit;
}

.search-result-position {
    font-size: 10px;
    color: #aaa;
    margin-top: 1px;
    font-style: italic;
}

.search-result-type {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.search-loading {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.search-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top: 2px solid #666;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom scrollbar for search results */
.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 600px;
}

.location-tag {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 1s ease-out 1s forwards;
}

.location-tag::before {
    content: "📍";
    margin-right: 0.5rem;
}

.hero-title {
    font-size: clamp(3em, 7vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Welcome Animation */
.welcome-animation {
    opacity: 0;
    transform: translateY(50px);
    animation: welcomeSlideIn 1.5s ease-out 0.5s forwards;
}

@keyframes welcomeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 0.9;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0);
    }
}

/* Scroll-triggered fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced animation for the main heading */
#fadeInHeading.visible {
    animation: slideInFromBottom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.8);
        filter: blur(5px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.05);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Subtitle animation */
.fade-in-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.fade-in-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    opacity: 0;
    animation: fadeInScrollIndicator 1s ease-out 3s forwards;
    z-index: 20;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    position: relative;
    animation: mouseBounce 2s infinite;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s infinite;
}

@keyframes fadeInScrollIndicator {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes mouseBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes wheelScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Hide mobile scroll text on desktop */
.mobile-scroll-text {
    display: none;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 3rem;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.5s forwards;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 1);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 2s forwards;
}


.explore-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.explore-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.bookmark-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.bookmark-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Mobile Swipe Indicator - Hidden on desktop */
.mobile-swipe-indicator {
    display: none;
}

.carousel-container {
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 50;
    width: 450px;
    max-width: 90vw;
    
}

.carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 1rem 0;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item.active {
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 0 10px rgba(243, 241, 241, 0.8), 0 0 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255,255,255,0.3);
}

.carousel-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
}

.carousel-item-title {
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.carousel-item-location {
    font-size: 0.7rem;
    opacity: 0.8;
}

@media (max-width: 768px), (max-width: 1024px) and (orientation: portrait) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.3rem 5%;
    }

    .navbar.menu-open {
        background: rgba(49, 48, 48, 0.829) !important;
        /* Keep logo white when hamburger menu is open */
        /* This ensures "SOLEYTE Tour" stays white on mobile when the menu is open */
    }

    /* When mobile navbar is both scrolled and menu is open, keep the same dark background */
    .navbar.menu-open.scrolled {
        background: rgba(49, 48, 48, 0.829) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
    }

    /* Mobile navbar scrolled state - keep blur effect like hamburger menu */
    .navbar.scrolled {
        background: rgba(49, 48, 48, 0.829) !important;
        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25) !important;
    }

    .navbar.menu-open .logo {
        color: #ffffff !important;
    }

    /* Keep hamburger icon white when menu is open, even if navbar is scrolled */
    .navbar.menu-open .hamburger {
        color: #ffffff !important;
    }

    /* Keep logo and hamburger white when scrolled on mobile */
    .navbar.scrolled .logo {
        color: #ffffff !important;
    }

    .navbar.scrolled .hamburger {
        color: #ffffff !important;
    }

    .hamburger {
        display: block;
        position: fixed; /* keep at top right when menu opens */
        top: 10px;
        right: 5%;
        z-index: 300; /* above nav menu */
    }

    .nav-menu {
        width: 100%;
        display: none;
        flex-direction: column;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        display: flex;
    }

    /* Mobile menu text styling - Main navigation items (hamburger menu) */
    .nav-menu.active .nav-links > li > a {
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: normal !important;
        font-size: 19px; /* bigger text for top-level items */
        padding: 12px 18px; /* bigger tap area */
    }
    
    /* Mobile menu hover state */
    .nav-menu.active .nav-links > li > a {
        position: relative;
    }
    
    .nav-menu.active .nav-links > li > a::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #87CEEB;
        transition: width 0.4s ease;
    }
    
    .nav-menu.active .nav-links > li > a:hover::after {
        width: 100%;
    }
    
    /* Mobile dropdown text styling - Dropdown items should be white */
    .nav-menu.active .nav-links .dropdown a {
        color: white !important;
        font-weight: normal !important;
    }

    /* When hamburger menu is open on mobile, keep text/arrow white even when scrolled */
    .navbar.scrolled .nav-menu.active .nav-links > li > a {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    .navbar.scrolled .nav-menu.active .dropdown-arrow {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    /* Mobile dropdown adjustments */
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.8);
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-links li.dropdown-active .dropdown {
        max-height: 300px;
        padding: 8px 0;
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* Custom scrollbar for mobile dropdown */
    .nav-links li.dropdown-active .dropdown::-webkit-scrollbar {
        width: 6px;
    }

    .nav-links li.dropdown-active .dropdown::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .nav-links li.dropdown-active .dropdown::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

    .nav-links li.dropdown-active .dropdown::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .dropdown a {
        padding: 12px 20px; /* bigger tap area in dropdown */
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px; /* larger dropdown text on mobile */
        color: white !important;
        font-weight: normal !important;
    }

    .carousel-container {
        left: 2%;
        right: 2%;
        transform: none;
        width: auto;
        max-width: none;
        overflow: visible;
    }

    .carousel {
        gap: 1rem;
        padding: 1rem 0;
    }

    .carousel-item {
        flex: 0 0 calc((100% - 3rem) / 3.5);
        width: 160px;
        min-width: 160px;
        max-width: 160px;
        height: 100px;
    }

    .dropdown a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Smooth scrolling for mobile dropdown */
    .nav-links li.dropdown-active .dropdown {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Add some padding at the bottom for better scrolling experience */
    .nav-links li.dropdown-active .dropdown a:last-child {
        margin-bottom: 5px;
    }

    /* Mobile dropdown toggle indicator - Now handled with span.dropdown-arrow in HTML */

    .auth-buttons {
        display: none;
    }

    .hero-content {
        padding: 0 2rem;
    }

    .carousel-container {
        bottom: 0%;
        left: 2%;
        right: 2%;
        width: auto;
        overflow: visible;
    }
    
    /* Mobile Swipe Indicator - Show on mobile */
    .mobile-swipe-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        position: absolute;
        bottom: 0%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 51;
        color: white;
        padding-bottom: 0.5rem;
    }
    
    .swipe-text {
        font-size: 0.9rem;
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 1;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .swipe-arrow {
        font-size: 1.2rem;
        opacity: 1;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        animation: bounceArrow 2s infinite;
    }
    
    @keyframes bounceArrow {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(5px);
        }
    }
    
    /* Hide Explore button on mobile */
    .explore-btn {
        display: none !important;
    }
    
    /* Mobile layout: position scroll indicator beside bookmark button */
    .hero-actions {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
    }
    
    /* Show scroll indicator inside hero-actions on mobile */
    .hero-actions .scroll-indicator {
        display: flex;
        position: static;
        transform: none;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        opacity: 1;
        animation: none;
        margin-left: auto;
    }
    
    /* Hide the original scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }
    
    .scroll-text {
        font-size: 0.7rem;
        margin: 0;
    }
    
    .mouse-icon {
        width: 20px;
        height: 30px;
    }
    
    .mouse-wheel {
        width: 3px;
        height: 6px;
        top: 6px;
    }
    
    /* Mobile Scroll Text */
    .mobile-scroll-text {
        display: block;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        opacity: 0;
        animation: fadeInMobileScroll 1s ease-out 2s forwards;
    }

    /* Reduce hero title size on mobile */
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 3%;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-links a {
        font-size: 18px; /* increase size further on small phones */
        padding: 14px 20px; /* comfortable tap target */
    }

    .dropdown a {
        font-size: 16px;
        padding: 12px 18px;
    }

    .carousel-container {
        left: 2%;
        right: 2%;
        width: auto;
        max-width: none;
        overflow: visible;
    }

    .carousel {
        gap: 0.75rem;
        padding: 0.75rem 0;
    }

    .carousel-item {
        flex: 0 0 calc((100% - 2.25rem) / 3.5);
        width: 140px;
        min-width: 140px;
        max-width: 140px;
        height: 92px;
    }
    
    .mobile-scroll-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        padding: 12px 20px;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    /* Mobile search adjustments */
    .search-container {
        max-width: 90%;
        top: 15%;
    }

    .search-results {
        max-height: 300px;
        border-radius: 12px;
    }

    .search-result-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .search-result-icon {
        width: 104px;
        height: 104px;
        border-radius: 16px;
    }

    .search-result-icon.attraction,
    .search-result-icon.hotel,
    .search-result-icon.food {
        width: 104px;
        height: 104px;
    }

    .search-result-title {
        font-size: 13px;
    }

    .search-result-description {
        font-size: 11px;
    }

    .search-result-location {
        font-size: 10px;
    }

    .search-result-position {
        font-size: 9px;
    }

    .search-result-type {
        font-size: 9px;
        padding: 1px 4px;
    }
    
    .mobile-scroll-arrow {
        font-size: 1.5rem;
        color: white;
        animation: bounceArrow 2s infinite;
    }
    
    .mobile-scroll-label {
        font-size: 0.8rem;
        color: white;
        font-weight: 300;
        letter-spacing: 1px;
        text-transform: uppercase;
        opacity: 0.9;
    }
    
    @keyframes fadeInMobileScroll {
        0% {
            opacity: 0;
            transform: translateX(-50%) translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }
    
    @keyframes bounceArrow {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-8px);
        }
        60% {
            transform: translateY(-4px);
        }
    }
}

/*  -----------------SECOND PAGE */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 20px);
}

.container {
    background: rgba(163, 155, 155, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 3px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.container:hover {
    transform: scale(1.02);
    background: rgba(56, 52, 52, 0.15);
}

.slideshow-wrapper {
    flex: 1;
    position: relative;
    height: 100%;
    min-height: 150px;
    border-radius: 5px;
    overflow: hidden;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.description {
    flex: 1;
    color: black;
    padding: 10px;
}

.description h3 {
    font-size: clamp(1rem, 2.5vw, 1.2em);
    margin-bottom: 10px;
    color: #000000ff;
}

.description p {
    font-size: clamp(0.8rem, 2vw, 0.9em);
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.8);
}

.see-more {
    color: #87ceeb;
    font-weight: bold;
    margin-left: 5px;
}

.nav-buttons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-dot.active {
    background: white;
}

/* Zoom Modal Styles */
.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.zoom-content {
    background-color: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    max-width: 95vw;
    max-height: 95vh;
    width: 80%;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    overflow-y: auto;
}

.zoom-slideshow {
    flex: 2;
    position: relative;
    height: 50vh;
    min-height: 700px;
    border-radius: 15px;
    overflow: hidden;
}

.zoom-description {
    flex: 1;
    color: #666;
    padding: 20px;
    min-width: 250px;
    font-family: 'Montserrat', sans-serif !important;
}

.zoom-description * {
    font-family: 'Montserrat', sans-serif !important;
}

.zoom-description h3 {
    font-size: clamp(1.5rem, 4vw, 2em);
    margin-bottom: 20px;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif !important;
}

.zoom-description p {
    font-size: clamp(1rem, 2.5vw, 1.1em);
    line-height: 1.4;
    color: #666;
    font-family: 'Montserrat', sans-serif !important;
    white-space: pre-wrap; /* Preserve whitespace and line breaks */
    max-height: 300px; /* Limit height for scrolling */
    overflow-y: auto; /* Enable vertical scrolling */
    padding-right: 10px; /* Add padding for scrollbar */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-btn:hover {
    color: #ff6b6b;
}

.arrow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5em;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.arrow-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.arrow-prev {
    left: 10px;
}

.arrow-next {
    right: 10px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 12px;
    }

    .container {
        padding: 12px;
        gap: 12px;
    }

    .zoom-content {
        padding: 15px;
        gap: 15px;
    }

    .zoom-slideshow {
        height: 45vh;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    body {
        padding: 5px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 10px;
        min-height: auto;
    }
    
    .container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        min-height: 300px;
    }

    .slideshow-wrapper {
        width: 100%;
        height: 200px;
        min-height: 200px;
    }

    .description {
        width: 100%;
        padding: 10px 0;
    }

    .zoom-content {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
        max-height: 90vh;
    }

    .zoom-slideshow {
        width: 100%;
        height: 40vh;
        min-height: 250px;
    }

    .zoom-description {
        width: 100%;
        min-width: auto;
        padding: 15px 0;
    }

    .arrow-nav {
        font-size: 1.2em;
        padding: 8px 12px;
    }

    .close-btn {
        font-size: 1.8em;
        top: 5px;
        right: 10px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        min-height: 20px;
        padding: 12px;
    }

    .slideshow-wrapper {
        height: 180px;
        min-height: 280px;
    }

    .description h3 {
        margin-bottom: 8px;
    }

    .zoom-content {
        padding: 12px;
        gap: 12px;
    }

    .zoom-slideshow {
        height: 35vh;
        min-height: 300px;
    }

    .zoom-description {
        padding: 12px 0;
    }

    .zoom-description h3 {
        margin-bottom: 15px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .arrow-nav {
        font-size: 1em;
        padding: 6px 10px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .gallery-grid {
        gap: 20px;
    }

    .container {
        padding: 20px;
        gap: 20px;
    }

    .slideshow-wrapper {
        min-height: 200px;
    }

    .zoom-content {
        padding: 30px;
        gap: 30px;
    }

    .zoom-slideshow {
        height: 60vh;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .container {
        flex-direction: row;
        min-height: 200px;
    }

    .slideshow-wrapper {
        height: 100%;
        width: auto;
    }

    .zoom-content {
        flex-direction: row;
    }

    .zoom-slideshow {
        height: 60vh;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .container:hover {
        transform: none;
    }

    .container:active {
        transform: scale(0.98);
    }

    .nav-dot {
        width: 12px;
        height: 12px;
    }

    .arrow-nav {
        padding: 12px 16px;
    }
}

/* Edit Modal Styles */
.edit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.edit-content {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: 600px;
    padding: 30px;
    overflow-y: auto;
    position: relative;
}

.edit-content h2 {
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.image-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.image-item {
    position: relative;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.image-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.image-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-item .remove-btn:hover {
    background: rgba(255, 0, 0, 1);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn {
    padding: 0.3rem 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-solid {
    background: #2563eb;
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid black;
    color: black;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.admin-login-btn {
    background: linear-gradient(135deg, 
        #4ade80 0%, 
        #10b981 25%, 
        #059669 50%, 
        #10b981 75%, 
        #4ade80 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    margin-top: 15px;
    animation: fadeInUp 0.6s ease-out 0.8s both;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.2),
                0 0 20px rgba(74, 222, 128, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.admin-login-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s;
}

.admin-login-btn:hover::before {
    left: 100%;
}

.admin-login-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.5),
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                0 0 30px rgba(74, 222, 128, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.admin-login-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
}

/* Admin Login Modal Styles */
.admin-login-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.98) 0%,
        rgba(30, 41, 59, 0.95) 100%);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4),
                inset 0 0 80px rgba(74, 222, 128, 0.05);
    z-index: 1000;
    overflow-y: auto;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.35s ease;
    backdrop-filter: blur(20px);
    border-left: 4px solid rgba(182, 194, 187, 0.6);
    pointer-events: none;
    will-change: transform, opacity;
}

.admin-login-modal.show {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
}

/* Make the admin login modal fully responsive on mobile */
@media (max-width: 768px) {
    .admin-login-modal {
        width: 100%;
        max-width: 100vw;
    }

    .admin-login-container {
        margin: 12px;
        padding: 20px;
    }

    .admin-login-form {
        max-width: 100%;
        width: 100%;
    }

    .captcha-container {
        flex-wrap: wrap;
    }

    .captcha-display {
        min-width: 0;
        flex: 1 1 auto;
    }
}

@media (max-width: 480px) {
    .admin-login-modal {
        width: 100%;
    }

    .admin-login-container {
        padding: 30px 20px;
    }

    .admin-login-logo {
        width: clamp(110px, 32vw, 160px);
        height: clamp(110px, 32vw, 160px);
        margin-bottom: 15px;
    }

    .admin-login-header {
        padding: 20px;
        margin-bottom: 25px;
    }

    .admin-login-header h2 {
        font-size: 24px;
    }

    .close-admin-modal {
        top: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .admin-form-group input {
        padding: 14px 18px;
        font-size: 16px;
    }

    .admin-login-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
}

.admin-login-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.admin-login-backdrop.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.admin-login-container {
    padding: 20px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    background: transparent;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.admin-login-container::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-top: 2px solid rgba(74, 222, 128, 0.3);
    border-right: 2px solid rgba(74, 222, 128, 0.3);
    border-radius: 0 8px 0 0;
}

.admin-login-container::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid rgba(74, 222, 128, 0.3);
    border-left: 2px solid rgba(74, 222, 128, 0.3);
    border-radius: 0 0 0 8px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-login-logo {
    width: clamp(120px, 14vw, 180px);
    height: clamp(120px, 14vw, 180px);
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
    border-radius: 50%;
    object-fit: contain;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    padding: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(74, 222, 128, 0.2),
                inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(74, 222, 128, 0.3);
    transition: all 0.3s ease;
}

.admin-login-logo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(74, 222, 128, 0.4);
    border-color: rgba(74, 222, 128, 0.5);
}

.admin-login-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    animation: slideInDown 0.5s ease-out 0.3s both;
    width: calc(100% + 90px);
    padding: 15px 30px;
    margin-left: -45px;
    margin-right: -45px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
    border-radius: 0;
    backdrop-filter: blur(25px);
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2),
                0 4px 15px rgba(0, 0, 0, 0.15);
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-login-header h2 {
    margin: 0;
    color: white;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Segoe UI', 'Roboto', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2),
                 0 0 20px rgba(74, 222, 128, 0.3);
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(74, 222, 128, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-admin-modal {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: none;
    box-shadow: none;
    font-weight: bold;
    z-index: 1001;
}

.close-admin-modal:hover {
    background: transparent;
    transform: scale(1.15) translateX(-3px);
    box-shadow: none;
    border: none;
    opacity: 0.8;
}

.close-admin-modal:active {
    transform: scale(1.05) translateX(-3px);
    opacity: 0.6;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.admin-form-group {
    margin-bottom: 15px;
    animation: fadeInUp 0.5s ease-out both;
    position: relative;
}

.admin-form-group:nth-child(1) { animation-delay: 0.4s; }
.admin-form-group:nth-child(2) { animation-delay: 0.5s; }
.admin-form-group:nth-child(3) { animation-delay: 0.6s; }

.admin-form-group label {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.admin-form-group input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
                inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.admin-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-weight: 400;
}

.admin-form-group input:focus {
    outline: none;
    border-color: rgba(74, 222, 128, 0.8);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2),
                0 8px 25px rgba(0, 0, 0, 0.2),
                inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.admin-form-group input:hover:not(:focus) {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.admin-error-message {
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.25) 0%, 
        rgba(220, 38, 38, 0.2) 100%);
    color: #fee2e2;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 2px solid rgba(220, 38, 38, 0.4);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* CAPTCHA Styles */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.captcha-display {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 10px 16px;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 6px;
    color: white;
    border-radius: 14px;
    min-width: 160px;
    text-align: center;
    user-select: none;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
                inset 0 2px 4px rgba(255, 255, 255, 0.1),
                0 0 15px rgba(74, 222, 128, 0.2);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.captcha-refresh {
    background: linear-gradient(135deg, 
        rgba(74, 222, 128, 0.4) 0%, 
        rgba(34, 197, 94, 0.3) 100%);
    color: white;
    border: 2px solid rgba(74, 222, 128, 0.6);
    padding: 10px 14px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.2),
                inset 0 2px 4px rgba(255, 255, 255, 0.1);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-refresh:hover {
    background: linear-gradient(135deg, 
        rgba(74, 222, 128, 0.6) 0%, 
        rgba(34, 197, 94, 0.5) 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.2);
    border-color: rgba(74, 222, 128, 0.8);
}

.captcha-refresh-icon {
    font-size: 20px;
    line-height: 1;
}

#newImage {
    margin-bottom: 10px;
}

.upload-btn {
    background: #4ecdc4;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    margin-bottom: 15px;
}

.upload-btn:hover {
    background: #45b7aa;
}

/* Notification animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* SECOND PAGE */

        .slideshow-container {
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
   
}

.slideshow-header {
    
    color:rgba(19, 17, 16, 0.9);
    padding: 20px;
    text-align: center;
    font-family: Candara, Calibri, Segoe, 'Segoe UI', Optima, Arial, sans-serif;
}

.slideshow-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slideshow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
    min-height: auto;
}

.slide-item {
    display: flex;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(133, 131, 131, 0.3);
    min-height: 200px;
    margin-bottom: 20px;
}

.slide-item:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.image-section {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.slideshow-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.slide-item:hover .slideshow-dots {
    opacity: 1;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.8);
}

.dot.active {
    background: rgba(255,255,255,1);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

.slide-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slide-item:hover .slide-image {
    transform: scale(1.1);
}

.description-section {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.description-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.description-text {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.description-text.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.see-more-btn {
    background: white;
    color: black;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 10px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.63);
}

.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    overflow: hidden;
    touch-action: none;
}

.zoom-content {
    background-color: #ffffff;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 45px rgba(255,255,255,0.45);
    animation: zoomIn 0.3s ease;
    position: relative;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}






.zoom-image {
    flex: 1;
    max-width: 50%;
    position: relative;
}

.zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zoom-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.zoom-nav-button:hover {
    background: rgba(0,0,0,1);
    transform: translateY(-50%) scale(1.1);
}

.zoom-prev-btn {
    left: 15px;
}

.zoom-next-btn {
    right: 15px;
}

.zoom-image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.zoom-description {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    max-height: 90vh;
    color: #666;
    font-family: 'Montserrat', sans-serif !important;
}

.zoom-description * {
    font-family: 'Montserrat', sans-serif !important;
}

.zoom-title {
    font-size: 2rem;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif !important;
}

.zoom-text {
    color: #666;
    line-height: 1.4;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif !important;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-weight: bold;
    line-height: 1;
}

.close-btn:hover {
    background: rgba(255,107,107,0.9);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .slideshow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .slideshow-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .slide-item {
        flex-direction: column;
    }

    .image-section {
        height: 50%;
        max-height: 150px;
    }

    .description-section {
        height: 40%;
        padding: 15px;
    }

    .zoom-content {
        flex-direction: column;
        max-width: 95vw;
        max-height: 95vh;
    }

    .zoom-image {
        max-width: 100%;
        max-height: 50%;
    }

    .zoom-description {
        padding: 20px;
    }

    .slideshow-header h1 {
        font-size: 2rem;
    }

    .nav-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .slideshow-header {
        padding: 15px;
    }

    .slideshow-header h1 {
        font-size: 1.5rem;
    }

    .slideshow-grid {
        gap: 10px;
        padding: 10px;
    }

    .description-section {
        padding: 10px;
    }

    .zoom-description {
        padding: 15px;
    }

    .zoom-title {
        font-size: 1.5rem;
        font-family: 'Montserrat', sans-serif !important;
    }

    .nav-button {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* ----END SECOND PAGE */

                                        /* Brochure */

                                        .slideshow-container3 {
position: relative;
width: 100%;
max-width: 1800px;
height: 200px;
perspective: 1200px;
background: #8B4513;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
padding: 10px;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
transform: perspective(1200px) rotateY(-15deg) scale(0.8);
transition: all 1s ease-out;
}

.slideshow-container3.animate {
opacity: 1;
transform: perspective(1200px) rotateY(0deg) scale(1);
}

.book3 {
position: relative;
width: 100%;
height: 100%;
transform-style: preserve-3d;
border-radius: 15px;
overflow: hidden;
}

.page3 {
position: absolute;
width: 100%;
height: 100%;
background: white;
border-radius: 15px;
backface-visibility: hidden;
transform-origin: left center;
transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
box-shadow: 0 5px 20px rgba(0,0,0,0.2);
border: 3px solid #f0f0f0;
opacity: 0;
visibility: hidden;
}

.page3.active3 {
opacity: 1;
visibility: visible;
z-index: 2;
}

.page3 img {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 12px;
display: block;
max-width: 100%;
max-height: 100%;
background: #f8f8f8;
}

.page3.flip-next3 {
animation: flipNext3 0.8s ease-in-out;
}

.page3.flip-prev3 {
animation: flipPrev3 0.8s ease-in-out;
}

@keyframes flipNext3 {
0% { transform: rotateY(0deg); }
50% { transform: rotateY(-90deg); }
100% { transform: rotateY(-180deg); }
}

@keyframes flipPrev3 {
0% { transform: rotateY(-180deg); }
50% { transform: rotateY(-90deg); }
100% { transform: rotateY(0deg); }
}

.page3::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
z-index: 1;
border-radius: 12px;
opacity: 0;
transition: opacity 0.3s ease;
}

.page3.flipping3::before {
opacity: 1;
}

.nav-button3 {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255,255,255,0.9);
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
font-size: 20px;
font-weight: bold;
color: #333;
transition: all 0.3s ease;
z-index: 100;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.nav-button3:hover {
background: white;
transform: translateY(-50%) scale(1.1);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.prev-btn3 {
left: -25px;
}

.next-btn3 {
right: -25px;
}

.page-counter3 {
position: absolute;
bottom: -50px;
left: 50%;
transform: translateX(-50%);
background: rgba(255,255,255,0.9);
padding: 10px 20px;
border-radius: 25px;
font-weight: bold;
color: #333;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-indicators3 {
position: absolute;
bottom: -100px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 8px;
flex-wrap: wrap;
justify-content: center;
}

.indicator3 {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255,255,255,0.5);
cursor: pointer;
transition: all 0.3s ease;
}

.indicator3.active3 {
background: white;
transform: scale(1.2);
}

.indicator3:hover {
background: rgba(255,255,255,0.8);
transform: scale(1.1);
}

/* Large screens */
@media (min-width: 1200px) {
.slideshow-container3 {
max-width: 1700px;
height: 600px;
padding: 20px;
}

.nav-button3 {
width: 60px;
height: 60px;
font-size: 24px;
}

.prev-btn3 { left: -30px; }
.next-btn3 { right: -30px; }
}

/* Medium screens */
@media (max-width: 1199px) and (min-width: 769px) {
.slideshow-container3 {
max-width: 95%;
height: 500px;
padding: 18px;
}

.nav-button3 {
width: 50px;
height: 50px;
font-size: 20px;
}

.prev-btn3 { left: -25px; }
.next-btn3 { right: -25px; }
}

/* Small tablets */
@media (max-width: 768px) {
.slideshow-container3 {
max-width: 95%;
padding: 8px;
height: 200px;
}

.nav-button3 {
width: 45px;
height: 45px;
font-size: 18px;
}

.prev-btn3 { left: -22px; }
.next-btn3 { right: -22px; }

.page-counter3 {
bottom: -45px;
padding: 8px 16px;
font-size: 14px;
}

.page-indicators3 {
bottom: -90px;
}

.page3 img {
object-fit: contain;
border-radius: 10px;
background: #f8f8f8;
}
}

/* Mobile phones */
@media (max-width: 480px) {
body {
padding: 10px;
}

.slideshow-container3 {
max-width: 100%;
height: 180px;
padding: 5px;
border-radius: 15px;
}

.nav-button3 {
width: 40px;
height: 40px;
font-size: 16px;
}

.prev-btn3 { left: -20px; }
.next-btn3 { right: -20px; }

.page-counter3 {
bottom: -40px;
padding: 6px 12px;
font-size: 12px;
border-radius: 20px;
}

.page-indicators3 {
bottom: -75px;
gap: 6px;
}

.indicator3 {
width: 10px;
height: 10px;
}

.book3 {
border-radius: 10px;
}

.page3 {
border-radius: 10px;
}

.page3 img {
border-radius: 8px;
object-fit: contain;
width: 100%;
height: 100%;
background: #f8f8f8;
}
}

/* Extra small mobile */
@media (max-width: 360px) {
.slideshow-container3 {
height: 160px;
padding: 4px;
}

.nav-button3 {
width: 35px;
height: 35px;
font-size: 14px;
}

.prev-btn3 { left: -17px; }
.next-btn3 { right: -17px; }

.page-counter3 {
bottom: -35px;
padding: 5px 10px;
font-size: 11px;
}

.page-indicators3 {
bottom: -65px;
gap: 5px;
}

.indicator3 {
width: 8px;
height: 8px;
}

.page3 img {
object-fit: contain;
border-radius: 8px;
background: #f8f8f8;
}
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
body {
padding: 10px;
}

.slideshow-container3 {
height: 140px;
max-width: 80%;
}

.page-counter3 {
bottom: -30px;
padding: 5px 15px;
}

.page-indicators3 {
bottom: -60px;
}

.page3 img {
object-fit: contain;
border-radius: 10px;
background: #f8f8f8;
}
}

/* Remove old keyframes animation - now using CSS transitions */

/* Responsive styling for Brochure Travel Guide heading */
#brochureTitle {
font-size: 2.5rem;
margin-bottom: 30px;
padding: 10px 20px;
}

/* Large screens */
@media (min-width: 1200px) {
#brochureTitle {
    font-size: 3rem;
    margin-bottom: 40px;
    padding: 15px 30px;
}
}

/* Medium screens */
@media (max-width: 1199px) and (min-width: 769px) {
#brochureTitle {
    font-size: 2.2rem;
    margin-bottom: 25px;
    padding: 12px 25px;
}
}

/* Small tablets */
@media (max-width: 768px) {
#brochureTitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding: 8px 15px;
}
}

/* Mobile devices */
@media (max-width: 480px) {
#brochureTitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding: 6px 12px;
}
}

/* Extra small mobile */
@media (max-width: 360px) {
#brochureTitle {
    font-size: 1.3rem;
    margin-bottom: 12px;
    padding: 5px 10px;
}
}

/* Footer Styles */
.footer {
background: #ffffff;
color: #666666;
padding: 60px 0 20px;
margin-top: 60px;
position: relative;
overflow: hidden;
box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
padding: 0 5%;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
}

.footer-section {
display: flex;
flex-direction: column;
}

.footer-logo {
display: flex;
align-items: center;
margin-bottom: 20px;
}

.footer-logo-img {
width: 50px;
height: 50px;
border-radius: 25px;
border: 2px solid rgba(0, 0, 0, 0.1);
margin-right: 15px;
}

.footer-logo h3 {
font-size: 1.5rem;
font-weight: bold;
color: #000000;
margin: 0;
}

.footer-description {
line-height: 1.6;
margin-bottom: 25px;
color: #666666;
font-size: 0.95rem;
}

.social-links {
display: flex;
flex-wrap: wrap;
gap: 15px;
}

.social-link {
color: #000000;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: #f0f0f0;
border: 1px solid #d0d0d0;
transition: all 0.3s ease;
font-size: 1.2rem;
font-weight: bold;
}

.social-link:hover {
background: #e0e0e0;
border-color: #b0b0b0;
transform: translateY(-2px);
}

.social-link.facebook::before {
content: 'f';
font-family: Arial, sans-serif;
font-weight: bold;
}

.social-link.instagram {
position: relative;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
background-size: 24px 24px;
background-position: center;
background-repeat: no-repeat;
}

.social-link.instagram::before,
.social-link.instagram::after {
display: none;
}

.footer-section h4 {
color: #000000;
font-size: 1.2rem;
margin-bottom: 20px;
font-weight: bold;
position: relative;
}

.footer-section h4::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 30px;
height: 2px;
background: #666666;
border-radius: 1px;
}

.footer-links {
list-style: none;
padding: 0;
margin: 0;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: #666666;
text-decoration: none;
transition: all 0.3s ease;
font-size: 0.95rem;
position: relative;
padding-left: 15px;
}

.footer-links a::before {
content: '→';
position: absolute;
left: 0;
color: #666666;
transition: transform 0.3s ease;
}

.footer-links a:hover {
color: #000000;
transform: translateX(5px);
}

.footer-links a:hover::before {
transform: translateX(3px);
}

.contact-info p {
margin-bottom: 12px;
color: #666666;
font-size: 0.95rem;
display: flex;
align-items: center;
}

.contact-info p:first-child {
color: #000000;
font-weight: bold;
font-size: 1rem;
}

.contact-info p a[href^="tel:"] {
color: #666666 !important;
text-decoration: none;
}

.contact-info p a[href^="tel:"]:visited {
color: #666666 !important;
}

.contact-info p a[href^="tel:"]:active {
color: #666666 !important;
}

.footer-bottom {
border-top: 1px solid rgba(0, 0, 0, 0.1);
margin-top: 40px;
padding-top: 20px;
}

.footer-bottom-content {
max-width: 1400px;
margin: 0 auto;
padding: 0 5%;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 20px;
text-align: center;
}

.footer-bottom p {
color: #666666;
margin: 0;
font-size: 0.9rem;
}

.footer-bottom-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-bottom-links a {
color: #666666;
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
color: #000000;
}

/* Responsive Footer */
@media (max-width: 768px) {
.footer {
    padding: 40px 0 20px;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
}

.footer-bottom-content {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
}

.social-links {
    justify-content: center;
}

.footer-logo {
    justify-content: center;
}
}

@media (max-width: 480px) {
.footer {
    padding: 30px 0 15px;
}

.footer-content {
    padding: 0 15px;
}

.footer-bottom-content {
    padding: 0 15px;
}

.social-links {
    gap: 10px;
}

.social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}
}
                              

