/* Section Styles */
.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    color: var(--warm-gold);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--ivory-white);
}

.section-intro h2 .highlight {
    font-weight: 600;
    color: var(--warm-gold);
}

.section-intro p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(248, 246, 242, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--deep-charcoal);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.why-choose-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(248, 246, 242, 0.02);
    border: 1px solid rgba(248, 246, 242, 0.05);
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.why-choose-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(248, 246, 242, 0.05);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--warm-gold);
    transition: all 0.5s ease;
}

.why-choose-item:hover .why-choose-icon {
    background: var(--warm-gold);
    color: var(--deep-charcoal);
    transform: rotate(360deg) scale(1.1);
}

.why-choose-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--ivory-white);
}

.why-choose-item p {
    font-family: 'Inter', sans-serif;
    color: rgba(248, 246, 242, 0.6);
    line-height: 1.7;
    font-size: 14px;
}

/* Premium Testimonials */
.premium-testimonials {
    background: rgba(26, 26, 26, 0.5);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.premium-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.premium-testimonial {
    background: rgba(248, 246, 242, 0.02);
    border: 1px solid rgba(248, 246, 242, 0.05);
    padding: 45px;
    border-radius: 4px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.premium-testimonial:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(248, 246, 242, 0.05);
}

.testimonial-quote {
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.premium-testimonial:hover .testimonial-quote {
    color: rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: rgba(248, 246, 242, 0.8);
    margin-bottom: 35px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.author-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--ivory-white);
}

.author-info span {
    color: rgba(248, 246, 242, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.testimonial-stars span {
    color: var(--warm-gold);
}

/* Gallery Section */
.gallery-section {
    background: var(--deep-charcoal);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-overlay span {
    color: var(--ivory-white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Room Rates Section */
.room-rates-section {
    background: linear-gradient(135deg, rgba(46, 74, 61, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.room-rates-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/public/asset/reception.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.35;
    z-index: 0;
}

.room-rates-section > .section-wrapper {
    position: relative;
    z-index: 1;
}

.rates-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.rates-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rates-table table {
    width: 100%;
    border-collapse: collapse;
}

.rates-table thead {
    background: rgba(212, 175, 55, 0.2);
    color: var(--ivory-white);
}

.rates-table th {
    padding: 15px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rates-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ivory-white);
}

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

.rates-table tbody tr:nth-child(even) {
    background: rgba(212, 175, 55, 0.05);
}

.rates-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.15);
}

/* Hide mobile-only elements on desktop */
.mobile-only {
    display: none;
}

/* Show desktop-only elements on desktop */
.desktop-only {
    display: table-cell;
}

/* Hide nested rows on desktop */
.nested-row {
    display: none !important;
}

/* Remove clickable cursor on desktop */
.clickable-row {
    cursor: default;
}

.rates-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--ivory-white);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--warm-gold);
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section li {
    padding: 12px 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ivory-white);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
}

.info-section li::before {
    content: '✓';
    color: var(--warm-gold);
    font-weight: bold;
    margin-right: 12px;
    margin-top: 2px;
}

.info-section li:last-child {
    border-bottom: none;
}

.info-section strong {
    color: var(--warm-gold);
}
