body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.logo {
    font-size: 1.5em;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
nav a {
    text-decoration: none;
    color: #333;
}
.cart {
    background: #eee;
    padding: 8px 16px;
    border-radius: 20px;
}
.hero {
    position: relative;
    background: url('../image/1.jpg') center center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    z-index: 2;
}
.hero h1 {
    font-size: 3em;
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Typewriter Animation Styles */
.typewriter {
    position: relative;
    overflow: hidden;
}

.typewriter-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: typewriter-fade-in 0.8s ease-out forwards;
}

.typewriter-text:nth-child(1) {
    animation-delay: 0.5s;
}

.typewriter-text:nth-child(3) {
    animation-delay: 1.5s;
}

.typewriter-cursor {
    display: inline-block;
    font-weight: bold;
    color: #fff;
    animation: cursor-blink 1s infinite;
    margin-left: 2px;
    opacity: 0;
    animation-delay: 2.3s;
    animation-fill-mode: forwards;
}

@keyframes typewriter-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cursor-blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Enhanced typewriter effect with character-by-character animation */
.typewriter-text {
    position: relative;
}

.typewriter-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: typewriter-sweep 2s ease-out forwards;
}

.typewriter-text:nth-child(1)::after {
    animation-delay: 0.5s;
}

.typewriter-text:nth-child(3)::after {
    animation-delay: 1.5s;
}

@keyframes typewriter-sweep {
    0% {
        width: 0;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}

/* Additional creative effects */
.typewriter-text {
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    transition: text-shadow 0.3s ease;
}

.typewriter-text:hover {
    text-shadow: 0 0 20px rgba(255,255,255,0.6);
}

/* Responsive adjustments for typewriter */
@media (max-width: 768px) {
    .typewriter-text {
        font-size: 0.9em;
    }
    
    .typewriter-cursor {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .typewriter-text {
        font-size: 0.8em;
    }
    
    .typewriter-cursor {
        font-size: 0.8em;
    }
}
.hero-subtitle {
    font-size: 1.2em;
    background: rgba(0,0,0,0.3);
    padding: 10px 24px;
    border-radius: 6px;
    display: inline-block;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: 500;
}

/* Creative Subtitle Animation Styles */
.subtitle-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px) rotateX(90deg);
    animation: subtitle-fade-in 0.8s ease-out forwards;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.subtitle-word:nth-child(1) { animation-delay: 2.8s; }
.subtitle-word:nth-child(2) { animation-delay: 3.0s; }
.subtitle-word:nth-child(3) { animation-delay: 3.2s; }
.subtitle-word:nth-child(4) { animation-delay: 3.4s; }
.subtitle-word:nth-child(5) { animation-delay: 3.6s; }
.subtitle-word:nth-child(6) { animation-delay: 3.8s; }
.subtitle-word:nth-child(7) { animation-delay: 4.0s; }

.subtitle-word:hover {
    transform: translateY(-3px) scale(1.1);
    text-shadow: 0 0 15px rgba(255,255,255,0.8);
    color: #ffd700;
}

.subtitle-sparkle {
    display: inline-block;
    opacity: 0;
    animation: sparkle-fade-in 0.6s ease-out forwards;
    animation-delay: 4.5s;
    margin-left: 8px;
    font-size: 1.1em;
}

@keyframes subtitle-fade-in {
    0% {
        opacity: 0;
        transform: translateY(15px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes sparkle-fade-in {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(360deg);
    }
}

/* Enhanced subtitle effects */
.subtitle-word {
    position: relative;
    overflow: hidden;
}

.subtitle-word::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.subtitle-word:hover::before {
    left: 100%;
}
.categories, .featured-products {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.category-list, .product-list {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.category-item, .product-item {
    background: #fff;
    padding: 30px;
    flex: 1;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 30px 0 10px 0;
    margin-top: 40px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
} 

/* --- Custom Header Additions --- */
.gradient-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 3em;
    padding-left: 8px;
    font-weight: bold;
    background: linear-gradient(90deg, #4a90e2, #e94e77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

nav ul {
    gap: 32px;
}

nav ul li {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 4px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 6px;
    min-width: 140px;
    z-index: 10;
    padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-size: 1.2em;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    transition: background 0.2s, color 0.2s;
}
.social-icon.facebook::before {
    content: '\f09a'; /* FontAwesome Facebook */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.social-icon.instagram::before {
    content: '\f16d'; /* FontAwesome Instagram */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.social-icon:hover {
    background: #4a90e2;
    color: #fff;
}

.book-now-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #222;
    border: none;
    border-radius: 22px;
    padding: 8px 24px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    transition: background 0.2s, color 0.2s;
}
.book-now-btn:hover {
    background: #4a90e2;
    color: #fff;
}
.book-icon {
    font-size: 1.1em;
} 

/* --- Center Font Awesome icon in social-icon circle --- */
.social-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.2em;
    line-height: 1;
} 

/* --- Remove background and shadow from social icons --- */
.social-icon {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: auto;
    height: auto;
    padding: 0;
} 

/* --- Make header always visible and sticky at the top --- */
header {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 1000;
} 

/* --- Social icon hover color matches Book Now button --- */
.social-icon:hover {
    color: #4a90e2 !important;
    background: none !important;
} 

/* --- About Section Creative Styles --- */
.about {
    padding: 60px 20px;
    background: #f9f9f9;
}
.about-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}
.about-image {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 420px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}
.about-content {
    flex: 2 1 400px;
    min-width: 260px;
}
.about-content h2 {
    font-size: 2.2em;
    margin-bottom: 18px;
    color: #4a90e2;
    font-family: 'Brush Script MT', cursive, sans-serif;
}
.about-content p {
    font-size: 1.15em;
    margin-bottom: 22px;
    color: #333;
}
.about-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-highlights li {
    font-size: 1.08em;
    margin-bottom: 12px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 28px;
    }
    .about-image, .about-content {
        max-width: 100%;
    }
} 

/* --- Villa Amenities Section Creative Styles --- */
.villa-amenities {
    background: #232323 url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    background-blend-mode: multiply;
    padding: 70px 0 60px 0;
    color: #fff;
}
.villa-amenities-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 48px;
    flex-wrap: wrap;
    background: rgba(30,30,30,0.85);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    padding: 36px 32px;
}
.villa-amenities-image {
    flex: 1 1 340px;
    min-width: 260px;
    max-width: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    background: #222;
}
.villa-amenities-image img {
    width: 200%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}
.villa-amenities-content {
    flex: 2 1 500px;
    min-width: 320px;
}
.villa-amenities-title {
    font-family: 'Georgia', serif;
    font-size: 2.3em;
    margin-bottom: 28px;
    letter-spacing: 2px;
    text-align: left;
    color: #fff;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}
.amenity-card {
    background: #393939;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s;
}
.amenity-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.amenity-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}
.amenity-label {
    padding: 12px 16px 10px 16px;
    font-size: 1.08em;
    font-weight: 500;
    color: #fff;
}
.amenity-desc {
    display: block;
    font-size: 0.92em;
    color: #bdbdbd;
    margin-top: 2px;
}
.amenities-list-title {
    margin: 28px 0 10px 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #fff;
}
.amenities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.08em;
}
.amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
    font-weight: 400;
}
.amenities-list i {
    color: #4a90e2;
    font-size: 1.2em;
    min-width: 22px;
    text-align: center;
}
@media (max-width: 1100px) {
    .villa-amenities-container {
        flex-direction: column;
        gap: 32px;
        padding: 28px 10px;
    }
    .villa-amenities-content {
        min-width: 0;
    }
}
@media (max-width: 800px) {
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
    .amenities-list {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .villa-amenities-container {
        padding: 10px 2px;
    }
} 

/* --- Location Section Creative Styles --- */
.location-section {
    background: #f7f8fa;
    color: #232323;
}
.location-container {
    background: #fff;
    color: #232323;
}
.location-info {
    flex: 1 1 420px;
    min-width: 260px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location-label {
    color: #4a90e2;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-size: 1.1em;
}
.location-title {
    font-family: 'Georgia', serif;
    font-size: 2.3em;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-align: left;
    color: #232323;
}
.location-desc {
    font-size: 1.08em;
    margin-bottom: 28px;
    color: #d0d0d0;
    max-width: 90%;
}
.location-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.location-features li {
    background: #f0f2f5;
    border-radius: 8px;
    padding: 16px 28px;
    font-size: 1.08em;
    color: #232323;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    position: relative;
}
.location-icon {
    color: #4a90e2;
    font-size: 1.3em;
    min-width: 28px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.location-features li:first-child .location-icon {
    color: #f5b400;
}
.location-map {
    flex: 1 1 380px;
    min-width: 260px;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.location-map iframe {
    width: 100%;
    min-height: 320px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
@media (max-width: 1100px) {
    .location-container {
        flex-direction: column;
        gap: 32px;
        padding: 28px 10px;
    }
    .location-info, .location-map {
        max-width: 100%;
    }
}
@media (max-width: 700px) {
    .location-section {
        padding: 30px 0 20px 0;
    }
    .location-container {
        padding: 10px 2px;
    }
    .location-features li {
        padding: 12px 10px;
        font-size: 1em;
    }
} 

/* --- Creative Enhancements for Location Section --- */
.location-container {
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.08), 0 1.5px 8px rgba(44,62,80,0.06);
    border-radius: 20px;
    border: 1.5px solid #e3eaf2;
    overflow: hidden;
}
.location-title {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 18px;
}
.location-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2 60%, #f5b400 100%);
    border-radius: 2px;
    margin-top: 7px;
}
.location-features li {
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    cursor: pointer;
}
.location-features li:hover {
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.10);
    background: #eaf4fd;
    transform: translateY(-2px) scale(1.01);
}
.location-features li:first-child {
    border-left: 5px solid #4a90e2;
    background: #f5faff;
}
.location-map iframe {
    animation: fadeInMap 1.2s cubic-bezier(0.4,0,0.2,1);
}
@keyframes fadeInMap {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: none; }
} 

/* --- Modern Creative Design for Location Section --- */
.location-section {
    background: linear-gradient(135deg, #f7f8fa 60%, #e3eaf2 100%);
    padding: 80px 0 80px 0;
}
.location-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 56px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.10), 0 1.5px 8px rgba(44,62,80,0.06);
    padding: 48px 40px;
    overflow: hidden;
}
.location-info {
    flex: 1 1 420px;
    min-width: 280px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 16px;
}
.location-label {
    color: #4a90e2;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-size: 1.1em;
}
.location-title {
    font-family: 'Georgia', serif;
    font-size: 2.5em;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-align: left;
    color: #232323;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}
.location-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2 60%, #f5b400 100%);
    border-radius: 2px;
    margin-top: 7px;
}
.location-desc {
    font-size: 1.13em;
    margin-bottom: 32px;
    color: #6a6a6a;
    max-width: 95%;
}
.location-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.location-features li {
    background: #f0f2f5;
    border-radius: 12px;
    padding: 18px 32px;
    font-size: 1.13em;
    color: #232323;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.06);
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    cursor: pointer;
}
.location-features li:hover {
    box-shadow: 0 6px 24px rgba(74, 144, 226, 0.13);
    background: #eaf4fd;
    transform: translateY(-2px) scale(1.01);
}
.location-features li:first-child {
    border-left: 5px solid #4a90e2;
    background: #f5faff;
}
.location-icon {
    color: #4a90e2;
    font-size: 2em;
    min-width: 38px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.location-features li:first-child .location-icon {
    color: #f5b400;
}
.location-map {
    flex: 1 1 420px;
    min-width: 280px;
    max-width: 520px;
    margin-top: 180px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-left: 16px;
}
.location-map iframe {
    width: 100%;
    min-height: 340px;
    border-radius: 18px;
    border: none;
    box-shadow: 0 4px 24px rgba(74, 144, 226, 0.13);
    animation: fadeInMap 1.2s cubic-bezier(0.4,0,0.2,1);
}
@media (max-width: 1100px) {
    .location-container {
        flex-direction: column;
        gap: 32px;
        padding: 28px 10px;
    }
    .location-info, .location-map {
        max-width: 100%;
        margin-top: -35px;
        padding: 0;
    }
}
@media (max-width: 700px) {
    .location-section {
        padding: 30px 0 20px 0;
    }
    .location-container {
        padding: 10px 2px;
    }
    .location-features li {
        padding: 14px 10px;
        font-size: 1em;
    }
    .location-map iframe {
        min-height: 220px;
    }
} 

/* --- Nearby Attractions Creative Card Styles --- */
.nearby-attractions {
    background: #f7f8fa;
    padding: 70px 0 60px 0;
}
.attractions-title {
    text-align: center;
    font-size: 2.2em;
    color: #232323;
    margin-bottom: 38px;
    font-family: 'Georgia', serif;
    letter-spacing: 1.5px;
    position: relative;
}
.attractions-title::after {
    content: '';
    display: block;
    margin: 12px auto 0 auto;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2 60%, #f5b400 100%);
    border-radius: 2px;
}
.attractions-desc {
    text-align: center;
    color: #6a6a6a;
    font-size: 1.13em;
    margin: 0 0 32px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.attraction-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(74, 144, 226, 0.10);
    background: #232323;
    min-height: 320px;
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.attraction-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.18);
}
.attraction-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    filter: brightness(0.82) contrast(1.08);
    transition: filter 0.2s;
}
.attraction-card:hover .attraction-img {
    filter: brightness(0.95) contrast(1.12);
}
.attraction-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 24px 22px 18px 22px;
    background: linear-gradient(0deg, rgba(30,30,30,0.92) 70%, rgba(30,30,30,0.18) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.attraction-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.08em;
    margin-bottom: 8px;
}
.attraction-meta span, .attraction-meta a {
    color: #fff;
    background: rgba(44,62,80,0.18);
    border-radius: 8px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
    font-size: 0.98em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.attraction-meta a.attraction-map {
    color: #f5b400;
    background: rgba(245,180,0,0.12);
    font-weight: 600;
}
.attraction-meta a.attraction-map:hover {
    background: #f5b400;
    color: #fff;
}
.attraction-name {
    color: #fff;
    font-size: 1.18em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.attraction-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.98em;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 8px;
    background: #eaffb7;
    color: #232323;
    box-shadow: 0 1px 4px rgba(74, 144, 226, 0.08);
    margin-top: 2px;
    text-shadow: none;
}
.attraction-badge.hiking {
    background: #eaffb7;
    color: #3a5d1c;
}
.attraction-badge.safari {
    background: #b7eaff;
    color: #1c4a5d;
}
.attraction-badge.tea {
    background: #ffeab7;
    color: #5d4a1c;
}
@media (max-width: 700px) {
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .attraction-img {
        min-height: 220px;
    }
} 

/* --- Creative, Responsive Footer Styles (new structure) --- */
footer {
    background: #232323;
    color: #fff;
    font-size: 1em;
    margin-top: 60px;
}
.footer-sections {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 24px 24px;
    flex-wrap: wrap;
}
.footer-section {
    flex: 1 1 220px;
    min-width: 180px;
    margin-bottom: 24px;
}
.footer-section h3 {
    font-size: 1.18em;
    margin-bottom: 18px;
    color: #4a90e2;
    letter-spacing: 1px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 12px;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
}
.footer-section ul li i {
    color: #4a90e2;
    font-size: 1.1em;
    min-width: 20px;
}
.footer-links ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links ul li a:hover {
    color: #f5b400;
}
.footer-social {
    display: flex;
    gap: 16px;
    margin-left: 111px;
    margin-top: 8px;
}
.footer-social a {
    color: #fff;
    background: #4a90e2;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.10);
}
.footer-social a:hover {
    background: #f5b400;
    color: #232323;
    transform: translateY(-2px) scale(1.08);
}
.footer-bottom {
    background: #181818;
    text-align: center;
    padding: 18px 10px 10px 10px;
    color: #bdbdbd;
    font-size: 0.98em;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .footer-sections {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 36px 10px 18px 10px;
    }
    .footer-section {
        margin-bottom: 18px;
    }
} 

/* --- Creative Preloader Styles --- */
#preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #f7f8fa 60%, #e3eaf2 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
    opacity: 1;
}
#preloader.preloader-hide {
    opacity: 0;
    pointer-events: none;
}
.preloader-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    animation: preloader-spin 1.2s linear infinite;
    filter: drop-shadow(0 4px 16px rgba(74,144,226,0.12));
}
@keyframes preloader-spin {
    0% { transform: rotate(0deg) scale(1); }
    80% { transform: rotate(350deg) scale(1.08); }
    100% { transform: rotate(360deg) scale(1); }
} 

/* --- Creative Gallery Page Styles --- */
.gallery-hero {
    background: linear-gradient(135deg, #f7f8fa 60%, #e3eaf2 100%);
    padding: 60px 0 30px 0;
    text-align: center;
}
.gallery-title {
    font-size: 2.5em;
    color: #4a90e2;
    font-family: 'Georgia', serif;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.gallery-intro {
    color: #6a6a6a;
    font-size: 1.18em;
    max-width: 600px;
    margin: 0 auto 18px auto;
}
.gallery-grid-section {
    background: #fff;
    padding: 40px 0 60px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(74, 144, 226, 0.10);
    background: #f7f8fa;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s, filter 0.3s;
}
.gallery-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.18);
}
.gallery-item:hover img {
    filter: brightness(0.95) contrast(1.08) saturate(1.1);
    transform: scale(1.06);
}
@media (max-width: 700px) {
    .gallery-hero {
        padding: 36px 0 18px 0;
    }
    .gallery-title {
        font-size: 2em;
    }
    .gallery-grid-section {
        padding: 18px 0 30px 0;
    }
    .gallery-grid {
        gap: 14px;
    }
    .gallery-item img {
        height: 140px;
    }
} 

/* --- Gallery Upload Form Styles --- */
.gallery-upload-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px auto 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(74,144,226,0.07);
    padding: 18px 24px;
    max-width: 600px;
}
.upload-icon-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eaf4fd;
    color: #4a90e2;
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 1.08em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.upload-icon-label i {
    font-size: 1.3em;
}
.upload-icon-label:hover {
    background: #4a90e2;
    color: #fff;
}
.gallery-upload-form input[type="text"] {
    flex: 1 1 180px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1.5px solid #e3eaf2;
    font-size: 1em;
    outline: none;
    transition: border 0.2s;
}
.gallery-upload-form input[type="text"]:focus {
    border: 1.5px solid #4a90e2;
}
.gallery-upload-form button[type="submit"] {
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 1.08em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.gallery-upload-form button[type="submit"]:hover {
    background: #f5b400;
    color: #232323;
}
.upload-error {
    color: #e94e77;
    background: #fff0f3;
    border-radius: 8px;
    padding: 8px 16px;
    margin: 14px auto 0 auto;
    max-width: 400px;
    text-align: center;
    font-weight: 500;
}
@media (max-width: 700px) {
    .gallery-upload-form {
        flex-direction: column;
        gap: 10px;
        padding: 12px 8px;
    }
} 

/* --- Creative Contact Page Styles --- */
.contact-hero {
    background: linear-gradient(135deg, #f7f8fa 60%, #e3eaf2 100%);
    padding: 60px 0 30px 0;
    text-align: center;
}
.contact-title {
    font-size: 2.5em;
    color: #4a90e2;
    font-family: 'Georgia', serif;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.contact-intro {
    color: #6a6a6a;
    font-size: 1.18em;
    max-width: 600px;
    margin: 0 auto 18px auto;
}
.contact-main {
    background: #fff;
    padding: 40px 0 60px 0;
}
.contact-container {
    display: flex;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
}
.contact-form-section {
    flex: 1 1 340px;
    min-width: 260px;
    background: #f7f8fa;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(74,144,226,0.07);
    padding: 32px 24px;
}
.contact-form label {
    display: block;
    margin-bottom: 6px;
    color: #4a90e2;
    font-weight: 600;
    font-size: 1.05em;
}
.contact-form input,
.contact-form textarea {
    width: 92%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1.5px solid #e3eaf2;
    font-size: 1em;
    margin-bottom: 18px;
    outline: none;
    transition: border 0.2s;
    background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #4a90e2;
}
.contact-form button[type="submit"] {
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 1.08em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-form button[type="submit"]:hover {
    background: #f5b400;
    color: #232323;
}
.contact-info-section {
    flex: 1 1 340px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-info-block h3 {
    color: #4a90e2;
    font-size: 1.15em;
    margin-bottom: 12px;
    text-align: left;
}
.contact-info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-block ul li {
    margin-bottom: 10px;
    color: #232323;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
}
.contact-info-block ul li i {
    color: #4a90e2;
    font-size: 1.1em;
    min-width: 20px;
}
.contact-map iframe {
    width: 100%;
    min-height: 180px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 8px rgba(74,144,226,0.10);
}

@media (max-width: 600px) {
    .contact-container {
      align-items: center !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
    .contact-form-section,
    .contact-info-section {
      margin: 0 auto !important;
      max-width: 318px !important;
      width: 100% !important;
      float: none !important;
    }
  } 

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 24px;
        padding: 0 6px;
    }
    .contact-form-section, .contact-info-section {
        min-width: 0;
        padding: 18px 8px;
    }
} 

/* --- Gallery Lightbox Styles --- */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(30, 30, 30, 0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.3s;
    opacity: 0;
}
.gallery-lightbox.show {
    display: flex;
    opacity: 1;
}
.gallery-lightbox img {
    max-width: 90vw;
    max-height: 70vh;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(74,144,226,0.18);
    background: #fff;
    margin-bottom: 18px;
    animation: lightbox-fadein 0.4s cubic-bezier(0.4,0,0.2,1);
}
@keyframes lightbox-fadein {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.gallery-lightbox-close {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 2.5em;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.gallery-lightbox-close:hover {
    color: #f5b400;
}
#gallery-lightbox-caption {
    color: #fff;
    font-size: 1.15em;
    text-align: center;
    max-width: 90vw;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
@media (max-width: 700px) {
    .gallery-lightbox img {
        max-width: 98vw;
        max-height: 50vh;
    }
    .gallery-lightbox-close {
        top: 12px;
        right: 18px;
        font-size: 2em;
    }
} 

/* --- Gallery Filter Bar Styles --- */
.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 32px 0 18px 0;
}
.gallery-filter-btn {
    background: #eaf4fd;
    color: #4a90e2;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 1.08em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(74,144,226,0.08);
    outline: none;
}
.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: #4a90e2;
    color: #fff;
    box-shadow: 0 2px 8px rgba(74,144,226,0.13);
}
@media (max-width: 700px) {
    .gallery-filter-bar {
        gap: 7px;
        margin: 18px 0 10px 0;
    }
    .gallery-filter-btn {
        font-size: 1em;
        padding: 7px 12px;
    }
} 

/* --- Creative Enhancements for Gallery Filter and Grid --- */
.gallery-filter-bar {
    background: linear-gradient(90deg, #f7f8fa 60%, #e3eaf2 100%);
    box-shadow: 0 2px 12px rgba(74,144,226,0.07);
    border-radius: 14px;
    padding: 14px 10px;
    margin-bottom: 28px;
    transition: box-shadow 0.3s;
}
.gallery-filter-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.gallery-filter-btn.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2 60%, #f5b400 100%);
    border-radius: 2px;
    z-index: -1;
    animation: filter-underline 0.4s cubic-bezier(0.4,0,0.2,1);
}
@keyframes filter-underline {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 1; }
}
.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s, transform 0.4s;
}
.gallery-item[style*='display: none'] {
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
} 

/* --- Admin Dashboard Styles --- */
.admin-hero {
    background: linear-gradient(135deg, #f7f8fa 60%, #e3eaf2 100%);
    padding: 60px 0 30px 0;
    text-align: center;
}
.admin-title {
    font-size: 2.5em;
    color: #4a90e2;
    font-family: 'Georgia', serif;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.admin-intro {
    color: #6a6a6a;
    font-size: 1.18em;
    max-width: 600px;
    margin: 0 auto 18px auto;
}
.admin-upload-section {
    background: #fff;
    padding: 40px 0 30px 0;
}
.admin-upload-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 0 auto;
    background: #f7f8fa;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(74,144,226,0.07);
    padding: 18px 24px;
    max-width: 700px;
}
.admin-upload-form input[type="text"],
.admin-upload-form select {
    flex: 1 1 180px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1.5px solid #e3eaf2;
    font-size: 1em;
    outline: none;
    transition: border 0.2s;
}
.admin-upload-form input[type="text"]:focus,
.admin-upload-form select:focus {
    border: 1.5px solid #4a90e2;
}
.admin-upload-form button[type="submit"] {
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 1.08em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.admin-upload-form button[type="submit"]:hover {
    background: #f5b400;
    color: #232323;
}
.admin-gallery-list {
    background: #fff;
    padding: 30px 0 60px 0;
}
.admin-gallery-title {
    text-align: center;
    color: #4a90e2;
    font-size: 1.4em;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.admin-gallery-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    background: #f7f8fa;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(74,144,226,0.07);
    padding: 18px 12px;
}
.admin-gallery-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.admin-gallery-table th, .admin-gallery-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e3eaf2;
}
.admin-gallery-table th {
    background: #eaf4fd;
    color: #4a90e2;
    font-weight: 700;
}
.admin-gallery-table tr:last-child td {
    border-bottom: none;
}
@media (max-width: 700px) {
    .admin-upload-form {
        flex-direction: column;
        gap: 10px;
        padding: 12px 8px;
    }
    .admin-gallery-table-wrapper {
        padding: 8px 2px;
    }
} 

/* --- Admin Dashboard Edit/Delete Button Styles --- */
.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 7px;
    font-size: 0.98em;
    font-weight: 600;
    border: none;
    text-decoration: none;
    cursor: pointer;
    margin-right: 4px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.admin-btn.edit {
    background: #eaf4fd;
    color: #4a90e2;
}
.admin-btn.edit:hover {
    background: #4a90e2;
    color: #fff;
}
.admin-btn.delete {
    background: #fff0f3;
    color: #e94e77;
}
.admin-btn.delete:hover {
    background: #e94e77;
    color: #fff;
}
.admin-btn.save {
    background: #eaffb7;
    color: #3a5d1c;
}
.admin-btn.save:hover {
    background: #3a5d1c;
    color: #fff;
}
.admin-btn.cancel {
    background: #f7f8fa;
    color: #6a6a6a;
}
.admin-btn.cancel:hover {
    background: #e3eaf2;
    color: #232323;
} 

/* --- Responsive Mobile Nav and Hamburger --- */
@media (max-width: 600px) {
  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
    margin-right: 8px;
  }
  .hamburger-menu span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #4a90e2;
    border-radius: 2px;
    transition: 0.3s;
  }
  nav {
    display: none;
  }
  .header-right {
    display: none !important;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0,0,0,0.12);
    z-index: 1202;
    padding: 32px 0 0 0;
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
  }
  .mobile-nav.open {
    right: 0;
  }
  .mobile-nav ul {
    list-style: none;
    padding: 0 0 0 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-nav li {
    margin-bottom: 8px;
  }
  .mobile-nav a, .mobile-nav button.book-now-btn {
    color: #232323;
    font-size: 1.15em;
    text-decoration: none;
    background: none;
    border: none;
    padding: 12px 0;
    width: 100%;
    text-align: left;
    display: block;
  }
  .mobile-nav .dropdown-menu {
    position: static;
    background: #f7f8fa;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 0 18px;
    display: none;
  }
  .mobile-nav .dropdown.open > .dropdown-menu {
    display: block;
  }
  .mobile-nav .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-nav .mobile-socials {
    display: flex;
    gap: 12px;
    margin: 12px 0 0 0;
  }
  .mobile-nav .book-now-btn {
    margin-top: 12px;
    background: #4a90e2;
    color: #fff;
    border-radius: 22px;
    padding: 10px 24px;
    font-size: 1em;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    width: auto;
    text-align: center;
  }
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(34,34,34,0.35);
    z-index: 1200;
    transition: opacity 0.3s;
    opacity: 0;
  }
  .mobile-nav-overlay.open {
    
    opacity: 1;
  }
  .mobile-nav.open ~ .mobile-nav-overlay {
    display: block;
    opacity: 1;
  }
  .mobile-nav-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2.2em;
    color: #232323;
    cursor: pointer;
    z-index: 1301;
    padding: 0 8px;
    line-height: 1;
    transition: color 0.2s;
  }
  .mobile-nav-close:hover, .mobile-nav-close:focus {
    color: #e94e77;
  }
  .hamburger-menu {
    position: absolute;
    right: 40px;
    top: 31px;
  }
  header {
    position: relative;
    min-height: 60px;
  }
  .mobile-header-book {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    margin-right: 8px;
    background: #4a90e2;
    color: #fff;
    border-radius: 22px;
    padding: 8px 18px;
    font-size: 1em;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    z-index: 1201;
  }
  .mobile-fab-book {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1300;
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 28px;
    padding: 14px 22px 14px 18px;
    font-size: 1.1em;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(74,144,226,0.18);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    gap: 8px;
    outline: none;
    animation: fab-fadein 0.4s;
  }
  .mobile-fab-book:hover, .mobile-fab-book:focus {
    background: #357abd;
    box-shadow: 0 6px 24px rgba(74,144,226,0.28);
  }
  @keyframes fab-fadein {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: none; }
  }
}
@media (min-width: 601px) {
  .hamburger-menu, .mobile-nav, .mobile-nav-overlay {
    display: none !important;
  }
  .mobile-header-book {
    display: none !important;
  }
} 


@media (max-width: 600px) {
  .villa-amenities-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .location-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .nearby-attractions {
    padding-left: 16px;
    padding-right: 16px;
  }
} 

.location-map {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.location-map iframe {
  width: 100%;
  max-width: 600px;
  height: 400px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .location-map iframe {
    max-width: 100%;
    
    height: 300px;
  }
} 

@media (max-width: 600px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }
  body {
    padding-top: 70px;
  }
} 

@media (max-width: 600px) {
  a[aria-label="Chat on WhatsApp"] {
    margin-bottom: 60px !important;
  }
  #scrollUpBtn {
    bottom: 150px !important;
  }
} 

/* Hero Image Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.hero {
    position: relative;
    background: none !important; /* Remove background image for slider */
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    z-index: 2;
} 

/* About Section Effects */
.about-img-effect {
    border: 3px solid red !important;
    background: rgba(255,0,0,0.1) !important;
    opacity: 0;
    transform: translateY(40px) scale(0.96) rotateZ(-3deg);
    animation: about-img-in 1.2s cubic-bezier(.77,0,.18,1) 0.2s forwards;
}
@keyframes about-img-in {
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateZ(0);
    }
}

.about-content-effect {
    opacity: 0;
    transform: translateY(40px);
    animation: about-content-in 1.2s cubic-bezier(.77,0,.18,1) 0.5s forwards;
}
@keyframes about-content-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-title-effect {
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: about-title-in 1s cubic-bezier(.77,0,.18,1) 0.7s forwards;
}
@keyframes about-title-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-underline {
    display: block;
    width: 80px;
    height: 5px;
    margin: 10px auto 0 auto;
    border-radius: 3px;
    background: linear-gradient(90deg, #4a90e2, #e94e77, #ffd700);
    animation: about-underline-in 1.2s cubic-bezier(.77,0,.18,1) 1.1s forwards;
    opacity: 0;
}
@keyframes about-underline-in {
    to {
        opacity: 1;
    }
}

.about-desc-effect {
    opacity: 0;
    transform: translateY(20px);
    animation: about-desc-in 1s cubic-bezier(.77,0,.18,1) 1.1s forwards;
}
@keyframes about-desc-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-list-effect li {
    opacity: 0;
    transform: translateX(-30px);
    animation: about-list-in 0.7s cubic-bezier(.77,0,.18,1) forwards;
}
.about-list-effect li:nth-child(1) { animation-delay: 1.3s; }
.about-list-effect li:nth-child(2) { animation-delay: 1.5s; }
.about-list-effect li:nth-child(3) { animation-delay: 1.7s; }
.about-list-effect li:nth-child(4) { animation-delay: 1.9s; }
.about-list-effect li:nth-child(5) { animation-delay: 2.1s; }
@keyframes about-list-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
} 

/* Villa Amenities Modern Effects */
.villa-amenities-effect {
    position: relative;
    overflow: hidden;
}

.villa-amenities-img-effect {
    opacity: 0;
    transform: scale(0.92) translateY(40px);
    animation: amenities-img-in 1.2s cubic-bezier(.77,0,.18,1) 0.2s forwards, amenities-img-float 4s ease-in-out 1.5s infinite alternate;
}
@keyframes amenities-img-in {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
@keyframes amenities-img-float {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.02) translateY(-10px); }
}

.villa-amenities-content-effect {
    opacity: 0;
    transform: translateY(40px);
    animation: amenities-content-in 1.2s cubic-bezier(.77,0,.18,1) 0.5s forwards;
}
@keyframes amenities-content-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.villa-amenities-title-effect {
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: amenities-title-in 1s cubic-bezier(.77,0,.18,1) 0.7s forwards;
}
@keyframes amenities-title-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.villa-amenities-underline {
    display: block;
    width: 70px;
    height: 4px;
    margin: 10px auto 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #4a90e2, #e94e77, #ffd700);
    animation: amenities-underline-in 1.2s cubic-bezier(.77,0,.18,1) 1.1s forwards;
    opacity: 0;
}
@keyframes amenities-underline-in {
    to {
        opacity: 1;
    }
}

.amenities-grid-effect {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    gap: 20px;
}
@media (max-width: 900px) {
    .amenities-grid-effect {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .amenities-grid-effect {
        grid-template-columns: 1fr;
    }
}

.amenity-card-effect {
    opacity: 0;
    transform: scale(0.85) translateY(40px) rotateZ(-2deg);
    animation: amenity-card-in 0.8s cubic-bezier(.77,0,.18,1) forwards;
}
.amenity-card-effect:nth-child(1) { animation-delay: 1.2s; }
.amenity-card-effect:nth-child(2) { animation-delay: 1.4s; }
.amenity-card-effect:nth-child(3) { animation-delay: 1.6s; }
.amenity-card-effect:nth-child(4) { animation-delay: 1.8s; }
.amenity-card-effect:nth-child(5) { animation-delay: 2.0s; }
.amenity-card-effect:nth-child(6) { animation-delay: 2.2s; }
@keyframes amenity-card-in {
    to {
        opacity: 1;
        transform: scale(1) translateY(0) rotateZ(0);
    }
}

.amenity-card-effect:hover {
    box-shadow: 0 8px 32px rgba(74,144,226,0.15), 0 2px 8px rgba(233,78,119,0.10);
    transform: scale(1.04) translateY(-6px) rotateZ(1deg);
    transition: box-shadow 0.3s, transform 0.3s;
    z-index: 2;
}

.amenities-list-title-effect {
    opacity: 0;
    transform: translateY(20px);
    animation: amenities-list-title-in 1s cubic-bezier(.77,0,.18,1) 2.5s forwards;
}
@keyframes amenities-list-title-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.amenities-list-effect li {
    opacity: 0;
    transform: translateX(-30px);
    animation: amenities-list-in 0.7s cubic-bezier(.77,0,.18,1) forwards;
}
.amenities-list-effect li:nth-child(1) { animation-delay: 2.7s; }
.amenities-list-effect li:nth-child(2) { animation-delay: 2.8s; }
.amenities-list-effect li:nth-child(3) { animation-delay: 2.9s; }
.amenities-list-effect li:nth-child(4) { animation-delay: 3.0s; }
.amenities-list-effect li:nth-child(5) { animation-delay: 3.1s; }
.amenities-list-effect li:nth-child(6) { animation-delay: 3.2s; }
.amenities-list-effect li:nth-child(7) { animation-delay: 3.3s; }
.amenities-list-effect li:nth-child(8) { animation-delay: 3.4s; }
.amenities-list-effect li:nth-child(9) { animation-delay: 3.5s; }
.amenities-list-effect li:nth-child(10) { animation-delay: 3.6s; }
.amenities-list-effect li:nth-child(11) { animation-delay: 3.7s; }
@keyframes amenities-list-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
} 

/* Location Section Modern Effects */
.location-section-effect {
    position: relative;
    overflow: hidden;
}
.location-container-effect {
    opacity: 0;
    transform: translateY(40px);
    animation: location-container-in 1.2s cubic-bezier(.77,0,.18,1) 0.2s forwards;
}
@keyframes location-container-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.location-label-effect {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: location-label-in 0.8s cubic-bezier(.77,0,.18,1) 0.5s forwards;
    letter-spacing: 0.25em;
    font-weight: bold;
    color: #4a90e2;
    background: linear-gradient(90deg, #4a90e2, #e94e77, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
@keyframes location-label-in {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.location-title-effect {
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: location-title-in 1s cubic-bezier(.77,0,.18,1) 0.7s forwards;
}
@keyframes location-title-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.location-title-underline {
    display: block;
    width: 70px;
    height: 4px;
    margin: 10px auto 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #4a90e2, #e94e77, #ffd700);
    animation: location-underline-in 1.2s cubic-bezier(.77,0,.18,1) 1.1s forwards;
    opacity: 0;
}
@keyframes location-underline-in {
    to {
        opacity: 1;
    }
}
.location-desc-effect {
    opacity: 0;
    transform: translateY(20px);
    animation: location-desc-in 1s cubic-bezier(.77,0,.18,1) 1.1s forwards;
}
@keyframes location-desc-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.location-features-effect li {
    opacity: 0;
    transform: translateX(-30px);
    animation: location-features-in 0.7s cubic-bezier(.77,0,.18,1) forwards;
}
.location-features-effect li:nth-child(1) { animation-delay: 1.3s; }
.location-features-effect li:nth-child(2) { animation-delay: 1.5s; }
.location-features-effect li:nth-child(3) { animation-delay: 1.7s; }
.location-features-effect li:nth-child(4) { animation-delay: 1.9s; }
@keyframes location-features-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.location-map-effect {
    opacity: 0;
    transform: scale(0.96) translateY(40px);
    animation: location-map-in 1.2s cubic-bezier(.77,0,.18,1) 2.2s forwards;
}
@keyframes location-map-in {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Nearby Attractions Modern Effects */
.nearby-attractions-effect {
    position: relative;
    overflow: hidden;
}
.attractions-title-effect {
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: attractions-title-in 1s cubic-bezier(.77,0,.18,1) 0.3s forwards;
}
@keyframes attractions-title-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.attractions-title-underline {
    display: block;
    width: 80px;
    height: 5px;
    margin: 10px auto 0 auto;
    border-radius: 3px;
    background: linear-gradient(90deg, #4a90e2, #e94e77, #ffd700);
    animation: attractions-underline-in 1.2s cubic-bezier(.77,0,.18,1) 0.7s forwards;
    opacity: 0;
}
@keyframes attractions-underline-in {
    to {
        opacity: 1;
    }
}
.attractions-desc-effect {
    opacity: 0;
    transform: translateY(20px);
    animation: attractions-desc-in 1s cubic-bezier(.77,0,.18,1) 0.7s forwards;
}
@keyframes attractions-desc-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.attractions-grid-effect {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.attraction-card-effect {
    opacity: 0;
    transform: scale(0.92) translateY(40px) rotateZ(-2deg);
    animation: attraction-card-in 0.9s cubic-bezier(.77,0,.18,1) forwards;
    transition: box-shadow 0.3s, transform 0.3s;
}
/* Staggered animation for each card */
.attraction-card-effect:nth-child(1) { animation-delay: 1.0s; }
.attraction-card-effect:nth-child(2) { animation-delay: 1.2s; }
.attraction-card-effect:nth-child(3) { animation-delay: 1.4s; }
.attraction-card-effect:nth-child(4) { animation-delay: 1.6s; }
.attraction-card-effect:nth-child(5) { animation-delay: 1.8s; }
.attraction-card-effect:nth-child(6) { animation-delay: 2.0s; }
.attraction-card-effect:nth-child(7) { animation-delay: 2.2s; }
.attraction-card-effect:nth-child(8) { animation-delay: 2.4s; }
.attraction-card-effect:nth-child(9) { animation-delay: 2.6s; }
.attraction-card-effect:nth-child(10) { animation-delay: 2.8s; }
.attraction-card-effect:nth-child(11) { animation-delay: 3.0s; }
@keyframes attraction-card-in {
    to {
        opacity: 1;
        transform: scale(1) translateY(0) rotateZ(0);
    }
}
.attraction-card-effect:hover {
    box-shadow: 0 8px 32px rgba(74,144,226,0.15), 0 2px 8px rgba(233,78,119,0.10);
    transform: scale(1.04) translateY(-6px) rotateZ(1deg);
    z-index: 2;
}

.attractions-title-effect,
.attractions-desc-effect {
    text-align: center;
    width: 100%;
    display: block;
}

/* Packages Page Creative Hero */
.packages-hero.creative-packages-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #4a90e2 0%, #e94e77 100%), url('../image/1.jpg') center center/cover no-repeat;
    overflow: hidden;
}
.packages-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.packages-hero-title {
    color: #fff;
    font-size: 3.2em;
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-weight: bold;
    margin-bottom: 18px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(40px);
    animation: packages-hero-title-in 1.2s cubic-bezier(.77,0,.18,1) 0.3s forwards;
    text-shadow: 0 4px 24px rgba(74,144,226,0.18), 0 2px 8px rgba(233,78,119,0.10);
}
@keyframes packages-hero-title-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.packages-hero-subtitle {
    color: #fff;
    font-size: 1.3em;
    background: rgba(0,0,0,0.25);
    padding: 12px 32px;
    border-radius: 8px;
    letter-spacing: 1.5px;
    opacity: 0;
    transform: translateY(30px);
    animation: packages-hero-subtitle-in 1.2s cubic-bezier(.77,0,.18,1) 0.8s forwards;
    box-shadow: 0 2px 8px rgba(74,144,226,0.10);
}
@keyframes packages-hero-subtitle-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 700px) {
    .packages-hero-title { font-size: 2em; }
    .packages-hero-subtitle { font-size: 1em; padding: 10px 16px; }
}

/* Packages Cards Section */
.packages-list-section {
    background: #f7f8fa;
    padding: 60px 0 80px 0;
}
.packages-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.package-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(74,144,226,0.08), 0 2px 8px rgba(233,78,119,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    min-height: 340px;
}
.package-card-header {
    padding: 32px 28px 18px 28px;
    background: linear-gradient(90deg, #4a90e2 0%, #e94e77 100%);
    color: #fff;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    position: relative;
}
.package-card-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}
.package-card-price {
    font-size: 2em;
    font-weight: bold;
    color: #ffd700;
    margin-top: 4px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.package-card-price span {
    font-size: 0.6em;
    color: #fff;
    font-weight: 400;
    margin-left: 4px;
}
.package-card-body {
    padding: 28px 28px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.package-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.package-card-body li {
    font-size: 1.08em;
    color: #444;
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}
.package-card-body li:before {
    content: '\2713';
    color: #4a90e2;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}
.package-card-effect {
    opacity: 0;
    transform: scale(0.92) translateY(40px);
    animation: package-card-in 1s cubic-bezier(.77,0,.18,1) forwards;
}
.package-card-effect:nth-child(1) { animation-delay: 0.5s; }
.package-card-effect:nth-child(2) { animation-delay: 0.7s; }
.package-card-effect:nth-child(3) { animation-delay: 0.9s; }
@keyframes package-card-in {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.package-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 32px rgba(74,144,226,0.15), 0 2px 8px rgba(233,78,119,0.10);
    z-index: 2;
}
@media (max-width: 700px) {
    .packages-list-container { grid-template-columns: 1fr; }
    .package-card-header, .package-card-body { padding: 18px 12px; }
}

/* Gallery Hero Styles */
.gallery-hero.creative-gallery-hero {
    position: relative;
    background: url('../image/IMG_0392.jpg') center center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.gallery-hero-title {
    font-size: 3.5em;
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: gallery-hero-title-in 1s ease-out forwards;
}

@keyframes gallery-hero-title-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-hero-subtitle {
    font-size: 1.3em;
    max-width: 600px;
    margin: 0;
    padding: 15px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: gallery-hero-subtitle-in 1s ease-out 0.3s forwards;
}

@keyframes gallery-hero-subtitle-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .gallery-hero-title { font-size: 2.5em; }
    .gallery-hero-subtitle { font-size: 1.1em; padding: 12px 16px; }
}

/* Gallery Filter Section */
.gallery-filter-section {
    padding: 40px 20px;
    background: #fff;
}

.gallery-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* About Hero Styles */
.about-hero.creative-about-hero {
    position: relative;
    background: url('../image/IMG_8545.jpg') center center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.about-hero-title {
    font-size: 3.5em;
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: about-hero-title-in 1s ease-out forwards;
}

@keyframes about-hero-title-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero-subtitle {
    font-size: 1.3em;
    max-width: 600px;
    margin: 0;
    padding: 15px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: about-hero-subtitle-in 1s ease-out 0.3s forwards;
}

@keyframes about-hero-subtitle-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .about-hero-title { font-size: 2.5em; }
    .about-hero-subtitle { font-size: 1.1em; padding: 12px 16px; }
}

/* Contact Hero Styles */
.contact-hero.creative-contact-hero {
    position: relative;
    background: url('../image/IMG_9807.jpg') center center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3.5em;
    font-family: 'Brush Script MT', cursive, sans-serif;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: contact-hero-title-in 1s ease-out forwards;
}

@keyframes contact-hero-title-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero-subtitle {
    font-size: 1.3em;
    max-width: 600px;
    margin: 0;
    padding: 15px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: contact-hero-subtitle-in 1s ease-out 0.3s forwards;
}

@keyframes contact-hero-subtitle-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .contact-hero-title { font-size: 2.5em; }
    .contact-hero-subtitle { font-size: 1.1em; padding: 12px 16px; }
}

/* Creative Contact Divider SVG */
.contact-divider-svg {
    margin-top: -2px;
    background: transparent;
    line-height: 0;
}

/* Floating Envelope Icon */
.contact-form-floating-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    margin-top: -30px;
    z-index: 2;
    position: relative;
}
.contact-form-floating-icon i {
    font-size: 2.8em;
    color: #4a90e2;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(74,144,226,0.10);
    padding: 18px 20px 16px 20px;
    animation: float-envelope 2.5s ease-in-out infinite alternate;
}
@keyframes float-envelope {
    0% { transform: translateY(0); }
    100% { transform: translateY(-16px) scale(1.07); }
}

/* Animated Contact Blocks */
.animated-contact-block {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: contact-block-in 1.1s cubic-bezier(.77,0,.18,1) forwards;
}
.animated-contact-block:nth-child(1) { animation-delay: 0.2s; }
.animated-contact-block:nth-child(2) { animation-delay: 0.5s; }
@keyframes contact-block-in {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Animated Send Button */
.animated-send-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.18s cubic-bezier(.77,0,.18,1);
}
.animated-send-btn:active {
    transform: scale(0.96);
}
.animated-send-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(74,144,226,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: 0;
}
.animated-send-btn:focus::after,
.animated-send-btn:hover::after {
    width: 180px;
    height: 180px;
}

/* Animated Notification Banners */
.booking-notification {
    animation: notification-pop-in 0.7s cubic-bezier(.77,0,.18,1);
}
@keyframes notification-pop-in {
    0% { opacity: 0; transform: scale(0.92) translateY(-30px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Creative About Divider SVG */
.about-divider-svg {
    margin-top: -2px;
    background: transparent;
    line-height: 0;
}

/* About Main Section Layout */
.about-main.creative-about-main {
    background: #fff;
    padding: 60px 0 40px 0;
}
.about-container {
    display: flex;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.about-image-block {
    flex: 1 1 260px;
    min-width: 260px;
    max-width: 350px;
    text-align: center;
    position: relative;
}
.about-image {
    width: 100%;
    max-width: 260px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin-bottom: 18px;
}
.about-floating-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -18px;
    margin-top: -30px;
    z-index: 2;
    position: relative;
}
.about-floating-icon i {
    font-size: 2.5em;
    color: #4a90e2;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(74,144,226,0.10);
    padding: 14px 16px 12px 16px;
    animation: float-leaf 2.5s ease-in-out infinite alternate;
}
@keyframes float-leaf {
    0% { transform: translateY(0); }
    100% { transform: translateY(-14px) scale(1.07); }
}
.about-content-block {
    flex: 2 1 340px;
    min-width: 260px;
}
.about-welcome-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4a90e2, #7b68ee, #9370db);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite, title-glow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
    position: relative;
    letter-spacing: 1px;
    text-align: center;
}

.about-welcome-title::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.1), rgba(123, 104, 238, 0.1), rgba(147, 112, 219, 0.1));
    border-radius: 15px;
    z-index: -1;
    animation: background-pulse 4s ease-in-out infinite;
}

.about-welcome-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #7b68ee, #9370db);
    border-radius: 2px;
    animation: underline-expand 2s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes title-glow {
    0% { filter: drop-shadow(0 0 5px rgba(74, 144, 226, 0.5)); }
    100% { filter: drop-shadow(0 0 15px rgba(123, 104, 238, 0.8)); }
}

@keyframes background-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

@keyframes underline-expand {
    0%, 100% { width: 0; }
    50% { width: 80%; }
}
.about-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.about-features-list {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 18px;
    padding-left: 20px;
    list-style: none;
}
.about-features-list li {
    opacity: 0;
    transform: translateX(-30px);
    animation: about-feature-in 0.8s cubic-bezier(.77,0,.18,1) forwards;
    animation-delay: calc(0.2s + 0.12s * var(--i));
}
.about-features-list li:nth-child(1) { --i: 1; }
.about-features-list li:nth-child(2) { --i: 2; }
.about-features-list li:nth-child(3) { --i: 3; }
.about-features-list li:nth-child(4) { --i: 4; }
@keyframes about-feature-in {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Animated About Blocks */
.animated-about-block {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: about-block-in 1.1s cubic-bezier(.77,0,.18,1) forwards;
}
.animated-about-block:nth-child(1) { animation-delay: 0.2s; }
.animated-about-block:nth-child(2) { animation-delay: 0.5s; }
.animated-about-block:nth-child(3) { animation-delay: 0.8s; }
@keyframes about-block-in {
    to {
        opacity: 1;
        transform: none;
    }
}

/* About Mission Block */
.about-mission-block {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-mission-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.about-mission-desc {
    font-size: 1.08rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll-triggered Animation for Index Sections */
.scroll-animate {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
}
.scroll-animate.in-view {
    opacity: 1;
    transform: none;
}

@media (max-width: 700px) {
  .about-main.creative-about-main {
    padding-left: 16px;
    padding-right: 16px;
  }
  .about-container {
    padding-left: 0;
    padding-right: 0;
  }
}
