/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0b1f15;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #ffffff;
    /* background-color: #0b1f15; */
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 100px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: background 0.3s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-reserve-top {
    background-color: #166534;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-reserve-top:hover {
    background-color: #15803d;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 100px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text-col {
    flex: 1;
}

.badge-location {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a3e635;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-title .highlight {
    color: #22c55e;
}

.hero-description {
    font-size: 1.05rem;
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, background-color 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #166534;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #15803d;
}

.btn-instagram {
    background-color: #ffffff;
    color: #0b1f15;
}

.btn-instagram:hover {
    background-color: #f3f4f6;
}

.btn-location {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-location:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.arrow {
    font-size: 0.75rem;
    margin-left: 5px;
}

.hero-features-inline {
    display: flex;
    gap: 30px;
}

.feature-tag {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e5e7eb;
    font-size: 0.9rem;
}

.feature-tag i {
    color: #22c55e;
    font-size: 1.2rem;
    margin-top: 2px;
}

.feature-tag small {
    color: #9ca3af;
    font-size: 0.8rem;
}

.hero-card-col {
    flex: 0 0 420px;
}

.floating-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    position: relative;
}

.floating-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.floating-card-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(11, 31, 21, 0.85);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

.amenities-section {
    background-color: #f8fafc;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.amenity-info p {
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.4;
}

.amenity-card-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.amenities-grid-img {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1150px;
    margin: 0 auto;
    justify-content: center;
}

.amenity-card-img {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.amenity-card-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.08);
}

.amenity-card-img .amenity-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.amenity-card-img .amenity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.amenity-card-img:hover .amenity-img-wrapper img {
    transform: scale(1.05);
}

.amenity-card-img .amenity-info {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.amenity-card-img .icon-badge {
    font-size: 1.4rem;
    color: #166534;
    margin-bottom: 10px;
}

.amenity-card-img h3 {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #0f291c;
    margin-bottom: 8px;
    line-height: 1.3;
}

.amenity-card-img p {
    font-size: 0.9rem;
    color: #15803d;
    font-weight: 600;
    margin: 0;
}

.icons-bar {
    display: flex;
    justify-content: space-between;
    background: #0f291c;
    border-radius: 12px;
    padding: 25px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 15px;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #d1d5db;
    font-weight: 500;
}

.icon-item i {
    color: #22c55e;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background-color: #e2e8f0;;
    padding: 80px 0;
}

.cta-container {
    background: #132e20;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-text-col {
    flex: 1;
}

.cta-subtitle-top {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a3e635;
    display: block;
    margin-bottom: 10px;
}

.cta-text-col h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-text-col p {
    color: #9ca3af;
    font-size: 1rem;
    margin-bottom: 30px;
}

.cta-quote-col {
    flex: 0 0 350px;
    text-align: right;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.handwritten-quote {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: #22c55e;
    line-height: 1.1;
    transform: rotate(-4deg);
    display: inline-block;
    text-align: center;
}

.footer-col-brand {
    flex: 1;
}

.footer-col-info, .footer-col-contact {
    flex: 1;
}

.footer-info-item strong {
    font-size: 0.95rem;
    display: block;
    margin-bottom: 3px;
}

.footer-info-item span, .footer-info-item a {
    color: #9ca3af;
    font-size: 0.85rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6b7280;
    font-size: 0.85rem;
}

.feature-tag-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.feature-tag-link:hover {
    opacity: 0.85;
}

.floating-card-rating {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(11, 31, 21, 0.9);
    padding: 12px 16px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-card-rating .stars {
    color: #facc15;
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.floating-card-rating .rating-score {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
}

.floating-card-rating .rating-score small {
    font-weight: 400;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-left: 4px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.amenity-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s;
}

.amenity-card:hover {
    transform: translateY(-4px);
}

.amenity-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.amenity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.amenity-info .icon-badge {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #22c55e;
}

.amenity-info h3 {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #132e20;
    line-height: 1.2;
}

.icons-bar-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e2e8f0;
    border-radius: 12px;
    padding: 20px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 40px;
}

.icons-bar-centered .icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #132e20;
    font-weight: 500;
}

.icons-bar-centered .icon-item i {
    color: black;
    font-size: 1.1rem;
}

.footer {
    background: #0b1f15;
    color: #d1d5db;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    align-items: flex-start;
}

.footer-col-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-col-brand .logo-img {
    width: 100px;
    height: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #22c55e;
}

.logo-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #166534;
}

.footer-desc {
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.footer-info-item:last-child {
    margin-bottom: 0;
}

.footer-info-item i {
    font-size: 1.2rem;
    color: #22c55e;
    margin-top: 3px;
}

.footer-info-item div {
    display: flex;
    flex-direction: column;
}

.footer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-bottom: 2px;
}

.footer-info-item strong, 
.footer-info-item span, 
.footer-info-item a {
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
}

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #0f291c;
    cursor: pointer;
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 235px);
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    justify-items: center;
}

.modal-img-wrapper {
    width: 235px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #f1f5f9;
}

.modal-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-gallery-grid img:hover {
    transform: scale(1.05) translateZ(0);
}

/* Responsive */
@media (max-width: 1197px) {
    .feature-tag {
        display: inline-flex;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
        color: #e5e7eb;
        font-size: 0.9rem;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-tag-link, 
    .hero-features, 
    .features-wrapper { 
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
    }
    .hero-card-col {
        width: 100%;
        flex: auto;
    }
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-quote-col {
        text-align: center;
        margin-top: 30px;
    }
    .icons-bar {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
    .cta-quote-col {
        flex: 0;
    }
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 8px;
    }
    .amenities-grid-img {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
        gap: 10px;
    }
    .amenity-info {
        padding: 8px;
    }
    .amenity-info h3 {
        font-size: 0.65rem;
    }
    .amenity-info .icon-badge {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
}

@media (max-width: 768px) {   
    .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col-brand .logo {
        justify-content: center;
    }

    .footer-info-item {
        justify-content: center;
        align-items: center;
        text-align: left; 
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .icons-bar-centered {
        padding: 15px 20px;
        gap: 20px;
    }

    .icons-bar-centered .icon-item {
        font-size: 0.85rem;
        gap: 8px;
    }

    .icons-bar-centered .icon-item i {
        font-size: 1rem;
    }
}