/* Custom CSS Variables */
:root {
    /* Nature-inspired color palette */
    --primary-green: 76 66% 45%; /* #4A7C47 */
    --soft-blue: 210 45% 75%; /* #8BB6D1 */
    --beige: 35 25% 85%; /* #DDD5C7 */
    --dark-green: 140 35% 25%; /* #2A4A35 */
    --light-green: 90 40% 85%; /* #E0E8D0 */
    --white: 0 0% 100%; /* #FFFFFF */
    --text-dark: 0 0% 20%; /* #333333 */
    --text-light: 0 0% 95%; /* #F2F2F2 */
    --background: 210 11% 98%; /* #F5F7FA */
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --border-radius: 12px;
    --shadow: 0 4px 20px hsla(0, 0%, 0%, 0.1);
    --shadow-hover: 0 8px 30px hsla(0, 0%, 0%, 0.15);
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: hsl(var(--text-dark));
    background-color: hsl(var(--background));
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: #1a2e1a;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* Enhanced text visibility for light backgrounds */
.bg-light .section-title {
    color: #0d1d0d !important;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: none;
    padding: 0;
    border-radius: 0;
    display: block;
    box-shadow: none;
}

.bg-light .section-subtitle {
    color: #1a3d1e !important;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    background: none;
    padding: 0;
    border-radius: 0;
    display: block;
    box-shadow: none;
}

/* Enhanced visibility for location info content */
.bg-light h4,
.bg-light h5,
.bg-light h6 {
    color: #0d1d0d !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bg-light p,
.bg-light .text-muted {
    color: #2c3e30 !important;
    font-weight: 500;
}

.bg-light .location-item,
.bg-light .contact-item {
    color: #1a2e1a;
}

.bg-light strong {
    color: #0d1d0d;
    font-weight: 700;
}

/* Navigation */
.navbar {
    background-color: hsla(var(--white), 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    box-shadow: var(--shadow);
}

.navbar .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--dark-green)) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.navbar-nav .nav-link {
    color: hsl(var(--text-dark)) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: hsl(var(--primary-green)) !important;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: 90%;
    max-width: 500px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--text-light));
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        hsla(var(--dark-green), 0.7) 0%, 
        hsla(var(--primary-green), 0.5) 100%);
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(var(--white));
    text-shadow: 3px 3px 8px hsla(0, 0%, 0%, 0.8), 1px 1px 4px hsla(0, 0%, 0%, 0.9);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: hsl(var(--white));
    text-shadow: 2px 2px 6px hsla(0, 0%, 0%, 0.8), 1px 1px 3px hsla(0, 0%, 0%, 0.9);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: hsl(var(--primary-green));
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: hsl(var(--dark-green));
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
    text-decoration: none;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-success.cta-button {
    background: #28a745;
    border-color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-success.cta-button:hover {
    background: #218838;
    border-color: #1e7e34;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}



/* Mobile responsive styling for CTA buttons */
@media (max-width: 768px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }
    

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    

}

/* About Section */
#about {
    padding: var(--section-padding);
}

.about-content {
    text-align: left;
}

/* Owner's Personal Message */
.owner-message {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid hsl(var(--primary-green));
    border-radius: var(--border-radius);
    padding: 3.5rem 2.5rem;
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.owner-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
}

.owner-message:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 124, 71, 0.25);
    border-color: hsl(var(--dark-green));
}

.owner-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.owner-photo h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.message-content {
    position: relative;
}

.message-content .blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 0;
    position: relative;
}

.message-content .blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    left: -1rem;
    top: -1rem;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.message-content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

.blockquote-footer {
    font-weight: 600;
    color: var(--primary-color);
}

.blockquote-footer cite {
    font-style: normal;
}

/* Mobile responsive styling for owner message */
@media (max-width: 768px) {
    .owner-message {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .owner-img {
        width: 120px;
        height: 120px;
    }
    
    .message-content .blockquote {
        border-left: none;
        border-top: 4px solid var(--primary-color);
        padding-left: 0;
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .message-content .blockquote::before {
        left: 50%;
        transform: translateX(-50%);
        top: -2rem;
    }
    
    .message-content p {
        font-size: 1rem;
    }
}

/* News Section Styling */
.news-section {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(52, 168, 83, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dc143c, #f39c12, #059669, #3b82f6);
    background-size: 400% 100%;
    animation: colorWave 4s ease-in-out infinite;
}

@keyframes colorWave {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.news-header {
    text-align: center;
    position: relative;
}

.news-title {
    color: var(--dark-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.news-title::after {
    content: '📰';
    position: absolute;
    right: -40px;
    top: -5px;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.png-flag-image {
    height: 2.5rem;
    width: auto;
    margin-right: 1rem;
    display: inline-block;
    vertical-align: middle;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: flagWave 3s ease-in-out infinite;
}

@keyframes flagWave {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-5deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1.1); }
    75% { transform: rotate(5deg) scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.news-subtitle {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.news-sources {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.news-source-tag {
    background: linear-gradient(135deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.news-source-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(52, 168, 83, 0.3);
    color: white;
    text-decoration: none;
}

.news-source-tag:focus {
    color: white;
    text-decoration: none;
    outline: none;
    box-shadow: 0 0 0 0.2rem hsla(var(--primary-green), 0.25);
}



.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.news-item {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 20px;
    padding: 0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06), 0 3px 10px rgba(0, 0, 0, 0.04);
}

.news-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(52, 168, 83, 0.2);
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(52, 168, 83, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-item:hover::before {
    opacity: 1;
}

.news-image {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0 0;
}

.news-logo {
    width: 85%;
    max-width: 160px;
    height: auto;
    max-height: 70px;
    opacity: 0.98;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
    object-fit: contain;
    transition: transform 0.3s ease;
}

.news-item:hover .news-logo {
    transform: scale(1.05);
}

.news-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}

.news-content {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.news-headline {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.news-headline a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: block;
    letter-spacing: -0.02em;
}

.news-headline a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f1f5f9;
}

.news-date {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    font-weight: 500;
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
}

.news-date::before {
    content: '📅';
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.news-trending {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    animation: gentleGlow 3s ease-in-out infinite alternate;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes gentleGlow {
    from { 
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        transform: scale(1);
    }
    to { 
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
        transform: scale(1.02);
    }
}

.news-loading {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px dashed #dee2e6;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.news-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 3px solid #f1f5f9;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
    border-radius: 0 0 24px 24px;
    margin: 3rem -3rem -3rem -3rem;
    padding: 2rem 3rem;
}

.news-footer::before {
    content: '✨';
    position: absolute;
    left: 50%;
    top: -12px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 0.5rem 1.5rem;
    color: var(--primary-color);
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    font-size: 1.2rem;
    animation: subtleTwinkle 3s ease-in-out infinite;
}

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

.news-footer small {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
}

.news-refresh-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 1rem;
}

.news-refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 168, 83, 0.3);
}

.news-refresh-btn:active {
    transform: translateY(0);
}

.news-floating-refresh {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #34a853, #2d7a3a);
    border: 3px solid #ffffff;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.5), 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.news-floating-refresh:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.6), 0 4px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #2d7a3a, #1e5228);
}

.news-floating-refresh.spinning i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(52, 168, 83, 0.5), 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(52, 168, 83, 0.4);
    }
    70% {
        box-shadow: 0 6px 20px rgba(52, 168, 83, 0.5), 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(52, 168, 83, 0);
    }
    100% {
        box-shadow: 0 6px 20px rgba(52, 168, 83, 0.5), 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(52, 168, 83, 0);
    }
}

/* Stagger animation for news items */
.news-item {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive news section */
@media (max-width: 768px) {
    .news-section {
        padding: 1.5rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .news-title {
        font-size: 1.5rem;
    }
    
    .news-title::after {
        right: -30px;
        font-size: 1.2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .news-item {
        min-height: auto;
    }
    
    .news-image {
        height: 120px;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-sources {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .news-source-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
    }
    
    .news-floating-refresh {
        width: 50px;
        height: 50px;
        top: 10px;
        right: 10px;
        font-size: 1.1rem;
        border-width: 2px;
    }
    
    .news-headline a {
        font-size: 1rem;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.highlight-item {
    text-align: center;
    padding: 2rem 1rem;
}

.highlight-item i {
    font-size: 3rem;
    display: block;
}

.highlight-item h5 {
    color: hsl(var(--dark-green));
    margin-bottom: 1rem;
}

/* Services Section */
.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid hsl(var(--primary-green));
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(74, 124, 71, 0.25);
    border-color: hsl(var(--dark-green));
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    color: hsl(var(--primary-green));
}

.service-card h4 {
    color: hsl(var(--dark-green));
    margin-bottom: 1rem;
}

.service-card p {
    color: hsl(var(--text-dark));
    line-height: 1.6;
}

/* Service Carousel Styling */
.service-carousel {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-image {
    height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-carousel:hover .carousel-control-prev,
.service-carousel:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: hsla(var(--dark-green), 0.8);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

/* Gallery Section */
.gallery-grid {
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 2px solid hsl(var(--primary-green));
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(74, 124, 71, 0.25);
    border-color: hsl(var(--dark-green));
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* Booking Section */
.booking-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid hsl(var(--primary-green));
    border-radius: var(--border-radius);
    padding: 3.5rem;
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
}

.booking-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 124, 71, 0.25);
    border-color: hsl(var(--dark-green));
}

.booking-form .form-control {
    border: 2px solid hsl(var(--beige));
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus {
    border-color: hsl(var(--primary-green));
    box-shadow: 0 0 0 0.2rem hsla(var(--primary-green), 0.25);
}

.booking-form .form-label {
    font-weight: 600;
    color: hsl(var(--dark-green));
    margin-bottom: 0.5rem;
}

.booking-info-banner {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    border: 1px solid hsl(var(--primary-green));
    border-radius: 8px;
    padding: 1rem;
}

.booking-terms {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid hsl(var(--primary-green));
}

.form-check-input:checked {
    background-color: hsl(var(--primary-green));
    border-color: hsl(var(--primary-green));
}

.booking-submit-btn {
    background: linear-gradient(135deg, hsl(var(--primary-green)) 0%, hsl(var(--dark-green)) 100%);
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.3);
}

.warning-feedback {
    color: #ffc107 !important;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-control.is-warning {
    border-color: #ffc107;
}

.form-control.is-warning:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

#char-count {
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Testimonials Section */
.testimonials-slider {
    position: relative;
    min-height: 300px;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid hsl(var(--primary-green));
    border-radius: var(--border-radius);
    padding: 3.5rem;
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 124, 71, 0.25);
    border-color: hsl(var(--dark-green));
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: hsl(var(--text-dark));
    margin: 2rem 0;
    line-height: 1.8;
}

.testimonial-author strong {
    color: hsl(var(--dark-green));
    font-size: 1.1rem;
}

.testimonial-author small {
    color: hsl(var(--primary-green));
    display: block;
    margin-top: 0.5rem;
}

/* Location Section */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid hsl(var(--primary-green));
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.15);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.location-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
}

.location-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 124, 71, 0.25);
    border-color: hsl(var(--dark-green));
}

.location-item {
    display: flex;
    align-items: flex-start;
}

.location-item i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Contact Section */
.contact-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid hsl(var(--primary-green));
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.15);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info h4 {
    color: #0d1d0d !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-info h5 {
    color: #0d1d0d !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 124, 71, 0.25);
    border-color: hsl(var(--dark-green));
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    color: #1a2e1a;
}

.contact-item i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    color: hsl(var(--primary-green)) !important;
}

.contact-item strong {
    color: #0d1d0d !important;
    font-weight: 700;
}

.contact-item a {
    color: hsl(var(--primary-green));
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: hsl(var(--dark-green));
}

/* Enhanced Facebook Messenger Button */
.contact-item .btn-primary {
    background: linear-gradient(135deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
    border: 2px solid hsl(var(--primary-green));
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    text-transform: none;
    box-shadow: 0 4px 12px rgba(74, 124, 71, 0.3);
    transition: all 0.3s ease;
    color: white !important;
}

.contact-item .btn-primary:hover {
    background: linear-gradient(135deg, hsl(var(--dark-green)), #2d4a2f);
    border-color: hsl(var(--dark-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 124, 71, 0.4);
}

.contact-item .btn-primary i {
    color: white !important;
}

.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid hsl(var(--primary-green));
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-form-container h4 {
    color: #0d1d0d !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    color: #1a2e1a !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 124, 71, 0.25);
    border-color: hsl(var(--dark-green));
}

.contact-form .form-control {
    border: 2px solid hsl(var(--beige));
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: hsl(var(--primary-green));
    box-shadow: 0 0 0 0.2rem hsla(var(--primary-green), 0.25);
}

.social-links .social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: hsl(var(--primary-green));
    color: hsl(var(--white));
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    background: hsl(var(--dark-green));
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: hsl(var(--dark-green)) !important;
    color: hsl(var(--text-light));
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.footer-logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: hsl(var(--text-light));
    display: block;
    line-height: 1.2;
}

.footer-subtitle {
    font-size: 0.95rem;
    color: hsl(var(--text-light));
    margin: 0.25rem 0;
    line-height: 1.3;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.footer-link {
    color: hsl(var(--text-light));
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsl(var(--soft-blue));
}

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

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

/* Responsive Design */

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .gallery-item img {
        height: 300px;
    }
}

/* Medium devices (tablets, 992px and up) */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .gallery-item img {
        height: 280px;
    }
    
    .service-card {
        padding: 1.8rem;
    }
}

/* Small devices (landscape tablets, 768px and up) */
@media (max-width: 991.98px) and (min-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-logo {
        height: 40px;
        width: 40px;
    }
    
    .gallery-item img {
        height: 220px;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .testimonial-content {
        padding: 2.5rem 2rem;
    }
    
    .booking-form-container,
    .contact-form-container {
        padding: 2.5rem 2rem;
    }
}

/* Enhanced About Section Typography */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.about-main-title {
    font-family: var(--font-heading);
    color: hsl(var(--text-dark));
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, hsl(var(--primary-green)), transparent);
}

.decoration-icon {
    color: hsl(var(--primary-green));
    font-size: 1.5rem;
}

.about-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.about-intro-card,
.about-vision-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(74, 124, 71, 0.1);
    border: 1px solid hsl(var(--beige));
    transition: all 0.3s ease;
}

.about-intro-card:hover,
.about-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.15);
}

.intro-icon i,
.vision-icon i {
    font-size: 2.5rem;
    color: hsl(var(--primary-green));
}

.intro-title,
.vision-title {
    color: hsl(var(--dark-green));
    font-family: var(--font-heading);
    font-weight: 600;
}

.intro-text,
.vision-text {
    color: hsl(var(--text-dark));
    line-height: 1.7;
}

.mission-statement-card {
    background: linear-gradient(135deg, hsl(var(--primary-green)) 0%, hsl(var(--dark-green)) 100%);
    border-radius: var(--border-radius);
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-statement-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.mission-title {
    color: white;
    font-family: var(--font-heading);
}

.mission-quote {
    position: relative;
    z-index: 2;
}

.quote-text {
    color: white;
    line-height: 1.6;
    font-family: var(--font-body);
    margin-bottom: 1rem;
}

.quote-decoration {
    text-align: center;
    margin-top: 1rem;
}

.quote-icon {
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
}

/* Owner Message Section */
.owner-message-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(74, 124, 71, 0.12);
    border: 2px solid hsl(var(--beige));
}

.owner-section-title {
    color: hsl(var(--dark-green));
    font-family: var(--font-heading);
}

.owner-section-subtitle {
    font-style: italic;
}

.owner-photo-container {
    position: relative;
    display: inline-block;
}

.owner-portrait {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid hsl(var(--primary-green));
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.2);
}

.photo-overlay {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: hsl(var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(74, 124, 71, 0.3);
}

.owner-name {
    color: hsl(var(--dark-green));
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.owner-title {
    color: hsl(var(--primary-green));
    font-weight: 600;
    margin-bottom: 1rem;
}

.owner-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credential-badge {
    background: hsl(var(--beige));
    color: hsl(var(--text-dark));
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.personal-message {
    position: relative;
}

.message-quote {
    position: relative;
    padding: 1.5rem;
    background: hsl(var(--light-beige));
    border-radius: var(--border-radius);
    border-left: 4px solid hsl(var(--primary-green));
}

.quote-mark-start,
.quote-mark-end {
    position: absolute;
    color: hsl(var(--primary-green));
    font-size: 2rem;
    opacity: 0.3;
}

.quote-mark-start {
    top: 10px;
    left: 15px;
}

.quote-mark-end {
    bottom: 10px;
    right: 15px;
}

.message-paragraphs {
    margin: 0 2rem;
}

.message-paragraph {
    color: hsl(var(--text-dark));
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.message-signature {
    text-align: right;
    margin-top: 2rem;
    position: relative;
}

.signature-line {
    width: 100px;
    height: 2px;
    background: hsl(var(--primary-green));
    margin-left: auto;
    margin-bottom: 1rem;
}

.signature-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: hsl(var(--dark-green));
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.signature-title {
    color: hsl(var(--primary-green));
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* About Section Responsive Styles */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .about-intro-card,
    .about-vision-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .mission-statement-card {
        padding: 2rem;
    }
    
    .owner-message-card {
        padding: 2rem;
    }
    
    .owner-portrait {
        width: 120px;
        height: 120px;
    }
    
    .message-paragraphs {
        margin: 0 1rem;
    }
    
    .owner-credentials {
        align-items: center;
    }
}

/* Extra small devices (portrait tablets and large phones, 576px and up) */
@media (max-width: 767.98px) {
    .hero-section {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 1rem;
    }
    
    /* Navigation adjustments */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-logo {
        height: 35px;
        width: 35px;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.3rem 0;
        padding: 0.5rem 1rem;
        display: block;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    /* Content adjustments */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .col, .col-md-4, .col-md-6, .col-lg-4, .col-lg-6 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* Service cards */
    .service-card {
        margin-bottom: 1.5rem;
        padding: 1.8rem 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    /* Service carousel adjustments for mobile */
    .service-image {
        height: 150px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        opacity: 0.6;
        width: 15%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }
    
    /* Gallery adjustments */
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-overlay h5 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    /* Form containers */
    .booking-form-container,
    .contact-form-container {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    /* Form elements */
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Contact and location info */
    .contact-info,
    .location-info {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    /* Flash messages */
    .flash-messages {
        top: 70px;
        width: 95%;
        max-width: none;
    }
    
    /* Footer adjustments */
    .footer {
        text-align: center;
    }
    
    .footer .col-md-4 {
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        height: 45px;
        width: 45px;
    }
}

/* Small devices (landscape phones, 576px and down) */
@media (max-width: 575.98px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    /* Reduce spacing */
    :root {
        --section-padding: 3rem 0;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Forms and cards */
    .booking-form-container,
    .contact-form-container,
    .testimonial-content,
    .service-card,
    .location-info,
    .contact-info {
        padding: 1.5rem 1rem;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .service-image {
        height: 220px;
        object-fit: cover;
        object-position: center;
    }
    
    /* Typography adjustments */
    .highlight-item {
        padding: 1.5rem 0.5rem;
    }
    
    .highlight-item i {
        font-size: 2.5rem;
    }
    
    .service-icon {
        font-size: 2.2rem;
    }
    
    /* Contact items */
    .contact-item,
    .location-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .contact-item i,
    .location-item i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    /* Social links */
    .social-links .social-link {
        width: 35px;
        height: 35px;
        line-height: 35px;
        margin: 0.25rem;
    }
    
    /* Testimonials */
    .testimonial-text {
        font-size: 1rem;
        margin: 1.5rem 0;
    }
    
    .testimonial-stars {
        font-size: 1rem;
    }
}

/* Gallery Lightbox Modal */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-info {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.lightbox-info h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: hsl(var(--beige));
}

.lightbox-info p {
    margin: 0;
    opacity: 0.9;
}

/* Gallery Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid hsl(var(--primary-green));
    color: hsl(var(--primary-green));
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: hsl(var(--primary-green));
    color: white;
    transform: translateY(-2px);
}

/* Gallery Loading Animation */
.gallery-item.loading {
    opacity: 0.5;
}

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

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

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.3);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Gallery Item Icons */
.gallery-item::before {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Video Gallery Items */
.video-item {
    position: relative;
}

.video-item::before {
    display: none;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-item:hover .video-play-button {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.video-play-button i {
    margin-left: 3px; /* Slight offset for play icon visual center */
}

/* Video Lightbox */
.lightbox-video {
    width: 80vw;
    height: 45vw;
    max-width: 1200px;
    max-height: 675px;
    min-width: 600px;
    min-height: 338px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-loading {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.video-loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

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

/* Announcements & Events Section */
.announcement-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid hsl(var(--primary-green));
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.15);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
}

.announcement-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 40px rgba(74, 124, 71, 0.25);
    border-color: hsl(var(--dark-green));
}

.announcement-card.featured {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}

.announcement-card.featured::before {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.announcement-badge {
    position: absolute;
    top: 12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.announcement-new-indicator {
    position: absolute;
    top: 12px;
    left: 20px;
    background: #ff6b35;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.announcement-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.announcement-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.announcement-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.announcement-meta .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

/* Upcoming Events */
.upcoming-events {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border: 2px solid #3498db;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
    height: fit-content;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.upcoming-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.upcoming-events:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.25);
    border-color: #2980b9;
}

.events-title {
    color: #2980b9;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #3498db;
    position: relative;
}

.events-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30%;
    height: 3px;
    background: #e74c3c;
}

.event-item {
    display: flex;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e3f2fd;
    transition: all 0.3s ease;
    border-radius: 8px;
}

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

.event-item:hover {
    background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
    margin: 0 -1.5rem;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.15);
}

.event-date {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 12px;
    padding: 0.8rem 0.6rem;
    text-align: center;
    margin-right: 1.2rem;
    min-width: 70px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
}

.event-item:hover .event-date {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.event-details h6 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.event-details p {
    color: #34495e;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Quick Updates */
.quick-update {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid hsl(var(--primary-green));
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.quick-update::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
}

.quick-update:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(74, 124, 71, 0.25);
    border-color: hsl(var(--dark-green));
}

.update-icon {
    background: linear-gradient(135deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(74, 124, 71, 0.4);
    transition: all 0.3s ease;
}

.quick-update:hover .update-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(74, 124, 71, 0.5);
}

.update-content h6 {
    color: hsl(var(--dark-green));
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.update-content p {
    color: hsl(var(--text-dark));
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Quick Updates - Special Card Types */
.quick-update:nth-child(1) {
    border-color: #f39c12;
}

.quick-update:nth-child(1) .update-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.quick-update:nth-child(1)::before {
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.quick-update:nth-child(2) {
    border-color: #e74c3c;
}

.quick-update:nth-child(2) .update-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.quick-update:nth-child(2)::before {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.quick-update:nth-child(3) {
    border-color: #3498db;
}

.quick-update:nth-child(3) .update-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.quick-update:nth-child(3)::before {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

/* Announcements Responsive */
@media (max-width: 992px) {
    .announcement-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .quick-update {
        margin-bottom: 1.5rem;
    }
    
    .upcoming-events {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .announcement-card {
        padding: 1rem;
    }
    
    .announcement-badge,
    .announcement-new-indicator {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
        margin-right: 0.5rem;
    }
    
    .announcement-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch !important;
    }
    
    .announcement-meta > div:last-child {
        display: flex;
        gap: 0.5rem;
    }
    
    .announcement-meta .btn {
        flex: 1;
        text-align: center;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .quick-update {
        margin-bottom: 1rem;
    }
}

/* Video Lightbox Responsive */
@media (max-width: 768px) {
    .lightbox-video {
        width: 95vw;
        height: 53.4vw;
        min-width: 320px;
        min-height: 180px;
        max-width: none;
        max-height: none;
    }
    
    .lightbox-info {
        bottom: -60px;
        padding: 0.75rem;
    }
    
    .lightbox-close {
        top: -35px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lightbox-video {
        width: 98vw;
        height: 55.1vw;
        min-width: 280px;
        min-height: 157px;
    }
}

/* Enhanced Gallery Overlay */
.gallery-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.gallery-overlay h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Extra extra small devices (small phones, 375px and down) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-logo {
        height: 30px;
        width: 30px;
    }
    
    .booking-form-container,
    .contact-form-container,
    .testimonial-content,
    .service-card,
    .location-info,
    .contact-info {
        padding: 1.25rem 0.75rem;
    }
    
    .gallery-item img {
        height: 160px;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gallery-item img,
    .navbar-logo,
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch-specific enhancements */
@media (hover: none) and (pointer: coarse) {
    /* Mobile touch targets - minimum 44px */
    .btn,
    .nav-link,
    .navbar-toggler,
    .social-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .gallery-item:hover,
    .btn:hover {
        transform: none;
    }
    
    .gallery-item:hover img {
        transform: none;
    }
    
    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }
    
    /* Improve tap targets */
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
    }
    
    /* Better form interaction */
    .form-control {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
    }
    
    /* Remove tap highlight */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }
    
    /* Better button spacing */
    .btn {
        margin: 0.5rem 0;
    }
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix viewport height on iOS */
    .hero-section {
        height: 100vh;
        height: -webkit-fill-available;
    }
    
    /* Prevent zoom on form focus */
    input[type="text"],
    input[type="email"],
    input[type="date"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px;
    }
    
    /* Smooth scrolling for iOS */
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Android specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    /* Android Chrome specific styles */
    .form-control {
        background-clip: padding-box;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .gallery-item:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
}

/* Responsive color adjustments - keeping original light theme */
@media (max-width: 767.98px) {
    /* Ensure good contrast on mobile devices */
    .section-title {
        color: hsl(var(--dark-green));
    }
    
    .service-card,
    .booking-form-container,
    .contact-form-container,
    .testimonial-content,
    .location-info,
    .contact-info {
        background: hsl(var(--white));
        border-color: hsl(var(--beige));
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .flash-messages {
        display: none !important;
    }
    
    .hero-section {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-background,
    .hero-overlay {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 18pt;
        page-break-after: avoid;
    }
    
    .service-card,
    .gallery-item {
        page-break-inside: avoid;
    }
}

/* Network-aware optimizations */
@media (prefers-reduced-data: reduce) {
    /* Reduce animations and effects for slower connections */
    .gallery-item img {
        transition: none;
    }
    
    .hero-background {
        background-image: none;
        background-color: hsl(var(--primary-green));
    }
    
    /* Disable complex shadows */
    .service-card,
    .booking-form-container,
    .contact-form-container {
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
}

/* Custom Bootstrap Button Styles */
.btn-primary {
    background-color: hsl(var(--primary-green));
    border-color: hsl(var(--primary-green));
    color: hsl(var(--white));
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: hsl(var(--dark-green));
    border-color: hsl(var(--dark-green));
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    border-color: hsl(var(--primary-green));
    color: hsl(var(--primary-green));
}

.btn-outline-primary:hover {
    background-color: hsl(var(--primary-green));
    border-color: hsl(var(--primary-green));
}

/* Background Sections */
.bg-light {
    background-color: #f0f8f0 !important;
    background-image: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
}

/* Utility Classes */
.text-primary {
    color: hsl(var(--primary-green)) !important;
}

.border-primary {
    border-color: hsl(var(--primary-green)) !important;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem hsla(var(--primary-green), 0.25);
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* OpenStreetMap Custom Styles */
.custom-resort-marker .marker-pin {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, hsl(var(--primary-green)), hsl(var(--dark-green)));
    border: 3px solid hsl(var(--white));
    border-radius: 50% 50% 50% 0;
    position: relative;
    transform: rotate(-45deg);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-resort-marker .marker-pin i {
    color: hsl(var(--white));
    font-size: 14px;
    transform: rotate(45deg);
    position: absolute;
}

.custom-landmark-marker .landmark-pin {
    width: 20px;
    height: 20px;
    background: hsl(var(--accent-brown));
    border: 2px solid hsl(var(--white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.custom-landmark-marker .landmark-pin i {
    color: hsl(var(--white));
    font-size: 10px;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.map-popup {
    font-family: 'Poppins', sans-serif;
    min-width: 200px;
}

.map-popup h6 {
    color: hsl(var(--primary-green));
    margin-bottom: 8px;
    font-weight: 600;
}

.map-popup p {
    color: hsl(var(--text-gray));
    font-size: 13px;
    line-height: 1.4;
}

.map-popup .btn {
    font-size: 12px;
    padding: 6px 12px;
}

.leaflet-popup-tip {
    background: hsl(var(--white));
}

/* Map container styling */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

#resort-map {
    border-radius: 12px;
}

/* Leaflet control styling */
.leaflet-control-zoom {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.leaflet-control-zoom a {
    background-color: hsl(var(--white));
    border: none;
    color: hsl(var(--primary-green));
    font-weight: bold;
    border-radius: 6px;
    margin: 2px;
}

.leaflet-control-zoom a:hover {
    background-color: hsl(var(--light-green));
    color: hsl(var(--dark-green));
}

/* Pricing Section Styling */
.pricing-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    margin-top: 1.5rem;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4A7C47, #059669);
    border-radius: 12px 12px 0 0;
}

.pricing-header {
    display: flex;
    align-items: center;
    color: #2d4a3a;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.pricing-header i {
    color: #4A7C47;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.price-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 124, 71, 0.15);
    border-color: #4A7C47;
}

.room-type {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
    flex: 1;
}

.price {
    font-weight: 700;
    color: #4A7C47;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
}

.price::before {
    content: '💰';
    margin-right: 0.5rem;
    font-size: 0.9rem;
}


/* Responsive pricing layout */
@media (max-width: 768px) {
    .pricing-section {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem 0.75rem;
    }
    
    .room-type {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.2rem;
        justify-content: center;
    }
}

/* Enhanced service card hover effects with pricing */
.service-card:hover .pricing-section {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 124, 71, 0.15);
}

.pricing-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 71, 0.12);
}

/* Currency styling for PNG Kina */
.price {
    position: relative;
}

/* Modern Footer Styling */
.modern-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: #ecf0f1;
    position: relative;
    overflow: hidden;
}

.modern-footer::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.02)"/></svg>');
    opacity: 0.3;
}

.footer-top {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-brand .footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
}

.footer-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-subtitle {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-tagline {
    color: #27ae60;
    font-style: italic;
    font-size: 0.9rem;
}

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.footer-link:hover {
    color: #2ecc71;
    text-decoration: none;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-item i {
    color: #2ecc71;
    margin-top: 0.1rem;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #bdc3c7;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #2ecc71;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom-links .footer-link {
    font-size: 0.85rem;
    margin: 0 0.75rem;
}

/* Admin Link Styling */
.admin-link {
    background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
    color: white !important;
    font-weight: 600;
    border-radius: 20px !important;
    padding: 0.4rem 0.8rem !important;
    margin-left: 0.5rem !important;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: linear-gradient(135deg, #229954, #27ae60) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

.admin-link i {
    margin-right: 0.3rem;
    font-size: 0.9rem;
}

.admin-text {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.admin-login-link {
    color: #6c757d !important;
    padding: 0.4rem !important;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.3rem;
    background: rgba(108, 117, 125, 0.05) !important;
    border: 1px solid rgba(108, 117, 125, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.admin-login-link:hover {
    background: rgba(108, 117, 125, 0.15) !important;
    color: #4a7c59 !important;
    transform: scale(1.05);
}

/* Make admin button more prominent and always visible */
.admin-login-link i {
    font-size: 1rem;
    font-weight: bold;
}

/* Additional navbar optimization for better spacing */
@media (max-width: 1400px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-logo {
        height: 35px;
        width: 35px;
    }
}

/* Force admin button to be visible by giving it fixed position properties */
.admin-login-link {
    position: relative !important;
    z-index: 1000 !important;
}

/* Make the navbar more compact overall */
.navbar {
    padding: 0.5rem 0;
}

.navbar .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Admin button always visible styling */
.navbar-admin-button {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    flex-shrink: 0;
}

.navbar-admin-button .nav-link {
    display: flex;
    align-items: center;
    padding: 0.4rem !important;
    margin: 0 !important;
}

/* Right section of navbar */
.navbar-right-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile navigation improvements */
@media (max-width: 991px) {
    .navbar-right-section {
        gap: 0.5rem;
        position: relative;
    }
    
    .navbar-admin-button {
        order: 1;
        margin-left: 0.5rem;
        position: relative;
        z-index: 1050;
    }
    
    .navbar-toggler {
        order: 2;
        border: none;
        padding: 0.25rem 0.5rem;
        background: none;
        position: relative;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    .navbar-toggler:hover {
        background: rgba(74, 124, 71, 0.1);
        border-radius: 8px;
    }
    
    /* Animated Hamburger Menu */
    .hamburger-menu {
        width: 24px;
        height: 18px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }
    
    .hamburger-line {
        width: 100%;
        height: 2px;
        background-color: #4a7c47;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    /* Hamburger animation when menu is open */
    .navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Hover effects for hamburger lines */
    .navbar-toggler:hover .hamburger-line {
        background-color: #5a8c57;
    }
    
    .navbar-toggler[aria-expanded="true"]:hover .hamburger-line:nth-child(1),
    .navbar-toggler[aria-expanded="true"]:hover .hamburger-line:nth-child(3) {
        background-color: #dc3545;
    }
    
    /* Enhanced mobile animations */
    .navbar-toggler {
        transition: transform 0.2s ease, background-color 0.3s ease;
    }
    
    .navbar-toggler:active {
        transform: scale(0.95);
    }
    
    /* Smooth collapse animation enhancement */
    .navbar-collapse {
        transition: all 0.35s ease-in-out;
    }
    
    .navbar-collapse.collapsing {
        transition: height 0.35s ease-in-out;
    }
    
    /* Enhanced hover state for mobile menu items */
    .navbar-nav .nav-link {
        position: relative;
        overflow: hidden;
    }
    
    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(74, 124, 71, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .navbar-nav .nav-link:hover::before {
        left: 100%;
    }
    
    .navbar-collapse {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: -1rem;
        right: -1rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
        z-index: 1000;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }
    
    .navbar-nav {
        padding: 1rem 0;
        flex-direction: column;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: left;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(74, 124, 71, 0.1);
        color: #4a7c47 !important;
    }
    
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* Desktop navigation */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        position: static;
        background: none;
        box-shadow: none;
        border: none;
        z-index: auto;
    }
    
    .navbar-nav {
        flex-direction: row;
        padding: 0;
    }
    
    .navbar-right-section {
        flex-direction: row-reverse;
        gap: 1rem;
    }
    
    .navbar-admin-button {
        order: 1;
        margin-left: 0;
    }
    
    .navbar-toggler {
        display: none !important;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Modal Styles */
.welcome-modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.welcome-modal-header {
    background: linear-gradient(135deg, #4a7c47 0%, #5a8c57 100%);
    color: white;
    border-bottom: none;
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.welcome-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.welcome-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.welcome-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.welcome-subtitle {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.welcome-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 1);
    z-index: 1060;
}

.welcome-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.15);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.4);
    border-color: rgba(74, 124, 71, 0.3);
}

.welcome-close:focus {
    box-shadow: 0 0 0 3px rgba(74, 124, 71, 0.3);
    outline: none;
}

/* Override Bootstrap's btn-close styles for better visibility */
.welcome-close.btn-close {
    background: white !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='m.293.293.707.707L7.5 7.5 14 1l.707.707L8.207 8.207l6.5 6.5-.707.707L7.5 8.914 1 15.414l-.707-.707L6.793 8.207.293.707A1 1 0 01.293.293z'/%3e%3c/svg%3e") !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    opacity: 1 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    border: 3px solid white !important;
    background-size: 20px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.welcome-close.btn-close:hover {
    opacity: 1 !important;
    background-color: #f8f9fa !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc3545'%3e%3cpath d='m.293.293.707.707L7.5 7.5 14 1l.707.707L8.207 8.207l6.5 6.5-.707.707L7.5 8.914 1 15.414l-.707-.707L6.793 8.207.293.707A1 1 0 01.293.293z'/%3e%3c/svg%3e") !important;
    transform: scale(1.15) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
    border-color: #dc3545 !important;
}

.welcome-close.btn-close:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.25) !important;
    outline: none !important;
}

.welcome-close.btn-close:active {
    background-color: #e9ecef !important;
    transform: scale(1.1) !important;
}

.welcome-modal-body {
    padding: 2rem;
}

.welcome-highlights {
    margin-bottom: 1.5rem;
}

.highlight-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(74, 124, 71, 0.1);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 124, 71, 0.3);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a7c47, #5a8c57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 124, 71, 0.3);
}

.highlight-card h5 {
    color: #4a7c47;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.highlight-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.welcome-features {
    background: rgba(74, 124, 71, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(74, 124, 71, 0.1);
}

.feature-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.feature-stat i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.feature-stat small {
    color: #4a7c47;
    font-weight: 500;
    font-size: 0.85rem;
}

.welcome-modal-footer {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.welcome-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.welcome-cta {
    background: linear-gradient(135deg, #4a7c47, #5a8c57);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 124, 71, 0.3);
    transition: all 0.3s ease;
}

.welcome-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 71, 0.4);
    background: linear-gradient(135deg, #5a8c57, #4a7c47);
}

.welcome-explore {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.welcome-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.welcome-footer-note {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

.welcome-footer-note label {
    cursor: pointer;
    user-select: none;
}

/* Mobile responsiveness for welcome modal */
@media (max-width: 768px) {
    .modal-lg {
        max-width: 95%;
        margin: 1rem auto;
    }
    
    .welcome-modal-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .welcome-logo {
        width: 60px;
        height: 60px;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .welcome-modal-body {
        padding: 1.5rem 1rem;
    }
    
    .highlight-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .welcome-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .welcome-cta,
    .welcome-explore {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Welcome modal animations */
.modal.fade .modal-dialog {
    transition: transform 0.4s ease-out;
    transform: scale(0.8) translateY(-50px);
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

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

.highlight-card:hover .highlight-icon {
    animation: welcomeHighlightPulse 1s ease-in-out;
}

/* Dynamic Loading Animations for Page Sections */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Staggered animation for multiple elements */
.stagger-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add delays for staggered elements */
.stagger-animation:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation:nth-child(6) { transition-delay: 0.6s; }

/* Loading shimmer effect */
.loading-shimmer {
    position: relative;
    overflow: hidden;
}

.loading-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmerEffect 2s infinite;
    z-index: 1;
}

@keyframes shimmerEffect {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Bounce in animation */
.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Flip in animation */
.flip-in {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.flip-in.visible {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
}

/* Counter animation for numbers */
.counter {
    font-weight: bold;
    font-size: 1.2em;
}

.counter.counting {
    animation: countPulse 0.3s ease;
}

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

/* OpenStreetMap Enhancements for Mobile */
.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#resort-map {
    min-height: 300px;
    border-radius: 12px;
}

/* Custom Map Markers */
.custom-resort-marker {
    background: none;
    border: none;
}

.marker-pin {
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 50% 50% 50% 0;
    position: relative;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
}

.marker-pin i {
    color: white;
    font-size: 16px;
    transform: rotate(45deg);
    margin-top: -5px;
    margin-left: -2px;
}

.marker-pin::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #2E7D32;
    border-bottom: none;
}

.custom-landmark-marker {
    background: none;
    border: none;
}

.landmark-pin {
    width: 25px;
    height: 25px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

/* Enhanced Map Popup Styling */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 0;
    padding: 0;
    min-width: 280px;
}

.map-popup {
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.map-popup h6 {
    color: #2E7D32;
    margin-bottom: 12px;
    font-weight: 600;
    border-bottom: 2px solid #E8F5E8;
    padding-bottom: 8px;
}

.map-popup p {
    font-size: 14px;
    color: #495057;
    line-height: 1.4;
}

.map-popup a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.map-popup a:hover {
    text-decoration: underline;
}

.map-popup .btn {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-popup .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-tip {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.leaflet-popup-close-button {
    color: #6c757d;
    font-size: 18px;
    font-weight: bold;
    padding: 8px;
    width: auto;
    height: auto;
}

.leaflet-popup-close-button:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 4px;
}

/* Mobile-specific map adjustments */
@media (max-width: 768px) {
    #resort-map {
        min-height: 350px;
        height: 350px;
    }
    
    .map-container {
        margin-bottom: 20px;
    }
    
    .leaflet-popup-content {
        min-width: 250px;
        max-width: 280px;
    }
    
    .map-popup {
        padding: 14px;
    }
    
    .map-popup h6 {
        font-size: 16px;
    }
    
    .map-popup p {
        font-size: 13px;
    }
    
    .map-popup .btn {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .marker-pin {
        width: 35px;
        height: 45px;
    }
    
    .marker-pin i {
        font-size: 14px;
    }
    
    .landmark-pin {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    
    /* Prevent map from being too sensitive on mobile */
    .leaflet-container {
        touch-action: pan-x pan-y;
    }
}

/* Small screen adjustments */
@media (max-width: 576px) {
    #resort-map {
        min-height: 300px;
        height: 300px;
    }
    
    .leaflet-popup-content {
        min-width: 220px;
        max-width: 250px;
    }
    
    .map-popup {
        padding: 12px;
    }
}

/* Mobile Navigation Touch Feedback */
.nav-link-touched {
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 4px;
    transform: scale(0.95);
    transition: all 0.15s ease;
}

/* Improved mobile menu closing animation */
.navbar-collapse.collapsing {
    transition: height 0.3s ease;
}

/* Enhanced navbar scrolled state for mobile */
@media (max-width: 768px) {
    .navbar-scrolled {
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        margin-top: 10px;
        padding: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
}

/* Enhanced Get Directions Button */
.map-popup .btn-primary {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border: none;
    position: relative;
    overflow: hidden;
}

.map-popup .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.map-popup .btn-primary:hover::before {
    left: 100%;
}

.map-popup .btn-primary:hover {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.map-popup .btn-success:hover {
    background: linear-gradient(135deg, #388E3C, #4CAF50);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(56, 142, 60, 0.3);
}

/* Ensure proper flex distribution */
.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.navbar-collapse {
    flex-grow: 1;
}

/* Improved Navigation Spacing */
.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0 0.05rem;
}

.navbar-nav .nav-link {
    padding: 0.5rem 0.6rem !important;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* More aggressive space-saving for navbar */
@media (min-width: 992px) {
    .navbar-nav .nav-item {
        margin: 0 0.02rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.4rem !important;
        font-size: 0.8rem;
    }
}

@media (min-width: 1200px) {
    .navbar-nav .nav-item {
        margin: 0 0.05rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.5rem !important;
        font-size: 0.85rem;
    }
}

@media (min-width: 1400px) {
    .navbar-nav .nav-item {
        margin: 0 0.1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.7rem !important;
        font-size: 0.9rem;
    }
}

/* Ensure admin button is always visible */
.navbar-nav .nav-item:last-child {
    flex-shrink: 0;
    margin-left: 0.5rem;
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand .footer-logo {
        width: 50px;
        height: 50px;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-subtitle {
        font-size: 0.8rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-nav li {
        margin-bottom: 0.5rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        text-align: center;
    }
    
    .footer-bottom-links {
        text-align: center;
        margin-top: 1rem;
    }
    
    .footer-bottom-links .footer-link {
        display: inline-block;
        margin: 0.25rem 0.5rem;
    }
    
    /* Mobile admin link adjustments */
    .admin-link {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.8rem;
        margin-left: 0.3rem !important;
    }
    
    .admin-text {
        font-size: 0.75rem;
    }
    
    .admin-login-link {
        width: 32px;
        height: 32px;
        margin-left: 0.3rem;
    }
}

/* ===== COMPREHENSIVE BOOKING SYSTEM STYLES ===== */

/* Booking form container */
.booking-form-container {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

/* Booking sections */
.booking-section {
    background: rgba(245, 247, 250, 0.6);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(76, 124, 71, 0.1);
}

.booking-section-title {
    color: #2c5530;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(76, 124, 71, 0.2);
}

/* Service cards */
.service-category {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(76, 124, 71, 0.1);
}

.service-category-title {
    color: #1a3d1e;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-category-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #4A7C47;
    box-shadow: 0 4px 12px rgba(76, 124, 71, 0.15);
    transform: translateY(-2px);
}

.service-card.coming-soon {
    opacity: 0.7;
    background: #f8f9fa;
    border-color: #dee2e6;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.service-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a3d1e;
    margin: 0;
    flex: 1;
}

.service-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #4A7C47;
    text-align: right;
    min-width: fit-content;
    margin-left: 0.5rem;
}

.service-description {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-quantity .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.25rem;
}

.service-quantity .form-control {
    font-size: 0.85rem;
    padding: 0.375rem 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.service-quantity small {
    font-size: 0.75rem;
    color: #6c757d;
    display: block;
    margin-top: 0.25rem;
}

.coming-soon-badge {
    background: linear-gradient(135deg, #ffc107, #ffca28);
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
}

/* Total amount displays */
.booking-total-preview {
    background: rgba(76, 124, 71, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(76, 124, 71, 0.2);
}

.total-amount-display {
    background: rgba(76, 124, 71, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid rgba(76, 124, 71, 0.1);
    text-align: center;
}

.has-amount .booking-total-preview,
.has-amount .total-amount-display {
    background: linear-gradient(135deg, rgba(76, 124, 71, 0.1), rgba(76, 124, 71, 0.2));
    border-color: #4A7C47;
    animation: amountPulse 2s ease-in-out infinite;
}

@keyframes amountPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(76, 124, 71, 0.3);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(76, 124, 71, 0);
    }
}

/* Nights display */
.nights-display {
    background: rgba(33, 37, 41, 0.05);
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    color: #495057;
    font-size: 0.9rem;
    min-height: 38px;
    display: flex;
    align-items: center;
}

/* Form enhancements */
.booking-form .form-control:focus {
    border-color: #4A7C47;
    box-shadow: 0 0 0 0.2rem rgba(76, 124, 71, 0.25);
}

.booking-form .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.booking-submit-btn {
    background: linear-gradient(135deg, #4A7C47, #2c5530);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 124, 71, 0.3);
}

.booking-submit-btn:hover {
    background: linear-gradient(135deg, #2c5530, #1a3d1e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 124, 71, 0.4);
}

/* Loading spinner for services */
#servicesContainer .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Responsive design for booking form */
@media (max-width: 768px) {
    .booking-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem 2rem;
    }
    
    .booking-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-price {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .booking-info-banner .row {
        flex-direction: column;
    }
    
    .booking-info-banner .col-md-4 {
        text-align: left !important;
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .booking-form-container {
        padding: 1rem;
        margin: 0 0.25rem 1.5rem;
    }
    
    .service-card {
        padding: 0.75rem;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
    
    .booking-submit-btn {
        font-size: 0.9rem;
        padding: 0.75rem 2rem;
    }
}
