/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal overflow globally */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: navbarFloat 6s ease-in-out infinite;
}

@keyframes navbarFloat {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 10px;
    margin: 0;
}

.nav-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-logo i {
    color: #3498db;
    margin-right: 8px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 10px;
    animation: logoGlow 10s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: brightness(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.1);
        transform: scale(1.01);
    }
}

.logo-link:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.logo-link:active {
    transform: scale(0.95);
}

.logo-link h2 {
    margin: 0;
    color: inherit;
}

/* BOOK NOW Button Bubble Animation */
.booking-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.booking-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.booking-btn:hover::before {
    width: 300px;
    height: 300px;
}

.booking-btn:active::before {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.5);
}

.booking-btn span {
    position: relative;
    z-index: 1;
}

/* BOOK NOW Click Animation */
@keyframes bookNowBubble {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    }
}

.booking-btn.animate {
    animation: bookNowBubble 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Page Transition Effect */
@keyframes pageTransition {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

.page-transition {
    animation: pageTransition 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Loading Bubble Animation */
.loading-bubble {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
    animation: loadingBubbleExpand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.loading-bubble::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-bubble::after {
    content: 'BOOKING...';
    position: absolute;
    color: white;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes loadingBubbleExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    15% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
    }
    30% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    85% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Loading overlay background */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Smooth page transition with loading */
.smooth-transition {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Homepage Loading Animation */
.homepage-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: homepageLoad 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.homepage-loading::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.homepage-loading::after {
    content: 'WELCOME TO ARRIBA HOMESTAY';
    position: absolute;
    color: white;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;
    animation: welcomePulse 2s ease-in-out infinite;
    margin-top: 80px;
}

@keyframes homepageLoad {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    80% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

@keyframes welcomePulse {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Homepage entrance animation */
.homepage-entrance {
    animation: homepageEntrance 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes homepageEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    animation: navLinkPulse 8s ease-in-out infinite;
}

@keyframes navLinkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.nav-link:hover {
    color: #3498db;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #3498db;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3498db;
}

.booking-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.admin-icon {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white !important;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.admin-icon:hover {
    background: linear-gradient(135deg, #7f8c8d, #6c7b7d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(149, 165, 166, 0.4);
}

.admin-icon i {
    font-size: 1.1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('hero.png') center/cover no-repeat;
    color: white;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero.png') center/cover no-repeat;
    filter: blur(8px) brightness(0.4);
    opacity: 0.7;
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 40px;
}

.welcome-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4), 0 0 20px rgba(52, 152, 219, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.5), 0 0 30px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.4);
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.hero-image {
    display: none; /* Hide since we're using background image */
}

/* Remove placeholder styling since we're using background image */

/* Find Section */
.find-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.find-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.find-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.find-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.find-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.find-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.find-card p {
    color: #666;
    line-height: 1.6;
}

/* Booking Status Search Styles */
.booking-status-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.search-box {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

#bookingIdInput {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

#bookingIdInput:focus {
    outline: none;
    border-color: #3498db;
}

.search-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.status-result {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.status-result.success {
    border-left: 5px solid #27ae60;
}

.status-result.error {
    border-left: 5px solid #e74c3c;
}

.status-result.pending {
    border-left: 5px solid #f39c12;
}

.booking-info {
    margin-bottom: 20px;
}

.booking-info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #2c3e50;
}

.info-value {
    color: #666;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.confirmed {
    background: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.rejected {
    background: #f8d7da;
    color: #721c24;
}

.copy-booking-id {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.copy-booking-id:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-btn {
        justify-content: center;
    }
    
    .info-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .booking-status-container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .search-box {
        padding: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    #bookingIdInput {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
}

/* Review Section */
.review-section {
    padding: 80px 0;
    background: white;
}

.review-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

/* Review Form */
.review-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-form-container h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.review-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Rating Input */
.rating-input {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.3s ease;
    margin: 0;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input[type="radio"]:checked ~ label {
    color: #f39c12;
}

.rating-input input[type="radio"]:checked + label {
    color: #f39c12;
}

/* File Upload */
.form-group input[type="file"] {
    padding: 8px 15px;
    border: 2px dashed #3498db;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 8px;
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    background: rgba(52, 152, 219, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.9rem;
}

/* Image Preview */
.image-preview,
.video-preview {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-file {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Submit Button */
.submit-review-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px auto 0;
}

.submit-review-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.submit-review-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Submit Message */
.submit-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.submit-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.submit-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Reviews Display */
.reviews-display {
    margin-top: 60px;
}

.reviews-display h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* PHONE MOCKUP CONTAINER - SCROLL INTO PHONE ANIMATION */
.phone-mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 800px;
    margin: 60px 0;
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(300px) scale(0.9);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.phone-mockup-container.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* STICKY PHONE WHEN IN VIEW - FOR SCROLL INTO PHONE EFFECT */
.review-section {
    position: relative;
}

@media (min-width: 769px) {
    .reviews-display {
        position: relative;
        min-height: 1200px;
    }
    
    .phone-mockup-container.visible {
        position: sticky;
        top: 80px;
        z-index: 100;
        align-self: flex-start;
    }
}

/* PHONE FRAME - IPHONE STYLE */
.phone-frame {
    position: relative;
    width: 360px;
    height: 780px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1),
        0 0 0 2px rgba(255, 255, 255, 0.05);
}

/* PHONE NOTCH (DYNAMIC ISLAND) */
.phone-notch.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
}

.dynamic-island.expanded {
    width: 200px;
    height: 35px;
    border-radius: 17.5px;
}

.dynamic-island-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    padding: 0 12px;
    position: relative;
}

.dynamic-island-content .mic-indicator {
    width: 5px;
    height: 5px;
    background: #666;
    border-radius: 50%;
    position: absolute;
    left: 15px;
    opacity: 0.6;
}

.dynamic-island-content .camera-lens {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #1a1a1a 0%, #000 70%);
    border: 1px solid #333;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.dynamic-island-content .island-status-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    letter-spacing: -0.2px;
}

.dynamic-island.expanded .island-status-text {
    opacity: 1;
    transform: scale(1);
}

.dynamic-island.expanded .mic-indicator,
.dynamic-island.expanded .camera-lens {
    opacity: 0;
}

.dynamic-island:active {
    transform: translateX(-50%) scale(0.95);
}

/* PHONE SCREEN */
.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

/* iOS STATUS BAR */
.ios-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 5;
    pointer-events: none;
}

.status-left {
    display: flex;
    align-items: center;
}

.status-time {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    letter-spacing: -0.3px;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* CELLULAR SIGNAL BARS */
.status-signal {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 11px;
}

.signal-bar {
    width: 3px;
    background: #000;
    border-radius: 1px;
}

.signal-bar:nth-child(1) {
    height: 4px;
}

.signal-bar:nth-child(2) {
    height: 5px;
}

.signal-bar:nth-child(3) {
    height: 7px;
}

.signal-bar:nth-child(4) {
    height: 9px;
}

/* WIFI ICON */
.status-wifi {
    width: 16px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wifi-icon {
    width: 16px;
    height: 12px;
    color: #000;
}

/* BATTERY */
.status-battery {
    width: 24px;
    height: 12px;
    border: 1.5px solid #000;
    border-radius: 2.5px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 1px;
    box-sizing: border-box;
}

.battery-level {
    width: 85%;
    height: 100%;
    background: #000;
    border-radius: 1px;
}

.battery-tip {
    position: absolute;
    right: -3px;
    width: 2px;
    height: 6px;
    background: #000;
    border-radius: 0 1px 1px 0;
}

/* SCROLLABLE CONTENT INSIDE PHONE */
.phone-content-scroll {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 64px 20px 80px; /* TOP PADDING FOR STATUS BAR */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.phone-content-scroll::-webkit-scrollbar {
    width: 4px;
}

.phone-content-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.phone-content-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

/* REVIEWS GRID INSIDE PHONE */
.phone-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    grid-template-columns: 1fr;
}

.phone-reviews-grid .review-card {
    width: 100%;
    margin: 0;
    min-width: 0;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #dbdbdb;
    padding: 0;
    transition: none;
}

/* INSTAGRAM-STYLE REVIEW CARD */
.phone-reviews-grid .review-card:hover {
    transform: none;
    box-shadow: none;
}

/* INSTAGRAM POST HEADER */
.instagram-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid transparent;
}

.instagram-post-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.instagram-menu-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #262626;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.instagram-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.instagram-username {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* INSTAGRAM POST MEDIA */
.instagram-post-media {
    width: 100%;
    background: #000;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

/* ROUNDED CORNERS FOR IMAGES ON MOBILE */
@media (max-width: 768px) {
    .instagram-post-media {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .instagram-post-media img,
    .instagram-post-media video {
        border-radius: 8px;
    }
}

.instagram-post-media img,
.instagram-post-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.instagram-post-media img {
    min-height: 100%;
}

/* INSTAGRAM POST ACTIONS */
.instagram-post-actions {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 16px;
}

.instagram-heart-btn,
.instagram-action-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    transition: transform 0.2s ease;
    color: #262626;
}

.instagram-heart-btn:active,
.instagram-action-btn:active {
    transform: scale(0.9);
    opacity: 0.5;
}

.instagram-action-btn {
    font-size: 24px;
}

.instagram-save-btn {
    margin-left: auto;
}

.instagram-action-btn i {
    color: #262626;
}

.instagram-bookmark-icon {
    font-size: 24px;
    color: #262626;
    transition: all 0.3s ease;
}

.instagram-save-btn.saved .instagram-bookmark-icon {
    color: #262626;
}

.instagram-save-btn.animate-save .instagram-bookmark-icon {
    animation: saveBounce 0.4s ease;
}

@keyframes saveBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.instagram-heart-icon {
    font-size: 24px;
    color: #262626;
    transition: all 0.3s ease;
}

.instagram-heart-btn.liked .instagram-heart-icon {
    color: #ed4956;
}

.instagram-heart-btn.liked .instagram-heart-icon {
    font-weight: 900;
}

.instagram-heart-btn.liked .instagram-heart-icon::before {
    content: '\f004';
}

/* HEART ANIMATION */
.instagram-heart-btn.animate-heart .instagram-heart-icon {
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(1.2);
    }
}

/* INSTAGRAM POST LIKES */
.instagram-post-likes {
    padding: 0 16px;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 14px;
    color: #262626;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    align-items: center;
}

/* INSTAGRAM POST CAPTION */
.instagram-post-caption {
    padding: 0 16px 8px;
    font-size: 14px;
    color: #262626;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    word-wrap: break-word;
}

.instagram-post-caption .instagram-username {
    font-weight: 600;
    margin-right: 4px;
    color: #262626;
}

/* INSTAGRAM POST DATE */
.instagram-post-date {
    padding: 0 16px 16px;
    font-size: 12px;
    color: #8e8e8e;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* REMOVE DEFAULT REVIEW CARD STYLES INSIDE PHONE */
.phone-reviews-grid .review-card .review-header,
.phone-reviews-grid .review-card .reviewer-info,
.phone-reviews-grid .review-card .rating-display,
.phone-reviews-grid .review-card .review-date,
.phone-reviews-grid .review-card .review-text {
    display: none;
}

/* HIDE PAGINATION INSIDE PHONE */
.phone-content-scroll .reviews-pagination {
    display: none;
}

/* PHONE HOME INDICATOR */
.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    z-index: 10;
}

/* MOBILE RESPONSIVE FOR PHONE MOCKUP */
@media (max-width: 768px) {
    .phone-mockup-container {
        min-height: 600px;
        padding: 20px 10px;
        margin: 40px 0;
    }
    
    .phone-frame {
        width: 320px;
        height: 680px;
        border-radius: 40px;
        padding: 6px;
    }
    
    .phone-notch.dynamic-island {
        width: 100px;
        height: 25px;
        top: 10px;
        border-radius: 12.5px;
    }
    
    .dynamic-island.expanded {
        width: 160px;
        height: 30px;
    }
    
    .dynamic-island-content .mic-indicator {
        width: 4px;
        height: 4px;
        left: 12px;
    }
    
    .dynamic-island-content .camera-lens {
        width: 6px;
        height: 6px;
        right: 12px;
    }
    
    .dynamic-island-content .island-status-text {
        font-size: 10px;
    }
    
    .phone-screen {
        border-radius: 34px;
    }
    
    .ios-status-bar {
        height: 40px;
        padding: 0 15px;
    }
    
    .status-time {
        font-size: 14px;
    }
    
    .phone-content-scroll {
        padding: 54px 15px 70px;
    }
    
    .phone-home-indicator {
        width: 120px;
        height: 4px;
        bottom: 6px;
    }
}

@media (max-width: 480px) {
    .phone-mockup-container {
        min-height: 500px;
        padding: 15px 5px;
        margin: 30px 0;
    }
    
    .phone-frame {
        width: 280px;
        height: 600px;
        border-radius: 35px;
        padding: 5px;
    }
    
    .phone-notch.dynamic-island {
        width: 90px;
        height: 22px;
        top: 8px;
        border-radius: 11px;
    }
    
    .dynamic-island.expanded {
        width: 140px;
        height: 26px;
    }
    
    .dynamic-island-content .mic-indicator {
        width: 3px;
        height: 3px;
        left: 10px;
    }
    
    .dynamic-island-content .camera-lens {
        width: 5px;
        height: 5px;
        right: 10px;
    }
    
    .dynamic-island-content .island-status-text {
        font-size: 9px;
    }
    
    .phone-screen {
        border-radius: 30px;
    }
    
    .ios-status-bar {
        height: 38px;
        padding: 0 12px;
    }
    
    .status-time {
        font-size: 13px;
    }
    
    .status-signal {
        gap: 1.5px;
    }
    
    .signal-bar {
        width: 2.5px;
    }
    
    .status-wifi,
    .wifi-icon {
        width: 14px;
        height: 10px;
    }
    
    .status-battery {
        width: 22px;
        height: 11px;
    }
    
    .phone-content-scroll {
        padding: 48px 12px 60px;
    }
    
    .phone-home-indicator {
        width: 100px;
        height: 3px;
        bottom: 5px;
    }
    
    .phone-reviews-grid .review-card {
        padding: 20px;
    }
    
    /* ROUNDED CORNERS FOR IMAGES ON MOBILE */
    .instagram-post-media {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .instagram-post-media img,
    .instagram-post-media video {
        border-radius: 8px;
    }
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.rating-display {
    display: flex;
    gap: 2px;
}

.rating-display i {
    color: #f39c12;
    font-size: 0.9rem;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-content {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-content::before {
    content: '"';
    font-size: 1.5rem;
    color: #3498db;
    font-weight: bold;
}

.review-content::after {
    content: '"';
    font-size: 1.5rem;
    color: #3498db;
    font-weight: bold;
}

.review-media {
    margin-top: 15px;
}

.review-image {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-image:hover {
    transform: scale(1.05);
}

.review-video {
    width: 100%;
    max-width: 300px;
    height: 200px;
    border-radius: 8px;
    cursor: pointer;
}

/* Modal for image/video viewing */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.modal-content img,
.modal-content video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #bbb;
}

/* No Reviews Message */
.no-reviews-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    grid-column: 1 / -1;
}

.no-reviews-message i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.no-reviews-message h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.no-reviews-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Pagination for Reviews */
.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #2980b9;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.pagination-info {
    color: #666;
    font-size: 0.9rem;
}

/* Loading State */
.reviews-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.reviews-loading i {
    font-size: 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
    text-align: justify;
}

.contact-info {
    margin-top: 30px;
}

.contact-info h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item i {
    color: #3498db;
    margin-right: 15px;
    width: 20px;
}

/* Tropical Contact Form Styles */
.tropical-contact-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 40px 20px;
    overflow: visible;
}

.tropical-contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 10;
    margin: 0 auto;
}

.tropical-contact-form h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.tropical-contact-form p {
    color: #6c757d;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Palm Tree Styles */
.palm-tree {
    position: absolute;
    z-index: 1;
    animation: palmSway 4s ease-in-out infinite;
    pointer-events: none;
}

.left-palm {
    left: -15%;
    bottom: 20%;
    transform: scale(2.5);
}

.right-palm {
    right: -20%;
    bottom: 15%;
    transform: scale(2.3);
}

.palm-tree-image {
    width: 250px;
    height: auto;
    max-height: none;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    opacity: 0.9;
}

/* Palm Tree Animation */
@keyframes palmSway {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(1deg);
    }
    75% {
        transform: rotate(-1deg);
    }
}

/* Tropical Form Styles */
.tropical-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tropical-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tropical-form .form-group {
    display: flex;
    flex-direction: column;
}

.tropical-form label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.tropical-form input,
.tropical-form textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.tropical-form input:focus,
.tropical-form textarea:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.tropical-form textarea {
    resize: vertical;
    min-height: 100px;
}

.tropical-submit-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tropical-submit-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.tropical-submit-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive for Tropical Form */
@media (max-width: 768px) {
    .tropical-contact-container {
        flex-direction: column;
        padding: 40px 20px;
        min-height: 400px;
        overflow: visible;
        position: relative;
    }
    
    .palm-tree {
        position: absolute;
        z-index: 1;
        pointer-events: none;
    }
    
    .left-palm {
        left: -15%;
        bottom: 30%;
        transform: scale(1.8);
    }
    
    .right-palm {
        right: -15%;
        bottom: 25%;
        transform: scale(1.6);
    }
    
    .palm-tree-image {
        width: 180px;
        max-height: none;
    }
    
    .tropical-contact-form {
        padding: 30px 20px;
        margin: 20px 0;
        z-index: 10;
        position: relative;
    }
    
    .tropical-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Styles */
.contact-form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.contact-form-container h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.contact-form-container p {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-contact-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.contact-submit-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.contact-submit-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-submit-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-section .contact-info p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-section .contact-info i {
    color: #3498db;
    margin-right: 10px;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(52, 152, 219, 0.3));
}

/* Social Media Styles */
.social-media {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bdc3c7;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
}

.social-link.facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-link.airbnb:hover {
    background-color: #ff5a5f;
    border-color: #ff5a5f;
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

.social-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.social-link span {
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* POWERED BY LOGOS */
.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.kuan-logo,
.jen-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.jen-logo {
    filter: brightness(0) invert(1);
}

/* WEATHER MODAL FOR MOBILE */
.weather-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.weather-modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.weather-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.weather-modal-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
}

.weather-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #2c3e50;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.weather-modal-close:hover {
    background: #f0f0f0;
}

.weather-modal-body {
    padding: 30px;
}

.weather-modal-body .weather-content {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

/* LARGE, READABLE WEATHER DETAILS IN MODAL */
.weather-modal-body .weather-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    font-size: 18px;
    margin-top: 20px;
    color: #2c3e50;
    padding: 0;
}

.weather-modal-body .weather-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.weather-modal-body .weather-detail:hover {
    background: #e9ecef;
}

.weather-modal-body .weather-detail i {
    color: #3498db;
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.weather-modal-body .weather-detail span {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    flex: 1;
}

.weather-modal-body .weather-location {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.weather-modal-body .weather-location i {
    color: #3498db;
    font-size: 20px;
}

.weather-modal-body .weather-loading {
    text-align: center;
    padding: 40px 20px;
    font-size: 18px;
    color: #7f8c8d;
}

.weather-modal-body .weather-loading i {
    font-size: 32px;
    color: #3498db;
    margin-bottom: 15px;
    display: block;
}

.weather-modal-body .weather-error {
    text-align: center;
    color: #e74c3c;
    font-size: 18px;
    padding: 30px 20px;
}

.weather-modal-body .weather-error i {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

/* HIDE WEATHER MENU ON DESKTOP */
@media (min-width: 769px) {
    #weatherMenuLink {
        display: none !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* SHOW WEATHER MENU ON MOBILE ONLY */
    #weatherMenuLink {
        display: flex !important;
        align-items: center;
        gap: 6px;
    }
    
    #weatherMenuLink i {
        font-size: 16px;
    }
    
    /* TRANSPARENT NAVBAR ON MOBILE */
    .navbar {
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        border: none !important;
        outline: none !important;
        animation: none;
    }
    
    .navbar::before,
    .navbar::after {
        display: none !important;
    }
    
    /* LOGO FADE ANIMATION ON MOBILE */
    .nav-logo {
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }
    
    .nav-logo.hidden {
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }
    
    .nav-logo.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
    
    /* INITIALLY HIDE LOGO ON HERO SECTION */
    .nav-logo-img {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    
    /* START WITH LOGO HIDDEN ON MOBILE ONLY */
    .nav-logo.hidden {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    /* BURGER MENU COLOR - WHITE IN HERO, DARK WHEN SCROLLED */
    .nav-toggle .bar {
        background: #2c3e50;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        transition: background 0.3s ease, box-shadow 0.3s ease;
    }
    
    /* WHITE BURGER MENU IN HERO SECTION */
    .nav-toggle.in-hero .bar {
        background: #ffffff;
        box-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
    }
    
    /* ADJUST NAV CONTAINER PADDING FOR MOBILE */
    .nav-container {
        padding: 0 15px;
        background: transparent;
        box-shadow: none;
        border: none;
        outline: none;
    }
    
    .nav-container::before,
    .nav-container::after {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 9999;
        overflow: hidden;
    }

    .nav-menu.active {
        left: 0;
        animation: bubbleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    /* Backdrop overlay for mobile menu */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        background: rgba(0, 0, 0, 0.1);
        z-index: -1;
        backdrop-filter: blur(2px);
    }

    .nav-menu:not(.active) {
        animation: bubbleOut 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    /* Bubble Effect Animations - From Right */
    @keyframes bubbleIn {
        0% {
            transform: translateX(100%) scale(0.3) rotate(10deg);
            opacity: 0;
            border-radius: 50%;
        }
        50% {
            transform: translateX(-5%) scale(1.1) rotate(-5deg);
            opacity: 0.8;
            border-radius: 30%;
        }
        100% {
            transform: translateX(0) scale(1) rotate(0deg);
            opacity: 1;
            border-radius: 0%;
        }
    }

    @keyframes bubbleOut {
        0% {
            transform: translateX(0) scale(1) rotate(0deg);
            opacity: 1;
            border-radius: 0%;
        }
        50% {
            transform: translateX(5%) scale(1.1) rotate(5deg);
            opacity: 0.8;
            border-radius: 30%;
        }
        100% {
            transform: translateX(100%) scale(0.3) rotate(-10deg);
            opacity: 0;
            border-radius: 50%;
        }
    }

    /* Individual menu item animations - From Right */
    .nav-menu.active .nav-link {
        animation: slideInBubble 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        opacity: 0;
        transform: translateX(50px) scale(0.8);
    }

    .nav-menu.active .nav-link:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active .nav-link:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu.active .nav-link:nth-child(6) { animation-delay: 0.6s; }

    @keyframes slideInBubble {
        0% {
            opacity: 0;
            transform: translateX(50px) scale(0.8);
        }
        50% {
            opacity: 0.7;
            transform: translateX(-5px) scale(1.05);
        }
        100% {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Enhanced burger menu hover effects */
    .nav-toggle:hover .bar {
        transform: scaleY(1.2);
        transition: all 0.2s ease;
    }

    .nav-toggle:hover .bar:nth-child(1) {
        transform: translateY(-2px);
    }

    .nav-toggle:hover .bar:nth-child(3) {
        transform: translateY(2px);
    }

    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 90px 20px 40px;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
        overflow: hidden;
    }
    
    .hero::before {
        filter: blur(4px) brightness(0.4); /* Less blur on mobile for better performance */
        opacity: 0.7;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 30px;
        padding: 20px;
        z-index: 3;
    }

    .hero h1 {
        font-size: 2.5rem;
        padding: 0 60px;
    }
    
    /* HIDE WEATHER WIDGET ON MOBILE - ACCESSIBLE VIA MENU ONLY */
    .floating-weather-widget {
        display: none !important;
    }
    
    .weather-header {
        margin-bottom: 4px;
        gap: 4px;
    }
    
    .weather-header i {
        font-size: 10px;
    }
    
    .weather-compact {
        font-size: 0.7rem;
        gap: 2px;
    }
    
    .weather-compact-main {
        font-size: 0.75rem;
        gap: 3px;
    }
    
    .weather-temp-compact {
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .weather-icon-compact {
        font-size: 14px !important;
        width: 16px;
        height: 16px;
    }
    
    .weather-location-compact {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .weather-location {
        font-size: 0.6rem;
        margin-top: 2px;
        line-height: 1.2;
    }

    .hero-buttons {
        justify-content: center;
    }

    .explore-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .find-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .find-section h2,
    .explore-section h2,
    .about-text h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    /* Footer Mobile Styles */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        text-align: center;
    }

    .social-media {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero {
        padding: 80px 15px 30px;
        min-height: 100vh;
        min-height: 100dvh;
        min-height: -webkit-fill-available; /* iOS Safari */
    }
    
    .hero-content {
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* HIDE WEATHER WIDGET ON SMALL MOBILE - ACCESSIBLE VIA MENU ONLY */
    .floating-weather-widget {
        display: none !important;
    }
    
    .live-sun-moon-widget {
        left: 5px;
        width: 60px;
        height: 60px;
        max-width: calc(100vw - 10px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .social-link {
        padding: 10px 15px;
        font-size: 14px;
    }

    .social-link span {
        display: none;
    }

    .social-link i {
        font-size: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    height: 100%;
    height: -webkit-fill-available; /* iOS Safari fix */
}

/* iOS Safari viewport fix */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    @media (max-width: 768px) {
        .hero {
            min-height: -webkit-fill-available;
        }
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.find-card,
.explore-text,
.about-text {
    animation: fadeInUp 0.6s ease-out;
}

/* Live Sun/Moon Widget Styles */
.live-sun-moon-widget {
    position: fixed;
    top: 80px;
    left: 20px;
    width: 80px;
    height: 80px;
    max-width: calc(100vw - 40px);
    z-index: 1001;
    cursor: move;
    user-select: none;
    will-change: transform;
    transform: translateZ(0);
    transition: none;
    box-sizing: border-box;
}

.sun-moon-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sun-moon-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.sun-moon-icon i {
    font-size: 24px;
    transition: all 0.5s ease;
}

#sunIcon {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: sunRotate 20s linear infinite;
}

#moonIcon {
    color: #c0c0c0;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
    animation: moonGlow 3s ease-in-out infinite alternate;
}

.time-display {
    font-size: 10px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* Animations */
@keyframes sunRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes moonGlow {
    from { 
        text-shadow: 0 0 5px rgba(192, 192, 192, 0.3);
        transform: scale(1);
    }
    to { 
        text-shadow: 0 0 15px rgba(192, 192, 192, 0.8);
        transform: scale(1.05);
    }
}

/* Day/Night transitions */
.live-sun-moon-widget.day {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.live-sun-moon-widget.night {
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .live-sun-moon-widget {
        top: 80px;
        left: 10px;
        width: 70px;
        height: 70px;
        max-width: calc(100vw - 20px);
        box-sizing: border-box;
    }
    
    .sun-moon-icon {
        width: 45px;
        height: 45px;
    }
    
    .sun-moon-icon i {
        font-size: 20px;
    }
    
    .time-display {
        font-size: 9px;
        padding: 1px 4px;
    }
    
}

/* Floating Weather Widget Styles */
.floating-weather-widget {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 280px;
    max-width: calc(100vw - 40px);
    z-index: 100;
    cursor: move;
    transition: none;
    user-select: none;
    will-change: transform;
    transform: translateZ(0);
    box-sizing: border-box;
}


.weather-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
}

.weather-header:hover {
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 8px;
    padding: 5px;
}

.weather-compact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.weather-compact-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.weather-temp-compact {
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
}

.weather-location-compact {
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 500;
}

.weather-buttons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.weather-toggle-btn {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 12px;
}

.weather-toggle-btn:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

.weather-toggle-btn i {
    transition: transform 0.3s ease;
}

.weather-header i {
    font-size: 20px;
    color: #3498db;
}

.weather-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.weather-refresh-btn {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 14px;
}

.weather-refresh-btn:hover {
    background-color: rgba(52, 152, 219, 0.1);
    transform: rotate(180deg);
}

.weather-refresh-btn:active {
    transform: rotate(360deg);
}

.weather-content {
    text-align: center;
}

.weather-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #7f8c8d;
    font-size: 14px;
}

.weather-loading i {
    font-size: 16px;
}

    .weather-main {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 15px;
        padding: 0 20px;
    }

.weather-temp {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    flex: 1;
    margin: 0 10px;
}

.weather-icon {
    font-size: 40px;
    color: #3498db;
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 12px;
    margin-top: 10px;
    color: #7f8c8d;
}

.weather-detail {
    display: flex;
    align-items: center;
    gap: 5px;
}

.weather-detail i {
    color: #3498db;
    font-size: 12px;
}

.weather-location {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

.weather-error {
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
    padding: 10px;
}

/* Hero Mobile Styles */
@media (max-width: 768px) {
    .hero-content {
        padding: 30px 20px;
        margin-right: 0;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 900;
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 20px;
        font-weight: 600;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
        letter-spacing: 0.5px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
        font-weight: 700;
    }
}

/* Contact Form Mobile Styles */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-container {
        padding: 20px;
        margin-top: 15px;
    }
    
    .contact-form-container h3 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-contact-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
    }
}

/* Floating Weather Widget Mobile Styles */
@media (max-width: 768px) {
    .floating-weather-widget {
        top: 80px;
        right: 10px;
        width: 140px;
        max-width: calc(100vw - 20px);
        padding: 8px;
        font-size: 10px;
        z-index: 100;
        max-height: none;
        box-sizing: border-box;
    }
    
    .live-sun-moon-widget {
        left: 10px;
        max-width: calc(100vw - 20px);
    }

    .weather-header {
        margin-bottom: 6px;
        padding: 3px;
    }

    .weather-compact {
        gap: 3px;
    }

    .weather-compact-main {
        gap: 5px;
    }

    .weather-temp-compact {
        font-size: 12px;
    }

    .weather-location-compact {
        font-size: 8px;
    }

    .weather-header i {
        font-size: 8px;
    }

    .weather-refresh-btn {
        font-size: 8px;
        padding: 1px;
    }

    .weather-toggle-btn {
        font-size: 8px;
        padding: 1px;
    }

    .weather-temp {
        font-size: 16px;
    }

    .weather-icon {
        font-size: 18px;
    }

    .weather-details {
        grid-template-columns: 1fr;
        gap: 3px;
        font-size: 8px;
        margin-bottom: 5px;
    }

    .weather-detail {
        font-size: 8px;
        padding: 1px 0;
    }

    .weather-detail i {
        font-size: 8px;
    }

    .weather-location {
        font-size: 8px;
        margin-top: 2px;
        margin-bottom: 3px;
    }

    .weather-loading {
        font-size: 7px;
    }

    .weather-loading i {
        font-size: 8px;
    }

    .weather-error {
        font-size: 7px;
        padding: 3px;
    }

    .weather-content {
        max-height: none;
        overflow: visible;
        padding: 5px 8px 8px 15px;
    }

    .weather-main {
        margin-bottom: 8px;
        padding: 0 15px 0 20px;
        gap: 8px;
    }
}

/* Weather Background Animations */
.weather-widget-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.weather-widget-wind {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.weather-widget-sun {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Rain Droplets Animation */
.rain-drop {
    position: absolute;
    width: 2px;
    height: 15px;
    background: linear-gradient(to bottom, rgba(52, 152, 219, 0.8), rgba(52, 152, 219, 0.3));
    border-radius: 0 0 2px 2px;
    animation: rainFall linear infinite;
}

@keyframes rainFall {
    0% {
        transform: translateY(-20px);
        opacity: 1;
    }
    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* Wind Animation */
.wind-particle {
    position: absolute;
    width: 3px;
    height: 1px;
    background: rgba(52, 152, 219, 0.6);
    border-radius: 2px;
    animation: windBlow linear infinite;
}

@keyframes windBlow {
    0% {
        transform: translateX(-20px) translateY(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(120px) translateY(-10px);
        opacity: 0;
    }
}

/* Hot Sun Animation */
.sun-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    animation: sunPulse 2s ease-in-out infinite;
}

.sun-ray {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255, 193, 7, 0.8), rgba(255, 193, 7, 0.3));
    border-radius: 1px;
    transform-origin: bottom center;
}

.sun-ray:nth-child(1) { transform: rotate(0deg) translateY(-30px); }
.sun-ray:nth-child(2) { transform: rotate(45deg) translateY(-30px); }
.sun-ray:nth-child(3) { transform: rotate(90deg) translateY(-30px); }
.sun-ray:nth-child(4) { transform: rotate(135deg) translateY(-30px); }
.sun-ray:nth-child(5) { transform: rotate(180deg) translateY(-30px); }
.sun-ray:nth-child(6) { transform: rotate(225deg) translateY(-30px); }
.sun-ray:nth-child(7) { transform: rotate(270deg) translateY(-30px); }
.sun-ray:nth-child(8) { transform: rotate(315deg) translateY(-30px); }

@keyframes sunPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
}

/* Cloudy Animation */
.weather-widget-clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    opacity: 0.7;
    animation: cloudFloat linear infinite;
}

.cloud:before {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
}

.cloud:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
}

/* Different cloud sizes and shapes */
.cloud-small {
    width: 30px;
    height: 20px;
    animation-duration: 20s;
}

.cloud-small:before {
    width: 15px;
    height: 15px;
    top: -8px;
    left: 5px;
}

.cloud-small:after {
    width: 12px;
    height: 12px;
    top: -5px;
    right: 5px;
}

.cloud-medium {
    width: 50px;
    height: 30px;
    animation-duration: 25s;
}

.cloud-medium:before {
    width: 25px;
    height: 25px;
    top: -12px;
    left: 8px;
}

.cloud-medium:after {
    width: 20px;
    height: 20px;
    top: -8px;
    right: 8px;
}

.cloud-large {
    width: 70px;
    height: 40px;
    animation-duration: 30s;
}

.cloud-large:before {
    width: 35px;
    height: 35px;
    top: -18px;
    left: 10px;
}

.cloud-large:after {
    width: 30px;
    height: 30px;
    top: -12px;
    right: 10px;
}

@keyframes cloudFloat {
    0% {
        transform: translateX(-100px) translateY(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(100vw) translateY(-20px);
        opacity: 0;
    }
}

/* Location Map Section */
.location-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.location-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.location-section .section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* Map Container */
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 15px;
}

/* Mapbox Controls */
.map-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.map-control-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-control-btn i {
    color: #333;
    font-size: 16px;
}

/* Mapbox Popup Styling */
.mapbox-popup {
    padding: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mapbox-popup h3 {
    color: #e74c3c;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.mapbox-popup p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.mapbox-popup i {
    color: #e74c3c;
    margin-right: 8px;
}

/* Mapbox Popup Arrow */
.mapboxgl-popup-tip {
    border-top-color: white !important;
}

.mapboxgl-popup-content {
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border: none !important;
    padding: 0 !important;
}

/* Custom Animated Marker */
.custom-marker {
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer;
}

.marker-pin {
    position: relative;
    width: 100%;
    height: 100%;
}

.marker-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
    position: relative;
    z-index: 3;
    animation: markerBounce 2s ease-in-out infinite;
    transform-origin: center bottom;
}

.marker-icon i {
    color: white;
    font-size: 18px;
    transform: rotate(45deg);
    animation: iconPulse 1.5s ease-in-out infinite;
}


/* Marker Animations */
@keyframes markerBounce {
    0%, 100% {
        transform: rotate(-45deg) translateY(0px);
    }
    50% {
        transform: rotate(-45deg) translateY(-8px);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
    }
    50% {
        transform: rotate(45deg) scale(1.1);
    }
}


/* Hover effects */
.custom-marker:hover .marker-icon {
    animation: markerBounce 0.8s ease-in-out infinite;
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
}

/* Custom Map Pin - Hidden to let Google Maps handle positioning */
.map-pin {
    display: none;
}

.pin-icon {
    width: 40px;
    height: 40px;
    background: #e74c3c;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    animation: pinBounce 2s ease-in-out infinite;
}

.pin-icon i {
    color: white;
    font-size: 16px;
    transform: rotate(45deg);
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(231, 76, 60, 0.3);
    border-radius: 50%;
    animation: pinPulse 2s ease-in-out infinite;
}

.pin-label {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    animation: pinLabelFade 2s ease-in-out infinite;
    transform-origin: center bottom;
}

.pin-title {
    font-weight: bold;
    color: #2c3e50;
    font-size: 14px;
    margin-bottom: 2px;
}

.pin-address {
    font-size: 12px;
    color: #6c757d;
}

/* Pin Animations */
@keyframes pinBounce {
    0%, 100% {
        transform: rotate(-45deg) scale(1);
    }
    50% {
        transform: rotate(-45deg) scale(1.1);
    }
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes pinLabelFade {
    0%, 80%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    20%, 60% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Location Input Section */
.location-input-section {
    padding: 30px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.location-input-section h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

.input-subtitle {
    color: #6c757d;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 25px;
}

.location-input-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.location-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    min-width: 300px;
}

.location-input-wrapper:focus-within {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.location-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #2c3e50;
    outline: none;
}

.location-input::placeholder {
    color: #adb5bd;
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.autocomplete-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.autocomplete-item:hover {
    background-color: #f8f9fa;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item i {
    color: #6c757d;
    font-size: 14px;
    width: 16px;
}

.autocomplete-item .item-text {
    flex: 1;
}

.autocomplete-item .item-main {
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.autocomplete-item .item-secondary {
    color: #6c757d;
    font-size: 12px;
    margin-top: 2px;
}

.location-btn {
    padding: 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.location-btn:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.location-btn:active {
    transform: scale(0.95);
}

.directions-btn {
    padding: 15px 25px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.directions-btn:hover:not(:disabled) {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.directions-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.directions-btn i {
    font-size: 14px;
}

/* Directions Result */
.directions-result {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.directions-result h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.directions-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.direction-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.direction-item i {
    color: #3498db;
    font-size: 16px;
    width: 20px;
}

.direction-item span {
    color: #2c3e50;
    font-weight: 500;
}

.directions-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.directions-actions a {
    padding: 10px 20px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.directions-actions a:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.directions-actions a i {
    font-size: 14px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .location-input-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .location-input-wrapper {
        min-width: 100%;
    }
    
    .directions-btn {
        width: 100%;
        justify-content: center;
    }
    
    .directions-info {
        grid-template-columns: 1fr;
    }
    
    .directions-actions {
        flex-direction: column;
    }
    
    .directions-actions a {
        justify-content: center;
    }
}

/* Location Info */
.location-info {
    padding: 30px;
    background: white;
}

.location-details h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.location-details p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.feature-item i {
    color: #3498db;
    font-size: 16px;
    width: 20px;
}

.feature-item span {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

/* Mobile Map Styles */
@media (max-width: 768px) {
    .location-section {
        padding: 60px 0;
    }
    
    .location-section h2 {
        font-size: 2rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .pin-icon {
        width: 35px;
        height: 35px;
    }
    
    .pin-icon i {
        font-size: 14px;
    }
    
    .pin-pulse {
        width: 50px;
        height: 50px;
    }
    
    .pin-label {
        top: -70px;
        padding: 8px 12px;
    }
    
    .pin-title {
        font-size: 12px;
    }
    
    .pin-address {
        font-size: 10px;
    }
    
    .location-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .location-info {
        padding: 20px;
    }
}

/* Explore Section - Gallery */
.explore-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.explore-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.explore-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.explore-section .section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* Gallery Container */
.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #fff;
    z-index: 2;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide:hover .gallery-slide-content {
    transform: translateY(0);
}

.gallery-slide h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-slide p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Navigation Controls */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-nav.prev-btn {
    left: 20px;
}

.gallery-nav.next-btn {
    right: 20px;
}

.gallery-nav i {
    font-size: 1.2rem;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.gallery-nav:hover i {
    color: #3498db;
}

/* Pagination Dots */
.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: #3498db;
    border-color: #3498db;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
}

/* Gallery Info */
.gallery-info {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.gallery-counter {
    display: inline-block;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.gallery-description {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Touch/Swipe Support */
.gallery-container {
    touch-action: pan-y;
    user-select: none;
}

.gallery-slides {
    cursor: grab;
}

.gallery-slides:active {
    cursor: grabbing;
}

/* Loading Animation */
.gallery-slide.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Mobile Gallery Styles */
@media (max-width: 768px) {
    .explore-section {
        padding: 60px 0;
    }
    
    .explore-section h2 {
        font-size: 2rem;
    }
    
    .gallery-wrapper {
        height: 350px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-nav.prev-btn {
        left: 10px;
    }
    
    .gallery-nav.next-btn {
        right: 10px;
    }
    
    .gallery-slide-content {
        padding: 20px;
    }
    
    .gallery-slide h3 {
        font-size: 1.2rem;
    }
    
    .gallery-slide p {
        font-size: 0.9rem;
    }
}
