/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: #0d4d4d;
    --primary-dark: #083838;
    --primary-light: #1a6b6b;
    --accent: #d4a574;
    --accent-hover: #c4915a;
    --accent-light: #e8c9a8;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --overlay: rgba(13, 77, 77, 0.85);
    --overlay-dark: rgba(0, 0, 0, 0.6);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Dancing Script', cursive;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== Loading Screen ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.loader-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.loader-subtext {
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: var(--accent);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Side Contact Bar ===== */
.side-contact {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
}

.side-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.side-link:hover {
    background-color: var(--accent);
    transform: translateX(5px);
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.container-fluid {
    max-width: 95%;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    background-color: var(--accent);
    color: var(--white);
}

.btn-sm:hover {
    background-color: var(--accent-hover);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1rem;
}

/* ===== Typography ===== */
.script-font {
    font-family: var(--font-script);
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--gray-600);
    text-align: center;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--primary);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent-light);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.hero-desc {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== About Preview Section ===== */
.about-preview {
    padding: var(--section-padding);
    background-color: var(--gray-100);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-text .section-subtitle,
.about-preview-text .section-title {
    text-align: left;
}

.about-desc {
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-preview-images {
    position: relative;
    height: 500px;
}

.about-preview-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.preview-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    z-index: 1;
}

.preview-img-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    z-index: 2;
    border: 5px solid var(--white);
    border-radius: 50%;
    overflow: hidden;
}

.preview-img-3 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    z-index: 1;
}

/* ===== Bungalows Section ===== */
.bungalows {
    position: relative;
    padding: var(--section-padding);
    text-align: center;
    color: var(--white);
}

.bungalows-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bungalows-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
}

.bungalows .container {
    position: relative;
    z-index: 1;
}

.bungalows .section-title {
    color: var(--white);
}

.bungalows .section-desc {
    color: var(--gray-200);
}

.bungalow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bungalow-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.bungalow-card:hover {
    transform: translateY(-10px);
}

.bungalow-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.bungalow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.bungalow-card:hover .bungalow-image img {
    transform: scale(1.1);
}

.bungalow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.bungalow-card:hover .bungalow-overlay {
    opacity: 1;
}

.gallery-btn {
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.gallery-btn:hover {
    background-color: var(--accent);
    color: var(--white);
}

.bungalow-info {
    padding: 25px;
    text-align: center;
}

.bungalow-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.bungalow-info p {
    color: var(--gray-600);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* ===== Restaurant Section ===== */
.restaurant {
    padding: var(--section-padding);
    background-color: var(--white);
    text-align: center;
}

.restaurant-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.restaurant-img {
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.restaurant-img.large {
    grid-row: span 2;
    height: 100%;
}

.restaurant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.restaurant-img:hover img {
    transform: scale(1.05);
}

.restaurant-cta {
    padding: 30px;
    background-color: var(--gray-100);
    border-radius: 8px;
}

.restaurant-cta p {
    margin-bottom: 20px;
    color: var(--gray-600);
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: var(--section-padding);
    background-color: var(--gray-100);
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== About Section ===== */
.about {
    position: relative;
    padding: var(--section-padding);
    text-align: center;
    color: var(--white);
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
}

.about .container {
    position: relative;
    z-index: 1;
}

.about .section-title {
    color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray-200);
}

.about-mission {
    margin-top: 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.about-mission h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-light);
}

.about-mission p {
    margin-bottom: 0;
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--section-padding);
    background-color: var(--white);
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: left;
    margin-top: 50px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--gray-800);
}

.contact-item p {
    color: var(--gray-600);
    margin: 0;
}

.contact-item a {
    color: var(--gray-600);
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
    flex-shrink: 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-300);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--gray-300);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    color: var(--gray-300);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    visibility: hidden;
    opacity: 0;
}

.lightbox.active {
    display: flex;
    visibility: visible;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent);
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .bungalow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .restaurant-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .restaurant-img.large {
        grid-row: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .side-contact {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-dark);
        padding: 80px 30px;
        transition: var(--transition);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .header-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-preview-text {
        text-align: center;
    }

    .about-preview-text .section-subtitle,
    .about-preview-text .section-title {
        text-align: center;
    }

    .about-preview-images {
        height: 400px;
    }

    .bungalow-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-item.featured {
        grid-column: span 1;
    }

    .preview-img-1,
    .preview-img-3 {
        width: 70%;
        height: 50%;
    }

    .preview-img-2 {
        width: 60%;
        height: 40%;
    }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Performance Optimizations ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    background-color: var(--gray-200);
}

/* ===== Additional Animations ===== */

/* Loader Spinner */
.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-logo {
    width: 150px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Float Animations */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

.float-animation-delayed {
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Pulse Animation */
.pulse-animation {
    animation: pulseBtn 2s ease-in-out infinite;
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(212, 165, 116, 0); }
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 77, 77, 0.9) 0%, rgba(8, 56, 56, 0.8) 100%);
    z-index: 0;
}

/* Hero Title Lines */
.title-line {
    display: block;
}

.title-line.accent {
    color: var(--accent);
}

/* Scroll Indicator - Mouse */
.scroll-indicator {
    text-align: center;
    animation: none;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 13px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Button Animated */
.btn-animated {
    position: relative;
    overflow: hidden;
}

.btn-animated i {
    transition: transform 0.3s ease;
}

.btn-animated:hover i {
    transform: translateX(5px);
}

.btn-block {
    width: 100%;
}

/* Text Center */
.text-center {
    text-align: center;
}

/* Section Title Light */
.section-title.light {
    color: var(--white);
}

.section-desc.light {
    color: var(--gray-200);
}

/* ===== Features Section ===== */
.features {
    padding: 80px 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--gray-100);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== Preview Images Wrapper ===== */
.preview-img-wrapper {
    position: relative;
    height: 100%;
}

/* ===== Bungalows Preview ===== */
.bungalows-preview {
    position: relative;
    padding: var(--section-padding);
    text-align: center;
    color: var(--white);
    background-color: var(--primary);
    overflow: hidden;
}

.bungalows-preview .bungalows-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bungalows-preview .bungalows-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
}

.bungalows-preview .container {
    position: relative;
    z-index: 1;
}

.bungalow-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.bungalow-slide {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.bungalow-slide .bungalow-image {
    height: 350px;
}

.bungalov-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* ===== Gallery Preview ===== */
.gallery-preview {
    padding: var(--section-padding);
    background: var(--gray-100);
    text-align: center;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    background-color: var(--primary);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-light);
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Video Gallery ===== */
.video-gallery {
    padding: var(--section-padding);
    background: var(--white);
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 15px;
    margin-top: 20px;
}

.video-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    background: var(--gray-800);
}

.video-item.featured {
    grid-column: span 2;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-item:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-btn {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-btn i {
    font-size: 1.3rem;
    color: var(--primary);
    margin-left: 4px;
}

.video-item:hover .play-btn {
    background: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
}

.video-item:hover .play-btn i {
    color: var(--white);
}

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.video-lightbox.active {
    display: flex;
}

.video-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.video-lightbox-close:hover {
    color: var(--accent);
}

.video-lightbox-content {
    width: 90vw;
    max-width: 1000px;
    aspect-ratio: 16/9;
}

.video-lightbox-content video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: var(--black);
}

/* ===== Footer Social ===== */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-contact a {
    color: var(--gray-300);
}

.footer-contact a:hover {
    color: var(--accent);
}

/* ===== Header Dark (for inner pages) ===== */
.header-dark {
    background-color: var(--primary);
}

/* ===== Page Header ===== */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-color: var(--primary);
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--primary);
}

.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header-content p {
    font-size: 1.5rem;
    color: var(--accent-light);
    margin-bottom: 10px;
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--gray-300);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: var(--gray-300);
}

/* ===== Bungalow Page ===== */
.bungalows-page {
    padding: var(--section-padding);
}

.bungalow-detail {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--gray-200);
}

.bungalow-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bungalow-detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.bungalow-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.bungalow-detail-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.bungalow-detail-header p {
    color: var(--gray-600);
}

.bungalow-gallery {
    margin-bottom: 30px;
}

.bungalow-main-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.bungalow-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.bungalow-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.thumbnail {
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--accent);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bungalow-cta {
    text-align: center;
}

/* ===== Restaurant Page ===== */
.restaurant-info {
    padding: var(--section-padding);
}

.restaurant-intro {
    text-align: center;
    margin-bottom: 60px;
}

.restaurant-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.restaurant-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 250px;
}

.restaurant-gallery-item.large {
    grid-row: span 2;
    height: 100%;
}

.restaurant-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.restaurant-gallery-item:hover img {
    transform: scale(1.05);
}

.restaurant-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.restaurant-feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon-lg {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--accent);
    transition: var(--transition);
}

.restaurant-feature:hover .feature-icon-lg {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.restaurant-feature h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.restaurant-feature p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.menu-cta {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 50px;
    text-align: center;
}

.menu-cta-content i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.menu-cta-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.menu-cta-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* ===== About Page ===== */
.about-page {
    padding: var(--section-padding);
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-main-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-main-image {
    position: relative;
}

.image-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-frame img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.2;
}

.mission-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.mission-card {
    background: var(--gray-100);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.mission-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

.why-choose-us {
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.why-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.why-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== Contact Page ===== */
.contact-page {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section .section-subtitle,
.contact-info-section .section-title {
    text-align: left;
}

.contact-cards {
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--gray-100);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-card-content p {
    color: var(--gray-600);
    margin: 0;
}

.contact-card-content a {
    color: var(--gray-600);
}

.contact-card-content a:hover {
    color: var(--accent);
}

.contact-social-section {
    margin-bottom: 30px;
}

.contact-social-section h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link-lg {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--gray-100);
    border-radius: 8px;
    transition: var(--transition);
}

.social-link-lg:hover {
    background: var(--primary);
    color: var(--white);
}

.social-link-lg i {
    font-size: 1.5rem;
}

.social-link-lg.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link-lg.tiktok:hover {
    background: #000;
}

.contact-cta {
    margin-top: 20px;
}

.contact-map-section {
    position: relative;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

/* ===== Additional Responsive Styles ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bungalow-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }

    .restaurant-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-section {
        grid-template-columns: 1fr;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .bungalow-slider {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.big {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .bungalow-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .bungalow-main-image {
        height: 300px;
    }

    .restaurant-gallery-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-gallery-item.large {
        grid-row: span 1;
    }

    .restaurant-features {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: -10px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-item.featured {
        grid-column: span 2;
    }

    .play-btn {
        width: 50px;
        height: 50px;
    }

    .play-btn i {
        font-size: 1rem;
    }

    .footer-content {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .menu-cta {
        padding: 30px 20px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-card-icon {
        margin: 0 auto;
    }
}
