/* Custom CSS for Energy Guest House */

:root {
    --primary-color: #2c4a3b; /* Deep forest green */
    --secondary-color: #d4a373; /* Earthy sand/gold */
    --bg-light: #f9f6f0;
    --bg-dark: #1e2622;
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.section {
    padding: 100px 0;
}

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

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--secondary-color);
    margin: 20px 0;
}

.divider.center {
    margin: 20px auto 40px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-primary-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid var(--text-light);
    transition: var(--transition);
}

.btn-primary-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

nav.scrolled .logo-text,
nav.scrolled .nav-links a {
    color: var(--text-dark);
}

nav.scrolled .btn-primary-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

nav.scrolled .btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.nav-links a:not(.btn-primary-outline):hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
}

nav.scrolled .mobile-menu-btn {
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.65));
    z-index: 3;
}

.hero-slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease-out;
    transform: scale(1.05);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInDown 1s ease;
    position: relative;
    z-index: 10;
}

.hero .subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator a {
    color: #fff;
    font-size: 24px;
    opacity: 0.7;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.features-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature span {
    font-weight: 600;
    font-size: 0.9rem;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-images img {
    position: absolute;
    border-radius: 8px;
    object-fit: cover;
    transition: var(--transition);
}

.about-images .img-1 {
    width: 70%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 2;
}

.about-images .img-2 {
    width: 60%;
    height: 70%;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.about-images img:hover {
    transform: scale(1.02);
    z-index: 3;
}

/* Premium Rooms Section */
.room-showcase {
    margin-top: 60px;
}

.room-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.room-row.reverse {
    flex-direction: row-reverse;
}

.room-image-large {
    flex: 1;
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
}

.room-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.room-row:hover .room-image-large img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.room-details {
    flex: 1;
    padding: 20px;
}

.room-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.room-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.room-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.amenity i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 992px) {
    .room-row, .room-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .room-image-large {
        width: 100%;
        height: 350px;
    }
    
    .room-details {
        padding: 0;
    }
}

/* Cafe Section */
.text-gold {
    color: var(--secondary-color) !important;
    font-weight: 600;
    letter-spacing: 2px;
}

.cafe-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.cafe-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.cafe-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0 40px;
}

.cafe-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.cafe-feat-item i {
    color: var(--secondary-color);
}

.cafe-images-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    height: 480px;
}

.cafe-main-view {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.cafe-main-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.cafe-sub-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    min-height: 0;
}

.cafe-sub {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 0;
}

.cafe-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cafe-sub:hover img {
    transform: scale(1.08);
}

/* Cafe Responsive */
@media (max-width: 992px) {
    .cafe-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cafe-images-layout {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .cafe-images-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    .cafe-sub-images {
        flex-direction: row;
        height: 150px;
    }
    .cafe-main-view {
        height: 250px;
    }
}

/* Digital Cafe Menu Modal */
.menu-modal-overlay {
    display: none;
    position: fixed;
    z-index: 2500;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 40px 20px;
    animation: fadeIn 0.3s ease;
}

.menu-modal-card {
    background-color: var(--bg-light);
    max-width: 800px;
    margin: 40px auto;
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-menu-modal {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 35px;
    font-weight: 300;
    color: #888;
    cursor: pointer;
    transition: var(--transition);
}

.close-menu-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.menu-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
}

.menu-header p {
    text-align: center;
    color: #666;
    margin-top: 5px;
    font-size: 1.1rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.menu-tab-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
}

.menu-tab-btn:hover {
    color: var(--primary-color);
    background-color: rgba(44, 74, 59, 0.05);
}

.menu-tab-btn.active {
    color: #fff;
    background-color: var(--primary-color);
}

.menu-tab-content {
    display: none;
}

.menu-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.menu-item-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.menu-item-info h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}

.menu-item-info h4 span {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.menu-item-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@media (max-width: 768px) {
    .menu-item-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .menu-modal-card {
        padding: 40px 20px;
    }
    .menu-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    .menu-tab-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Gallery Section */
.section-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

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

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Amenities Section */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.amenity-card {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.amenity-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.amenity-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Contact Section */
.contact-card {
    background-color: #fff;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    color: var(--text-dark);
}

.contact-info {
    background-color: var(--primary-color);
    color: #fff;
    padding: 50px;
}

.contact-info h2 {
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.contact-info > p {
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item p {
    opacity: 0.8;
}

.whatsapp-link {
    color: #25D366;
    font-weight: 600;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

.contact-form {
    padding: 50px;
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group.row {
    display: flex;
    gap: 20px;
}

.form-group.row .col {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #faf9f6;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.18);
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #222;
    color: #fff;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    animation: zoomIn 0.3s;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ==========================================
   Premium Video Testimonials Section
   ========================================== */
.testimonials-section {
    background: radial-gradient(circle at center, #1b2621 0%, #111815 100%);
    border-top: 1px solid rgba(212, 163, 115, 0.15);
    border-bottom: 1px solid rgba(212, 163, 115, 0.15);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative golden mesh overlay */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 163, 115, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0b0f0d;
    border: 1px solid rgba(212, 163, 115, 0.15);
    aspect-ratio: 9 / 16; /* Portrait reels style */
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 163, 115, 0.25);
    border-color: var(--secondary-color);
}

.testimonial-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.testimonial-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: filter 0.4s ease, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-card:hover .testimonial-video-preview {
    filter: brightness(0.95);
    transform: scale(1.05);
}

/* Card Overlay and Glassmorphic Content */
.testimonial-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 3;
}

/* Glowing Play Button */
.play-btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 60px;
    height: 60px;
    background: rgba(212, 163, 115, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 25px rgba(212, 163, 115, 0.6);
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 4;
}

/* Shift icon slightly to make it look visually centered inside circle */
.play-btn-glow i {
    transform: translateX(2px);
}

.testimonial-card:hover .play-btn-glow {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary-color);
    box-shadow: 0 0 35px rgba(212, 163, 115, 0.9);
    opacity: 1;
}

.testimonial-info-block {
    margin-top: auto;
    text-align: left;
    transition: transform 0.3s ease;
}

.rating-stars {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    gap: 4px;
}

.testimonial-info-block h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.guest-loc {
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.guest-loc i {
    font-size: 0.75rem;
}

.quote-preview {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.5;
    font-style: italic;
    font-weight: 300;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================
   Luxury Video Testimonial Modal/Lightbox
   ========================================== */
.testimonial-modal-overlay {
    display: none;
    position: fixed;
    z-index: 2500;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 12, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow-y: auto;
    padding: 40px 20px;
    animation: fadeIn 0.3s ease;
}

.testimonial-modal-card {
    background: radial-gradient(circle at center, #1b2621 0%, #0f1612 100%);
    border: 1px solid rgba(212, 163, 115, 0.25);
    max-width: 900px;
    margin: 40px auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 163, 115, 0.15);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2501;
}

.close-testimonial-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2510;
}

.close-testimonial-modal:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.testimonial-modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.testimonial-modal-player-container {
    background: #000;
    position: relative;
    aspect-ratio: 9 / 16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(212, 163, 115, 0.15);
}

.testimonial-modal-player-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-modal-details {
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: left;
}

.modal-rating {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    gap: 6px;
}

.testimonial-modal-details h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.1;
}

.modal-location {
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-container {
    position: relative;
    margin-bottom: 50px;
}

.quote-icon-left,
.quote-icon-right {
    font-size: 1.8rem;
    color: rgba(212, 163, 115, 0.25);
    position: absolute;
}

.quote-icon-left {
    top: -20px;
    left: -20px;
}

.quote-icon-right {
    bottom: -20px;
    right: 0;
}

#modal-guest-quote {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-family: var(--font-body);
    margin: 0;
    padding: 0 10px;
}

.modal-book-btn {
    align-self: flex-start;
    padding: 14px 35px;
    font-size: 0.9rem;
}

/* Responsive overrides for Testimonials */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
        padding: 0 10px;
    }
    .testimonial-card {
        border-radius: 16px;
    }
    .testimonial-card-overlay {
        padding: 16px;
    }
    .testimonial-info-block h4 {
        font-size: 1.05rem;
    }
    .guest-loc {
        font-size: 0.72rem;
        margin-bottom: 6px;
    }
    .quote-preview {
        font-size: 0.7rem;
        -webkit-line-clamp: 2;
    }
    .testimonial-modal-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-modal-player-container {
        border-right: none;
        border-bottom: 1px solid rgba(212, 163, 115, 0.15);
    }
    .testimonial-modal-details {
        padding: 40px 24px;
    }
    .testimonial-modal-details h3 {
        font-size: 2rem;
    }
    .modal-location {
        margin-bottom: 25px;
    }
    .quote-container {
        margin-bottom: 30px;
    }
    #modal-guest-quote {
        font-size: 1.05rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 4rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 400px; margin-top: 20px; }
    .contact-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active { display: flex; }
    .nav-links a { color: var(--text-dark); margin: 10px 0; }
    .mobile-menu-btn { display: block; }
    
    .hero h1 { font-size: 3rem; }
    .section { padding: 60px 0; }
    
    .footer-content { flex-direction: column; gap: 30px; text-align: center; }
    .footer-brand { flex-direction: column; }
}

/* Cinematic Moments Section */
.cinematic-section {
    background-color: #faf8f5;
    border-top: 1px solid rgba(200, 150, 102, 0.12);
    border-bottom: 1px solid rgba(200, 150, 102, 0.12);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 320px));
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(200, 150, 102, 0.15);
    background: #000;
    aspect-ratio: 9/16; /* Pristine Portrait Reel aspect ratio! */
    box-shadow: 0 15px 40px rgba(27, 43, 35, 0.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(200, 150, 102, 0.2);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.4s ease;
}

.video-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(17, 33, 27, 0.98));
    color: #fff;
    z-index: 10;
    transition: padding 0.3s ease;
}

.video-card-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--secondary-color);
}

.video-card-overlay p {
    font-size: 0.82rem;
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr 1fr; /* Keep clean side-by-side vertical reels on mobile! */
        gap: 16px;
        padding: 0 10px;
    }
    .video-card {
        border-radius: 16px;
    }
    .video-card-overlay {
        padding: 20px 12px 15px 12px;
    }
    .video-card-overlay h4 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    .video-card-overlay p {
        font-size: 0.72rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Floating WhatsApp Bubble */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-ring 2s infinite;
}

.whatsapp-bubble i {
    font-size: 32px;
    transition: transform 0.3s ease;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-bubble:hover i {
    transform: rotate(10deg) scale(1.05);
}

.whatsapp-badge {
    position: absolute;
    right: 75px;
    background-color: #fff;
    color: #24302b;
    padding: 8px 16px 8px 28px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid rgba(37, 211, 102, 0.15);
    opacity: 0;
    transform: translateX(10px);
    animation: badge-reveal 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 1.5s;
}

/* Live Green Indicator inside Badge */
.whatsapp-badge::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 8px 25px rgba(37, 211, 102, 0.3); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 8px 25px rgba(37, 211, 102, 0.3); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 25px rgba(37, 211, 102, 0.3); }
}

@keyframes badge-reveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments for WhatsApp Bubble on smaller viewports */
@media (max-width: 768px) {
    .whatsapp-bubble {
        bottom: 140px !important; /* Float perfectly above the stacked category swiper and bottom navigation deck! */
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-bubble i {
        font-size: 28px;
    }
    .whatsapp-badge {
        right: 65px;
        font-size: 0.8rem;
        padding: 6px 12px 6px 24px;
    }
    .whatsapp-badge::before {
        left: 10px;
        width: 6px;
        height: 6px;
    }
    body {
        padding-bottom: 75px !important; /* Adds bottom breathing room for the sticky nav bar! */
    }
}

/* Sticky Bottom Mobile Navigation Bar */
.mobile-bottom-nav {
    position: fixed !important;
    bottom: 0 !important;
    top: auto !important; /* Force override of any top alignment inherits */
    left: 0 !important;
    width: 100%;
    height: 65px;
    background: rgba(17, 33, 27, 0.95); /* Deep forest green glassmorphism */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(200, 150, 102, 0.25);
    display: none; /* Hidden on desktop */
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    z-index: 1400;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    box-sizing: border-box;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    gap: 4px;
    height: 100%;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    color: var(--secondary-color); /* Elegant Gold active color */
}

.mobile-bottom-nav .nav-item.active i {
    transform: translateY(-1px) scale(1.05);
}

.mobile-bottom-nav .nav-item.highlight {
    color: #25d366; /* Stand-out WhatsApp green */
}

.mobile-bottom-nav .nav-item.highlight:hover {
    color: #20ba5a;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: grid; /* Displayed only on mobile screen widths */
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 150, 102, 0.35);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1300;
    box-shadow: 0 8px 30px rgba(27, 43, 35, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(27, 43, 35, 0.25);
    transform: translateY(-3px);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 140px !important; /* Float perfectly symmetrical with the WhatsApp bubble above the stacked bars! */
        left: 20px;
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    /* Premium Mobile Contact Form Adjustments */
    .contact-card {
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        margin: 0 auto;
        overflow: hidden;
    }

    .contact-info {
        padding: 35px 24px !important;
        border-radius: 16px 16px 0 0;
    }

    .contact-info h2 {
        font-size: 2rem !important;
        margin-bottom: 12px;
    }

    .contact-info > p {
        margin-bottom: 25px !important;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .contact-item {
        margin-bottom: 20px !important;
        gap: 15px !important;
    }

    .contact-item i {
        font-size: 1.3rem !important;
        margin-top: 2px !important;
    }

    .contact-item h4 {
        font-size: 0.95rem !important;
        margin-bottom: 3px !important;
    }

    .contact-item p {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }

    .contact-form {
        padding: 35px 24px !important;
    }

    .contact-form h3 {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
        text-align: center;
    }

    .form-group {
        margin-bottom: 15px !important;
    }

    .form-group.row {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .form-group.row .col {
        width: 100% !important;
    }

    .form-group label {
        margin-bottom: 6px !important;
        font-size: 0.82rem !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px !important;
        font-size: 0.95rem !important;
        border-radius: 6px !important;
    }

    /* 3-Column Mobile Gallery Grid Adjustments */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important; /* Elegant tight Instagram-style grid spacing! */
    }

    .gallery-item {
        height: auto !important;
        aspect-ratio: 1 / 1 !important; /* Perfectly square, luxury tiles! */
        border-radius: 6px !important;
    }
}
