/* ============================================
   GLOBAL STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
    /* Modern color palette inspired by BuildWithAngga */
    --primary-color: #0D0D2B;
    --secondary-color: #6C5CE7;
    --accent-color: #00D9FF;
    --accent-gradient: linear-gradient(135deg, #6C5CE7 0%, #00D9FF 100%);
    --text-dark: #1A1A2E;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --bg-light: #F8FAFC;
    --bg-dark: #0D0D2B;
    --bg-card: #FFFFFF;
    --border-color: #E5E7EB;
    --white: #FFFFFF;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --pink: #EC4899;
    --purple: #8B5CF6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.navbar {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(13, 13, 43, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.nav-brand h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

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

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION - BuildWithAngga Style
   ============================================ */

.hero {
    background: var(--bg-dark);
    color: var(--white);
    min-height: 100vh;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(108, 92, 231, 0.2);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(108, 92, 231, 0.3);
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.4);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(0, 217, 255, 0.1);
}

.hero-trust {
    animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-trust > span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
    display: block;
}

.trust-logos {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 1.2rem;
}

.floating-card .card-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.card-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    right: -30px;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
    padding: 120px 20px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.15rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mt-40 {
    margin-top: 3rem;
}

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

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

.about-text {
    padding: 1.5rem 0;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-table tr {
    border-bottom: 1px solid var(--border-color);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 1rem;
}

.info-table td:first-child {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

/* ============================================
   FEATURES GRID
   ============================================ */

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

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   TABLES
   ============================================ */

.distance-table, .cost-table, .transport-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 2rem;
}

.distance-table thead, .cost-table thead, .transport-table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.distance-table th, .cost-table th, .transport-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
}

.distance-table td, .cost-table td, .transport-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

.distance-table tr:last-child td, .cost-table tr:last-child td, .transport-table tr:last-child td {
    border-bottom: none;
}

.distance-table tr:hover, .cost-table tr:hover, .transport-table tr:hover {
    /* background-color: var(--bg-light); */
}

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

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4.5rem;
}

.room-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid;
}

.room-card.premium {
    border-top-color: #8b7355;
}

.room-card.standard-plus {
    border-top-color: #daa520;
}

.room-card.standard {
    border-top-color: #a8a8a8;
}

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

.room-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.room-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.room-specs {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.price-table {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span {
    color: var(--text-light);
    font-weight: 500;
}

.price-row strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.price-row small {
    display: block;
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 600;
}

.room-card h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.facilities-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.facilities-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.btn-secondary {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #1e4d6d;
    transform: translateY(-2px);
}

/* ============================================
   FACILITIES SECTION
   ============================================ */

.facilities-comparison {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.facilities-comparison thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.facilities-comparison th {
    padding: 1.2rem;
    text-align: center;
    font-weight: 600;
}

.facilities-comparison td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.facilities-comparison td:first-child {
    text-align: left;
    background-color: var(--bg-light);
    font-weight: 600;
}

.facilities-comparison .check {
    color: var(--success);
    font-size: 1.3rem;
}

.facilities-comparison .cross {
    color: var(--danger);
    font-size: 1.3rem;
}

.table-responsive {
    overflow-x: auto;
}

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

.facility-group {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.facility-group h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.facility-group ul {
    list-style: none;
}

.facility-group li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.facility-group li:last-child {
    border-bottom: none;
}

/* ============================================
   GALLERY
   ============================================ */

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

/* ============================================
   TESTIMONI SECTION
   ============================================ */

#testimoni {
    background: linear-gradient(135deg, #0D0D2B 0%, #1a1a4d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

#testimoni::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

#testimoni::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimoni-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 120px 20px 80px;
}

.testimoni-left {
    padding-right: 40px;
}

.testimoni-badge {
    display: inline-block;
    background: rgba(108, 92, 231, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.5);
    color: #00D9FF;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.testimoni-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.testimoni-title .highlight {
    background: linear-gradient(135deg, #6C5CE7 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimoni-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimoni-right {
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: float-animation 3s ease-in-out infinite;
}

.review-card:nth-child(odd) {
    animation: float-up 3s ease-in-out infinite;
}

.review-card:nth-child(even) {
    animation: float-down 3s ease-in-out infinite;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 217, 255, 0.4);
    transform: translateY(-5px);
}

.review-quote {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.review-name {
    color: #00D9FF;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0;
}

@keyframes float-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-down {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Hide old testimonial styles */
.testimonial-wrapper {
    display: none;
}

.testimonial-item {
    display: none;
}

.testimonials-carousel {
    display: none;
}

@media (max-width: 1024px) {
    .testimoni-hero {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 80px 20px 60px;
    }

    .testimoni-left {
        padding-right: 0;
    }

    .testimoni-title {
        font-size: 2rem;
    }

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

@media (max-width: 768px) {
    .testimoni-hero {
        padding: 60px 20px 40px;
    }

    .testimoni-title {
        font-size: 1.5rem;
    }

    .testimoni-description {
        font-size: 0.95rem;
    }

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

    .review-card {
        padding: 1rem;
    }

    .review-quote {
        font-size: 0.85rem;
        min-height: 40px;
    }
}

.rating-table {
    margin-top: 2rem;
}

.rating-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rating-table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.rating-table th, .rating-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.rating-table tr:last-child td {
    border-bottom: none;
}

.rating-table tr:hover {
    background-color: var(--bg-light);
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4.5rem;
    align-items: start;
}

.location-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.location-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.address-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.address-box p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.address-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.address-box a:hover {
    color: var(--secondary-color);
}

.address-box hr {
    margin: 1rem 0;
    border: none;
    border-top: 2px solid var(--border-color);
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.location-map iframe {
    display: block;
}

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

.direction-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-color);
}

.direction-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.direction-card ol {
    margin-left: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.direction-card li {
    margin-bottom: 0.8rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.faq-item {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.faq-question:hover {
    background-color: var(--bg-light);
    transform: translateX(5px);
}

.faq-question span {
    text-align: left;
    flex: 1;
}

.faq-question i {
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.5rem;
}

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

.faq-answer ol, .faq-answer ul {
    margin-left: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* ============================================
   PROMO SECTION
   ============================================ */

.promo {
    background: linear-gradient(135deg, #ff6b9d 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.promo-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.promo-items {
    margin-bottom: 2rem;
}

.promo-items p {
    font-size: 1.3rem;
    margin: 0.8rem 0;
    font-weight: 600;
}

.promo-note {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.promo .btn-cta {
    background-color: var(--primary-color);
    color: var(--white);
}

.promo .btn-cta:hover {
    background-color: #1e4d6d;
}

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

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

.contact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn.instagram {
    background-color: #e4405f;
}

.social-btn.instagram:hover {
    background-color: #d63447;
}

.social-btn.facebook {
    background-color: #1877f2;
}

.social-btn.facebook:hover {
    background-color: #0a66c2;
}

.social-btn.tiktok {
    background-color: #000;
}

.social-btn.tiktok:hover {
    background-color: #333;
}

.reservation-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.reservation-info p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.format-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
    border-left: 4px solid var(--secondary-color);
    font-family: 'Courier New', monospace;
    color: var(--text-dark);
    white-space: pre-wrap;
    word-wrap: break-word;
}

.format-box p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a {
    text-decoration: none;
}

.badge-whatsapp {
    background-color: #25d366;
    color: var(--white);
}

.badge-whatsapp:hover {
    background-color: #20ba5a;
}

.badge-instagram {
    background-color: #e4405f;
    color: var(--white);
}

.badge-instagram:hover {
    background-color: #d63447;
}

.badge-maps {
    background-color: #4285f4;
    color: var(--white);
}

.badge-maps:hover {
    background-color: #3367d6;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.floating-wa:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-wa:active {
    transform: scale(0.95);
}

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

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-trust {
        text-align: center;
    }
    
    .trust-logos {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image-wrapper img {
        height: 350px;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.2);
        gap: 1rem;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-img {
        height: 40px;
        max-width: 50px;
    }

    .nav-brand h1 {
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta, .btn-secondary-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .section {
        padding: 80px 20px;
    }

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

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

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .section-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .table-responsive {
        overflow-x: auto;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .promo-content h3 {
        font-size: 1.8rem;
    }

    .promo-items p {
        font-size: 1.1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 15px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .logo-img {
        height: 35px;
        max-width: 45px;
    }

    .nav-brand h1 {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .btn-cta, .btn-secondary-outline, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .room-card {
        padding: 1.5rem;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .facilities-list-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .format-box {
        font-size: 0.8rem;
    }

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

    .video-item iframe {
        height: 250px !important;
    }

    .testimoni-hero {
        padding: 40px 15px 30px;
    }

    .testimoni-title {
        font-size: 1.3rem;
    }

    .review-card {
        padding: 1rem;
    }

    .review-quote {
        font-size: 0.85rem;
        min-height: auto;
    }

    .floating-wa {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}
}

/* ============================================
   VIDEOS SECTION
   ============================================ */

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.video-item {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.video-item iframe {
    display: block;
    border-radius: 8px;
    width: 100%;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-item iframe {
        height: 300px !important;
    }

    /* Responsive Table */
    .table-responsive {
        overflow-x: auto;
        margin: 0 -20px;
    }

    .distance-table, .cost-table, .transport-table {
        min-width: 450px;
        margin-top: 1rem;
    }

    .distance-table th, .cost-table th, .transport-table th {
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
    }

    .distance-table td, .cost-table td, .transport-table td {
        padding: 0.7rem 0.6rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   SCROLL TO TOP - HIDDEN
   ============================================ */

.scroll-to-top {
    display: none !important;
}
