:root {
    --primary-red: #E31837;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark: #1a1a1a;
    --transition: all 0.3s ease;
}

/* Glass Effect Header */
.text-logo {
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0;
    transition: var(--transition);
}

.text-logo:hover {
    color: var(--white) !important;
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('../img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding-top: 120px; /* Added to account for fixed header */
    padding-bottom: 100px;
    color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
}

/* Adjust the first section after hero */
.features-section {
    position: relative;
    z-index: 2;
    margin-top: -50px; /* Optional: creates a slight overlap effect */
    background: var(--white);
    border-radius: 30px 30px 0 0;
}

.glass-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand img {
    transition: var(--transition);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 100px;
    color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-form input {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    height: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus {
    background: var(--white);
    box-shadow: 0 0 15px rgba(227, 24, 55, 0.2);
}

.contact-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-form input {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    height: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus {
    background: var(--white);
    box-shadow: 0 0 15px rgba(227, 24, 55, 0.2);
}

.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    height: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #c41329;
    border-color: #c41329;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 24, 55, 0.3);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-duration: 0.8s;
    transition-property: opacity, transform;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .booking-form {
        margin-top: 20px;
    }
}


/* Features Section */
.features-section {
    background: var(--white);
    padding: 80px 0;
}

.feature-card {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card svg {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Rooms Showcase Section */
.rooms-section {
    padding: 100px 0;
    background: var(--light-gray);
}

/* Enhanced Room Cards */
.room-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-content {
    padding: 2rem;
}

.room-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.room-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.room-amenities span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.95rem;
}



.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.room-content {
    padding: 25px;
}

.room-features {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-gray);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background: var(--light-gray);
    border-radius: 10px !important;
    font-weight: 600;
    padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-red);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 0 0 10px 10px;
}

/* Promo Section */
.promo-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: 120px 0;  /* Increased padding top and bottom */
}

.promo-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.promo-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.promo-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.promo-features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-features i {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .promo-content h2 {
        font-size: 2rem;
    }
    
    .promo-section {
        min-height: 500px;
    }
}


/* Amenities Section */
.amenities-section {
    padding: 100px 0;
}

.amenity-card {
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
    background: var(--primary-red);
    color: var(--white);
    transform: rotateY(180deg);
}

.amenity-title {
    margin: 15px 0;
    font-weight: 600;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-red);
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.booking-card {
    position: sticky;
    top: 100px;
    padding: 35px;
    margin-left: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: var(--white);
    transition: all 0.3s ease;
}

.booking-card:hover {
    box-shadow: 0 15px 40px rgba(var(--primary-red-rgb), 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.footer-section {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-red);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    margin-right: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-red);
}

/* Room Detail Page Styles */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    background: #128C7E;
}

.detail-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.detail-box h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.gallery-thumbs img {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.gallery-thumbs img:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Room Detail Hero Section */
@media (min-width: 992px) {
    .room-detail-hero {
        margin-top: 50px;
    }

    .room-detail-sidebar {
        position: sticky;
        top: 100px;
        height: 100%;
        align-self: flex-start;
    }

    .booking-card {
        position: relative;
        top: 0;
    }
}

.mega-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .mega-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

.room-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.meta-item {
    text-align: center;
}

.meta-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenity-item i {
    color: var(--primary-red);
}

.room-policies {
    list-style: none;
    padding: 0;
}

.room-policies li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
    .main-image {
        height: 400px;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Info Boxes Section */
.info-section {
    background: var(--white);
    padding: 80px 0;
}

.info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-10px);
}

.info-box:hover::before {
    transform: scaleY(1);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.info-box:hover .info-icon {
    background: var(--primary-red);
    color: var(--white);
    transform: rotateY(180deg);
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.info-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);

 }    
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.btn-primary.btn-lg:hover {
    animation: shake 0.5s ease-in-out;
}

.booking-card .price {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(var(--primary-red-rgb), 0.05);
    border-radius: 12px;
    text-align: center;
}

.booking-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.08);
}

.booking-card h2 {
    color: var(--primary-red);
    font-size: 2rem;
} 

.booking-card .amount {
    color: var(--primary-red);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.booking-card .period {
    color: #666;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-card .form-control {
    padding: 12px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.booking-card .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-red-rgb), 0.15);
}


.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-card h2 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-red-rgb), 0.15);
}

.map-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.map-card iframe {
    border-radius: 8px;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.info-box:hover {
    transform: translateY(-10px);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-red);
    font-size: 24px;
    transition: all 0.3s ease;
}

.info-box:hover .info-icon {
    background: var(--primary-red);
    color: white;
}

.info-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.info-list li {
    margin-bottom: 8px;
    color: #666;
}


/* About Page Styles */
.page-hero {
    height: 400px;  /* Changed from 60vh to fixed 400px */
    min-height: 400px;  /* Added to ensure minimum height */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

/* Ensure content is vertically centered */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.stat-item h3 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}


/* Legal Structure Section Styles */
.legal-structure-section {
    background-color: var(--primary-red);
    color: white;
}

.legal-logo {
    padding: 20px;
    transition: transform 0.3s ease;
}

.legal-logo:hover {
    transform: translateY(-10px);
}

.legal-logo img {
    max-height: 80px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.investment-bar-container {
    text-align: center;
    padding: 20px 0;
}

.investment-bar {
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.investment-progress {
    height: 100%;
    background: #4CAF50;
    border-radius: 15px;
    transition: width 1.5s ease-in-out;
}