/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    padding-top: 0;
}

/* ============================================
   COLOR PALETTE
   ============================================ */

:root {
    --primary-dark: #1a472a;
    --primary-green: #2d7a4a;
    --accent-orange: #ff9f1c;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #666;
    --border-light: #e0e0e0;
    --white: #ffffff;
}

/* ============================================
   PRIVACY BANNER
   ============================================ */

.privacy-banner {
    background: linear-gradient(135deg, #1a472a 0%, #2d7a4a 100%);
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid var(--accent-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-banner p {
    margin: 0;
    color: #fff;
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */

.floating-buttons {
    position: fixed;
    left: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.fab-call {
    background-color: #ff7043;
    background: linear-gradient(135deg, #ff7043 0%, #ff5722 100%);
}

.fab-call:hover {
    background: linear-gradient(135deg, #ff8a65 0%, #ff7043 100%);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 16px rgba(255, 112, 67, 0.4);
}

.fab-whatsapp {
    background-color: #25d366;
    background: linear-gradient(135deg, #25d366 0%, #20ba5e 100%);
}

.fab-whatsapp:hover {
    background: linear-gradient(135deg, #34d374 0%, #25d366 100%);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.fab span {
    display: block;
    line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-buttons {
        left: 15px;
        bottom: 20px;
        gap: 12px;
    }

    .fab {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

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

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-orange);
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    background-color: var(--primary-dark);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 71, 42, 0.85);
    z-index: -1;
    pointer-events: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo h2 {
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin: 0;
}

.logo p {
    color: white;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 300;
}

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

.nav-menu a {
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #1a472a 0%, #2d7a4a 100%);
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 71, 42, 0.75);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 159, 28, 0.1);
    border-radius: 50%;
    z-index: 0;
    display: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 159, 28, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-btn.call-btn {
    background: linear-gradient(135deg, #ff7043 0%, #ff5722 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.hero-btn.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
    background: linear-gradient(135deg, #ff8a65 0%, #ff7043 100%);
}

.hero-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #20ba5e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.hero-btn.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #34d374 0%, #25d366 100%);
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   CTA BUTTON
   ============================================ */

.cta-button {
    display: inline-block;
    background-color: var(--accent-orange);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent-orange);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background-color: var(--light-bg);
}

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

.about-content h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--primary-green);
    font-weight: 500;
    font-size: 1.05rem;
}

.about-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent-orange);
}

.highlight-box h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.highlight-box p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   ROOMS SECTION
   ============================================ */

.rooms {
    background-color: white;
}

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

.room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.room-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.room-info {
    padding: 2rem;
}

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

.room-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.room-amenities {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.room-amenities span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price {
    font-size: 1.8rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin: 1rem 0;
}

.price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.room-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.room-btn {
    padding: 0.8rem 1rem;
    border: 2px solid;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-btn {
    border-color: #ff7043;
    color: #ff7043;
    background-color: transparent;
}

.call-btn:hover {
    background-color: #ff7043;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 112, 67, 0.3);
}

.whatsapp-btn {
    border-color: #25d366;
    color: #25d366;
    background-color: transparent;
}

.whatsapp-btn:hover {
    background-color: #25d366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .room-buttons {
        grid-template-columns: 1fr;
    }
}

.room-cta {
    display: inline-block;
    background-color: var(--primary-dark);
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.room-cta:hover {
    background-color: var(--accent-orange);
    color: white;
}

/* ============================================
   AMENITIES SECTION
   ============================================ */

.amenities {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    color: white;
}

.amenities .section-title {
    color: white;
}

.amenities .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.amenity-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: rgba(255, 159, 28, 0.2);
    transform: translateY(-5px);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.amenity-item h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.amenity-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews {
    background-color: var(--light-bg);
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stars {
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: block;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form h3,
.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* ============================================
   FORM STYLES
   ============================================ */

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
    color: var(--text-dark);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 122, 74, 0.1);
}

input::placeholder {
    color: var(--text-light);
}

.submit-btn {
    background-color: var(--primary-dark);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 159, 28, 0.3);
}

/* ============================================
   CONTACT INFO
   ============================================ */

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-item a {
    color: var(--primary-green);
    font-weight: 600;
}

.payment-methods {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.payment-methods h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 100%);
    color: white;
}

.map-section .section-title {
    color: white;
    margin-bottom: 0.5rem;
}

.map-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.map-container iframe {
    border-radius: 12px;
}

.map-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
}

.map-info h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.map-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .map-section {
        padding: 2rem 1rem;
    }

    .map-container {
        height: 300px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

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

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 50px 0;
    }

    .hero {
        padding: 80px 20px;
        min-height: 400px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-dark);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    section {
        padding: 40px 0;
    }

    .logo h2 {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #f0f0f0;
    }

    .light-bg,
    .about {
        background-color: #2a2a2a;
    }

    input,
    select,
    textarea {
        background-color: #333;
        color: #f0f0f0;
        border-color: #444;
    }

    .room-card,
    .review-card,
    .highlight-box {
        background-color: #2a2a2a;
        color: #f0f0f0;
    }
}
