/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand palette — refined garden-modern */
    --primary-color: #5C7A2A;
    --primary-deep: #3F5A1B;
    --secondary-color: #2A3F26;
    --accent-color: #A8C480;
    --accent-soft: #E6EFD3;
    --gold: #C9A86A;

    /* Neutrals */
    --text-dark: #1F2A24;
    --text-light: #5C6B62;
    --text-muted: #8A968F;
    --bg-light: #F4F1E8;
    --bg-soft: #FAFAF5;
    --surface: #FFFFFF;
    --surface-soft: #FBFBF7;
    --border: #E5E3D8;
    --white: #ffffff;

    /* Shadows — layered for depth */
    --shadow-sm: 0 1px 2px rgba(20, 30, 25, 0.04), 0 1px 3px rgba(20, 30, 25, 0.06);
    --shadow: 0 4px 12px rgba(20, 30, 25, 0.06), 0 2px 4px rgba(20, 30, 25, 0.04);
    --shadow-lg: 0 12px 32px rgba(20, 30, 25, 0.10), 0 4px 12px rgba(20, 30, 25, 0.06);
    --shadow-xl: 0 24px 48px rgba(20, 30, 25, 0.14), 0 8px 16px rgba(20, 30, 25, 0.08);

    /* Radius scale */
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Easing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    /* Legacy aliases (preserved for older rules) */
    --pine-green: #228B22;
    --earth-brown: #8B4513;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-soft);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px 1.2rem 10px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Great Vibes', 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 2.2rem;
    color: #7A9F5A;
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #6B8E23, #556B2F, #6B8E23, #8FBC8F);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Animated gradient background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(1.3) contrast(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(47,79,47,0.5), rgba(107,142,35,0.4));
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, #FAFAF5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: normal;
    text-align: center;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 0;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    text-align: center;
}

.hero-top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
}

.hero-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.hero-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-social a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.hero-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-weight: normal;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(180deg, #FAFAF5 0%, var(--bg-light) 100%);
    position: relative;
}

/* Special Events Section */
.special-events-section {
    background: var(--white);
    position: relative;
    padding: 80px 0;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 320px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(107, 142, 35, 0.3);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item {
    pointer-events: auto;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 2px solid #E8F5E9;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #F0FFF0 100%);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.package-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.package-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 0.5rem 0;
}

.price del {
    font-size: 1.5rem;
    color: var(--text-light);
}

.price-range {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 0.5rem 0;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.package-highlights {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.package-highlights p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.package-highlights i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

.package-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Package Modal Specific Styles */
.modal-content-large {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

.package-subtitle-modal {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0.5rem 0;
}

.package-price-modal {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 1rem 0;
}

.package-price-modal del {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-right: 10px;
}

.package-note-modal {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.package-timings {
    background: #FFF9E6;
    border-left: 4px solid #FFD700;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.package-timings h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.package-timings p {
    margin: 0.3rem 0;
    color: var(--text-dark);
}

.package-notes {
    background: #FFE6E6;
    border-left: 4px solid #FF6B6B;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.package-notes p {
    margin: 0.3rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.package-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.package-features-list li {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 20px;
}

.modal-footer .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Additional Info Section in Modal */
.package-additional-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
}

.additional-info-content {
    background: #F0F8FF;
    border-left: 4px solid #4682B4;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-top: 0.5rem;
}

.additional-info-content p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.additional-info-content p strong {
    color: var(--secondary-color);
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.additional-info-content p em {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Services Section */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--accent-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.partner-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid #F5F5F5;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.partner-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8F5E9 100%);
    border-radius: 50%;
    border: 2px solid #E0E0E0;
}

.partner-logo img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.partner-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.partner-card p {
    color: var(--text-light);
}

.partner-card {
    cursor: pointer;
}

.partner-click-hint {
    margin-top: 1rem;
    padding: 0.5rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.partner-card:hover .partner-click-hint {
    opacity: 1;
}

/* Partner Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideDown 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.modal-header h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-top: 0.5rem;
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    align-items: center;
}

.modal-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.modal-info-item h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.modal-info-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.modal-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid var(--bg-light);
}

.modal-footer p {
    color: var(--text-light);
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-info-centered {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contact-info-centered .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-info-centered .info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.contact-info-centered .info-item:last-child {
    margin-bottom: 0;
}

.contact-info-centered .info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
    min-width: 40px;
    text-align: center;
}

.contact-info-centered .info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-info-centered .info-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
}

.social-links a i {
    transition: transform 0.3s;
}

.social-links a:hover i {
    transform: rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo img {
        height: 65px;
        max-width: 160px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 1.5rem 0;
    }

    .hero-top-content {
        padding-top: 0.5rem;
    }

    .hero-bottom-content {
        padding-bottom: 1.5rem;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-info-centered {
        padding: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-header h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem 0;
    }

    .hero-top-content {
        padding-top: 0;
    }

    .hero-bottom-content {
        padding-bottom: 1rem;
        gap: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .logo img {
        height: 55px;
        max-width: 140px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .navbar .container {
        padding: 0.8rem 15px 0.8rem 8px;
    }

    .hamburger {
        margin-left: auto;
    }
}

/* Image Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-caption {
    text-align: center;
    color: white;
    padding: 15px;
    font-size: 1.2rem;
    margin-top: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
    border-radius: 5px;
}

.lightbox-nav:hover {
    background: var(--primary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        font-size: 1.8rem;
        padding: 10px 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* Image Protection - Disable Right Click and Selection */
img {
    -webkit-touch-callout: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* ============================================================
   MODERN REFRESH — appended overrides for a polished, modern look
   ============================================================ */

/* Headings — display serif for elegance */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Section spacing rhythm */
section {
    padding: 96px 0;
}
@media (max-width: 768px) {
    section { padding: 64px 0; }
}

/* Section title — accent underline */
.section-title {
    position: relative;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
    text-align: center;
}
.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 999px;
}
.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar — translucent + blur on scroll feel */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.nav-menu a {
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s var(--ease-out);
}
.nav-menu a:hover::after { width: 100%; }

/* Buttons — pill, refined motion, focus ring */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 2rem;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: transform 0.25s var(--ease-out),
                box-shadow 0.25s var(--ease-out),
                background 0.25s var(--ease-out),
                color 0.25s var(--ease-out);
    cursor: pointer;
    text-decoration: none;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-deep) 100%);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(92, 122, 42, 0.28);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(92, 122, 42, 0.36);
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-color) 100%);
}
.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(92, 122, 42, 0.22);
}
.btn:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Hero — refined gradient overlay + display type */
.hero::before {
    background: linear-gradient(135deg, rgba(20, 30, 25, 0.55) 0%, rgba(20, 30, 25, 0.25) 50%, rgba(92, 122, 42, 0.35) 100%);
}
.hero-content h1 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0.95;
}
.hero-social a {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s var(--ease-out);
}
.hero-social a:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* Gallery — modern hover, cleaner overlay */
.gallery-item {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}
.gallery-item img {
    transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
    background: linear-gradient(to top, rgba(20, 30, 25, 0.85) 0%, rgba(20, 30, 25, 0) 70%);
}
.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.25rem;
}

/* Packages section — uniform card layout */
.packages-section {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--surface-soft) 100%);
}
.packages-grid {
    gap: 28px;
    align-items: stretch;
}

.package-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease-out),
                box-shadow 0.35s var(--ease-out),
                border-color 0.35s var(--ease-out);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.package-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.85;
}
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

/* Featured/badge styles intentionally removed for uniform card design */

/* Package header — uniform sizing across cards */
.package-header {
    margin-bottom: 1.25rem;
    text-align: center;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.package-header i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--accent-soft);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 0 1px rgba(92, 122, 42, 0.12);
}
.package-header h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.35rem;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.package-subtitle {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 1rem;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price, .price-range {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--primary-deep);
    margin: 0.25rem 0 0.1rem;
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.price-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-style: normal;
    font-weight: 600;
    min-height: 1.2em;
}
.price-note.price-note-soft {
    font-size: 0.72rem;
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 0.15rem;
    font-style: italic;
}

/* Highlights — uniform block */
.package-highlights {
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem;
    margin-bottom: 1.5rem;
    flex: 0 0 auto;
}
.package-highlights p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin: 0.55rem 0;
}
.package-highlights i {
    width: 22px;
    color: var(--primary-color);
    margin: 0;
    text-align: center;
    flex-shrink: 0;
}

/* Push button to consistent bottom */
.package-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Partners */
.partner-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Contact — info cards */
.contact-section {
    background: linear-gradient(180deg, var(--surface-soft) 0%, var(--bg-light) 100%);
}
.contact-info-centered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.info-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}
.info-item i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.info-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.info-item p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

/* Modal — refined overlay + cleaner content */
.modal {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(20, 30, 25, 0.55);
}
.modal-content {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}
.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
}
.package-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.4rem 0;
}
.package-features-list i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}
.package-price-modal {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary-deep);
}
.package-note-modal {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
}

/* Footer polish */
footer, .site-footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.85);
}

/* Available Upgrades section in modal */
.package-upgrades {
    margin-top: 1.75rem;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--surface-soft) 100%);
    border: 1px solid var(--accent-color);
    border-radius: var(--radius);
    position: relative;
}
.package-upgrades::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    border-radius: var(--radius) var(--radius) 0 0;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}
.upgrades-title {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin: 0 0 0.85rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.upgrades-title i {
    color: var(--gold);
    font-size: 1.1rem;
}
.package-upgrades-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.package-upgrades-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px dashed rgba(20, 30, 25, 0.12);
}
.package-upgrades-list li:last-child {
    border-bottom: none;
}
.upgrade-name {
    color: var(--text-dark);
    font-weight: 500;
}
.upgrade-price {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-deep);
    font-size: 1.1rem;
}
.upgrades-note {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
