/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: var(--primary-color);
}
a:hover{
    color: var(--text-dark);
}
:root {
    /* Color Palette */
    --primary-color: #6A8C7C;
    --primary-dark: #4F6F63;
    --secondary-color: #C7DED3;
    --accent-color: #F3EFE6;
    --text-dark: #2F3B38;
    --text-light: #667672;
    --white: #FFFFFF;
    --light-bg: #FAF6F0;
    --border-color: #DCE7E1;
    
    /* Typography */
    --font-primary: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 60px 0;
    --container-padding: 0 30px;
    
    /* Shadows */
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

 body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(160deg, var(--light-bg) 0%, rgba(223, 234, 228, 0.9) 40%, rgba(210, 225, 217, 0.85) 100%);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    border-radius: 9rem;
}

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

/* Book Now Button Styles */
/* Enhanced Book Now Button */
.btn-booking {
    display: inline-block;
    background: linear-gradient(135deg, #f4b7a7, #de7f6b);
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(222, 127, 107, 0.28);
    border: none;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Hover Effect */
.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(222, 127, 107, 0.35);
    color: #fff;
}

/* Active/Pressed Effect */
.btn-booking:active {
    transform: translateY(1px);
    box-shadow: 0 4px 14px rgba(222, 127, 107, 0.3);
}

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

.btn-booking {
    animation: pulse 3s infinite;
}

/* Shine Effect */
.btn-booking::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.btn-booking:hover::after {
    left: 100%;
    opacity: 1;
}

/* Icon styling */
.btn-booking i {
    margin-right: 8px;
    font-size: 0.9em;
    vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-booking {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Specific styles for nav book now button */
.nav-link.book-now {
    background: linear-gradient(135deg, #f4b7a7, #de7f6b);
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 30px;
    margin-left: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(220, 90, 42, 0.3);
    border: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transform: translateZ(0);
}

/* Hover Effect */
.nav-link.book-now:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 28px rgba(222, 127, 107, 0.35);
    color: #fff !important;
}

/* Active/Pressed Effect */
.nav-link.book-now:active {
    transform: translateY(1px);
    box-shadow: 0 4px 14px rgba(222, 127, 107, 0.3);
}

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

.nav-link.book-now {
    animation: pulse 3s infinite;
}

/* Shine Effect */
.nav-link.book-now::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.nav-link.book-now:hover::after {
    left: 100%;
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-link.book-now {
        margin: 15px 0 0 0;
        width: 100%;
        text-align: center;
        padding: 12px 25px !important;
        display: block;
    }
}
.btn-secondary{
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    border-radius: 9rem;
}
.btn-secondary:hover {
     background-color: rgba(232, 224, 224, 0.1);
    color: rgb(236, 236, 231);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(130deg, rgba(79, 111, 99, 1), rgba(118, 153, 140, 1));
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}
.nav-link.book-now {
    width: 80%;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}


.log {
    text-decoration: none;
    color: var(--secondary-color);
}

.nav-logo {
    font-family: Garamond, serif;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.nav-logo a h2 {
    color: var(--secondary-color);
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}


.nav-link {
    text-decoration: none;
    color: rgba(149, 192, 230, 0.92);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link:not(.btn-primary):hover {
    color: var(--secondary-color);
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color:#673009 ;
    margin: 3px 0;
    transition: var(--transition);
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(21, 43, 37, 0.4), rgba(47, 72, 63, 0.08));
    z-index: 0;
    transition: background 0.3s ease;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: linear-gradient(135deg, rgba(243, 239, 230, 0.15), rgba(199, 222, 211, 0.08));
    z-index: 0;
    transition: background 0.3s ease;
}

.hero-content {
    position: relative;
    max-width: 780px;
    transition: opacity 0.3s ease;
    margin: 0 auto;
    height: 100%;
    padding: 2rem 1.5rem;
}
.hero-content h1 {
    color: var(--primary-dark);
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    margin-bottom: 1.2rem;
    letter-spacing: 0.8px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.3rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(47, 59, 56, 0.72);
}

.hero-buttons {
    position: relative;
    z-index: 1;
    display: inline-flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
}

.btn-secondary {
    background:rgba(237, 234, 234, 0.2);
    color: var(--primary-dark);
    border: 2px solid rgba(106, 140, 124, 0.8);
    padding: 14px 32px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(106, 140, 124, 0.12);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(245, 241, 235, 0.75) 0%, rgba(214, 228, 222, 0.65) 100%);
}

.gallery-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(233, 241, 236, 0.85) 0%, rgba(214, 228, 222, 0.65) 100%);
}

.gallery-intro {
    max-width: 680px;
    margin: 0.75rem auto 2rem auto;
    color: rgba(47, 59, 56, 0.74);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
    gap: 1.5rem;
    grid-auto-rows: 300px;
    justify-content: center;
}

.gallery-cta {
    margin-top: 2rem;
}

.gallery-cta .btn {
    min-width: 220px;
}

.gallery-page {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(233, 241, 236, 0.92) 0%, rgba(210, 225, 217, 0.72) 100%);
}

.gallery-header {
    max-width: 720px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.gallery-header p {
    color: rgba(47, 59, 56, 0.7);
}

.gallery-admin-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.gallery-admin-logo-button {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}


.gallery-admin-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(47, 59, 56, 0.15);
    object-fit: cover;
    background: #fff;
    padding: 0.35rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn.btn-tertiary:hover,
.btn.btn-tertiary:focus {
    background: rgba(47, 59, 56, 0.15);
}

.gallery-admin-toggle {
    margin-top: 1rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 2rem auto 2.5rem auto;
}

.filter-btn {
    border: 1px solid rgba(159, 197, 182, 0.6);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    letter-spacing: 0.35px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 12px 22px rgba(79, 111, 99, 0.12);
}

.filter-btn:hover,
.filter-btn:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 140, 124, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(106, 140, 124, 1), rgba(79, 111, 99, 0.9));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 16px 32px rgba(79, 111, 99, 0.28);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
    gap: 1.5rem;
    grid-auto-rows: 300px;
    justify-content: center;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(79, 111, 99, 0.2);
    cursor: zoom-in;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    width: 100%;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(79, 111, 99, 0.26);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-admin-panel {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 36px rgba(79, 111, 99, 0.15);
    border: 1px solid rgba(159, 197, 182, 0.4);
    display: none;
    gap: 1.5rem;
    flex-direction: column;
}

.gallery-admin-panel.open {
    display: flex;
}

.gallery-admin-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-admin-form .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-admin-form .form-group {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.gallery-admin-form label {
    font-weight: 600;
    color: var(--primary-dark);
}

.gallery-admin-form input {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(159, 197, 182, 0.5);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.gallery-admin-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 140, 124, 0.18);
}

.gallery-admin-feedback {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    display: none;
}

.gallery-admin-feedback.success {
    display: block;
    background: #e6ffe6;
    border: 1px solid #b2ffb2;
    color: #207520;
}

.gallery-admin-feedback.error {
    display: block;
    background: #ffecec;
    border: 1px solid #ffbdbd;
    color: #a32020;
}

.gallery-admin-stored {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-admin-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.gallery-admin-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 24px rgba(79, 111, 99, 0.12);
    border: 1px solid rgba(159, 197, 182, 0.35);
}

.gallery-admin-thumb {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,0,0,0.05);
}

.gallery-admin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-admin-details p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
}

.gallery-admin-details a {
    color: var(--primary-color);
    word-break: break-all;
}

.gallery-admin-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: rgba(47, 59, 56, 0.75);
}

.gallery-admin-remove {
    align-self: flex-start;
}

.no-custom-images {
    color: rgba(47, 59, 56, 0.7);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    color: #f5f5f5;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2000;
}

.lightbox.visible {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: min(900px, 92vw);
    width: 100%;
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

#lightbox-caption {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 1rem;
    color: var(--text-dark);
}

.lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.75);
}

.reviews-page {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(243, 239, 230, 0.88) 0%, rgba(214, 228, 222, 0.75) 100%);
}

.reviews-header {
    max-width: 720px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.reviews-header p {
    color: rgba(47, 59, 56, 0.72);
}

.review-summary {
    max-width: 520px;
    margin: 0 auto 3rem auto;
    padding: 1.5rem 2rem;
    border-radius: 18px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 34px rgba(79, 111, 99, 0.18);
    border: 1px solid rgba(159, 197, 182, 0.45);
}

.summary-rating {
    font-size: clamp(2.8rem, 6vw, 3.8rem);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.summary-out-of {
    font-size: 1.2rem;
    color: rgba(47, 59, 56, 0.6);
}

.review-form-section {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(79, 111, 99, 0.18);
    border: 1px solid rgba(159, 197, 182, 0.4);
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-form .form-row {
    display: flex;
    gap: 1.25rem;
}

.review-form .form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.6rem;
}

.review-form input,
.review-form select,
.review-form textarea {
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(159, 197, 182, 0.5);
    border-radius: 12px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: rgba(255, 255, 255, 0.98);
    transition: var(--transition);
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 140, 124, 0.18);
}

.review-form textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-review-btn {
    align-self: flex-start;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: rgba(47, 59, 56, 0.6);
    margin-top: -0.5rem;
}

.form-feedback {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-weight: 500;
}

.form-feedback.success {
    background: #e6ffe6;
    border: 1px solid #b2ffb2;
    color: #207520;
}

.form-feedback.error {
    background: #ffecec;
    border: 1px solid #ffbdbd;
    color: #a32020;
}

.review-list {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 18px 36px rgba(79, 111, 99, 0.16);
    border: 1px solid rgba(159, 197, 182, 0.4);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.review-rating {
    color: #f4b55a;
    font-size: 1.1rem;
    display: flex;
    gap: 0.2rem;
}

.review-date {
    font-size: 0.9rem;
    color: rgba(47, 59, 56, 0.6);
}

.review-message {
    font-style: italic;
    color: rgba(47, 59, 56, 0.82);
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.3px;
}

.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(79, 111, 99, 0.15);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.45));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.35s ease;
}

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

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

.testimonial-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(243, 239, 230, 0.82) 0%, rgba(214, 228, 222, 0.7) 100%);
}

.testimonial-intro {
    max-width: 640px;
    margin: 0.75rem auto 2rem auto;
    color: rgba(47, 59, 56, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 16px 34px rgba(79, 111, 99, 0.12);
    border: 1px solid rgba(159, 197, 182, 0.35);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-rating {
    color: #f4b55a;
    font-size: 1.1rem;
}

.testimonial-quote {
    font-style: italic;
    color: rgba(47, 59, 56, 0.82);
    line-height: 1.6;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }
}

.services-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.services-controls > .category-filter,
.services-controls > .search-filter {
    margin: 0;
}

.category-filter,
.search-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    box-shadow: 0 18px 30px rgba(79, 111, 99, 0.12);
}

.filter-label {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.filter-select,
.filter-input {
    padding: 0.65rem 1.2rem;
    border: 1px solid rgba(159, 197, 182, 0.4);
    border-radius: 999px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: rgba(255, 255, 255, 0.95);
    transition: var(--transition);
}

.filter-select {
    cursor: pointer;
}

.filter-input {
    width: min(280px, 100%);
}

.filter-select:hover,
.filter-select:focus,
.filter-input:hover,
.filter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 140, 124, 0.18);
}

@media (max-width: 768px) {
    .services-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .category-filter,
    .search-filter {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        text-align: left;
        gap: 0.5rem;
        padding: 1rem;
    }

    .filter-label {
        font-size: 0.9rem;
    }

    .filter-select {
        width: 100%;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    padding: 2rem;
    border-radius: 22px;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(159, 197, 182, 0.35);
    box-shadow: 0 20px 40px rgba(79, 111, 99, 0.12);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 144px;
    height: 144px;
    background: radial-gradient(circle at center, rgba(199, 222, 211, 0.25), transparent 70%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 48px rgba(79, 111, 99, 0.18);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(199, 222, 211, 0.45), rgba(255, 255, 255, 0.9));
    color: var(--primary-dark);
    font-size: 1.65rem;
    margin-bottom: 1.35rem;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.33rem;
    margin-bottom: 0.7rem;
}

.service-card p {
    font-size: 1rem;
   padding: 0;
   margin: 0;
}

/* Service Card Booking Button */

.service-card .btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, rgba(244, 183, 167, 1), rgba(222, 127, 107, 1));
    color: #fff;
    padding: 12px 26px;
    border-radius: 40px;
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(222, 127, 107, 0.28);
    border: none;
    cursor: pointer;
}

.service-card .btn-booking:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(222, 127, 107, 0.32);
}

.service-card .btn-booking i {
    margin-right: 5px;
}

.service-card-bg .btn-booking {
    display: inline-block;
    background: linear-gradient(135deg, rgba(246, 198, 187, 0.95), rgba(229, 138, 116, 0.95));
    color: #fff;
    padding: 10px 22px;
    border-radius: 28px;
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(229, 138, 116, 0.28);
    border: none;
    cursor: pointer;
}

.service-card-bg .btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(229, 138, 116, 0.34);
    color: #fff;
}

.service-card-bg .btn-booking i {
    margin-right: 5px;
}

.service-card p, .service-card-bg p {
    min-height: 60px;
    margin-bottom: 10px;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(249, 245, 238, 0.9) 0%, rgba(210, 225, 217, 0.75) 100%);
}

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

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-content ul {
    list-style: none;
    margin-top: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(214, 228, 222, 0.55), rgba(255, 255, 255, 0.95));
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(79, 111, 99, 0.14);
    border-left: 6px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.about-content ul::before {
    content: '';
    position: absolute;
    top: -35px;
    right: -35px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at center, rgba(159, 197, 182, 0.4), rgba(159, 197, 182, 0));
    transform: rotate(25deg);
}

.about-content ul li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    border-bottom: 1px dashed rgba(122, 156, 142, 0.35);
}
.about-content ul li:last-child {
    border-bottom: none;
}

.about-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    background: rgba(159, 197, 182, 0.25);
    border-radius: 50%;
    padding: 0.65rem;
    font-size: 0.9rem;
    box-shadow: 0 6px 14px rgba(79, 111, 99, 0.18);
    flex-shrink: 0;
}

.about-content ul li:hover {
    transform: translateX(4px);
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .about-content ul {
        padding: 1.5rem;
        border-left-width: 4px;
    }

    .about-content ul li {
        flex-direction: row;
        align-items: center;
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-content {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    color: #2C2C2C;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.contact-info {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    word-break: break-word;
    gap: 1rem;
    margin-bottom: 1rem;
}
.fade-in { 
    opacity: 0;
    width: 100%;
}   
.contact-info i {
    color: var(--primary-color);
    font-size: 1.4rem;
    width: 20px;
}

/* Responsive Contact Information Structure */
.contact-details {
    display: flex;
    padding-left: 10%;
    padding-right: 10%;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 2rem;
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1.3;
}

.contact-value {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
    
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    min-height: 1.2rem;
}

.days {
    font-weight: 500;
    color: var(--text-dark);
    flex-shrink: 0;
}

.times {
    color: var(--text-light);
    text-align: right;
    margin-left: 1rem;
}

.social-section h4,
.gift-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.policy-section {
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: rgba(199, 222, 211, 0.35);
    border: 1px solid rgba(159, 197, 182, 0.45);
    border-radius: 18px;
    box-shadow: 0 20px 35px rgba(79, 111, 99, 0.12);
}

.policy-section h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.policy-section p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.gift-section p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}
.contact-content{
    display: flex;
    margin: 10%;
}
/* Footer */
.footer {

    background-color: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Loading States */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Image Styles */
.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Hero Section with Background Image */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero .hero-content {
    z-index: 2;
    position: relative;
}

.hero h1 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}

.hero p {
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards with Background Images */
.service-card-bg {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    min-height: 360px;
}

.service-card-bg:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    border-radius: 0 0 20px 20px;
}

.service-card-bg .service-icon {
    background-color: rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.service-card-bg .service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-card-bg h3 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.service-card-bg p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    line-height: 1.5;
}

.service-card-bg strong {
    color: var(--secondary-color);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    display: block;
    margin-top: 0.5rem;
}

.map {
    width: 60%;

    margin-left: auto;
    margin-right: auto;
}