/* Hotel Grandeur - Custom Styles */

/* ===== VARIABLES ===== */
:root {
    --hotel-primary: #D4AF37;        /* Rich Gold */
    --hotel-secondary: #1a1a1a;      /* Deep Black */
    --hotel-accent: #FFD700;          /* Bright Gold */
    --hotel-dark: #000000;            /* Pure Black */
    --hotel-light: #f8f8f8;          /* Off White */
    --hotel-gray: #666666;           /* Dark Gray */
    --hotel-success: #28a745;
    --hotel-info: #17a2b8;
    --hotel-warning: #ffc107;
    --hotel-danger: #dc3545;
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--hotel-dark);
    background-color: var(--hotel-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hotel-primary);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--hotel-primary) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--hotel-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--hotel-primary) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--hotel-primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-accent));
    border: none;
    color: var(--hotel-dark);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--hotel-accent), var(--hotel-primary));
    color: var(--hotel-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#heroCarousel {
    height: 100%;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.7), rgba(212, 175, 55, 0.3));
    animation: overlayPulse 4s ease-in-out infinite alternate;
}

@keyframes overlayPulse {
    0% { opacity: 0.8; }
    100% { opacity: 0.6; }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    animation: none;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: none;
}

.hero-buttons {
    animation: none;
}

/* Hero Carousel Indicators */
#heroCarousel .carousel-indicators {
    bottom: 30px;
}

#heroCarousel .carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators .active {
    background-color: var(--hotel-primary);
    border-color: white;
    transform: scale(1.3);
    animation: indicatorGlow 2s ease-in-out infinite alternate;
}

@keyframes indicatorGlow {
    0% { box-shadow: 0 0 5px var(--hotel-primary); }
    100% { box-shadow: 0 0 20px var(--hotel-primary); }
}

/* Hero Carousel Controls */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: var(--hotel-primary);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
    animation: controlGlow 1s ease-in-out infinite alternate;
}

@keyframes controlGlow {
    0% { box-shadow: 0 0 10px var(--hotel-primary); }
    100% { box-shadow: 0 0 30px var(--hotel-primary); }
}

/* ===== PHOTO ANIMATIONS ===== */
.animated-photo {
    animation: photoFloat 6s ease-in-out infinite;
    position: relative;
}

@keyframes photoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    75% { transform: translateY(5px) rotate(-1deg); }
}

.animated-photo:hover {
    animation: photoZoom 0.5s ease forwards;
}

@keyframes photoZoom {
    to { transform: scale(1.05); }
}

/* About Section Photo */
.col-lg-6 img {
    animation: aboutPhotoSlide 8s ease-in-out infinite;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@keyframes aboutPhotoSlide {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(-10px) scale(1.02); }
}

/* Room Card Photos */
.room-image img {
    animation: roomPhotoPulse 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes roomPhotoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.room-card:hover .room-image img {
    animation: roomPhotoZoom 0.5s ease forwards;
}

@keyframes roomPhotoZoom {
    to { transform: scale(1.1); }
}

/* Gallery Grid Photos */
.gallery-item img {
    animation: galleryPhotoShimmer 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes galleryPhotoShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.gallery-item:hover img {
    animation: galleryPhotoLift 0.5s ease forwards;
}

@keyframes galleryPhotoLift {
    to { 
        transform: scale(1.05) translateY(-5px);
        filter: brightness(1.2);
    }
}

/* Testimonial Photos */
.author-image {
    animation: none;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-image {
    animation: none;
    transform: scale(1.1);
}

/* Responsive Animations */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 1rem;
    }
    
    .col-lg-6 img {
        animation: none;
    }
    
    .room-image img {
        animation: none;
    }
    
    .gallery-item img {
        animation: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
        margin: 0 0.5rem;
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--hotel-light) !important;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hotel-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--hotel-gray);
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-secondary));
    margin: 1rem 0;
    border-radius: 2px;
}

.divider.center {
    margin: 1rem auto;
}

/* ===== ABOUT SECTION ===== */
.feature-item {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white !important;
}

.feature-item h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--hotel-primary);
}

.feature-item p {
    color: var(--hotel-primary);
    margin: 0;
}

/* ===== GLASS MORPHISM CARDS ===== */
.room-card,
.amenity-item,
.testimonial-card,
.contact-info,
.contact-form,
.footer-about,
.footer-contact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.room-card:hover,
.amenity-item:hover,
.testimonial-card:hover,
.contact-info:hover,
.contact-form:hover,
.footer-about:hover,
.footer-contact:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.25),
        inset 0 2px 8px rgba(255, 255, 255, 0.15);
}

/* ===== CONSISTENT ROW SIZING ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Ensure equal height cards in rows */
.row > .col-lg-4,
.row > .col-md-6,
.row > .col-lg-3 {
    display: flex;
    align-items: stretch;
}

/* Fix specific card alignments */
.feature-item {
    text-align: left;
    align-items: flex-start;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 120px;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    overflow: visible;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white !important;
}

.feature-item h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--hotel-primary);
}

.feature-item p {
    color: var(--hotel-primary);
    margin: 0;
}

.amenity-item {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    height: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.amenity-item h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--hotel-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.amenity-item p {
    color: var(--hotel-gray);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 0.9rem;
    line-height: 1.4;
}

.testimonial-card {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 350px;
    height: 100%;
}

.contact-info {
    text-align: left;
    align-items: flex-start;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    height: 100%;
}

.contact-form {
    text-align: left;
    align-items: stretch;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    height: 100%;
}

/* ===== ROOMS SECTION ===== */
.room-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--hotel-primary);
    display: block;
    text-align: left;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.85);
    border-color: var(--hotel-accent);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-accent));
    color: var(--hotel-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
}

.room-content {
    padding: 2rem;
}

.room-content h4 {
    color: var(--hotel-light);
    font-weight: 700;
    margin-bottom: 1rem;
}

.room-price {
    margin-bottom: 1.5rem;
}

.room-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hotel-primary);
}

.room-price .per-night {
    color: var(--hotel-light);
    font-size: 0.9rem;
}

.room-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.room-features li {
    padding: 0.5rem 0;
    color: var(--hotel-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.room-features li:last-child {
    border-bottom: none;
}

.room-features i {
    color: var(--hotel-primary);
    margin-right: 0.5rem;
    width: 20px;
}

/* ===== AMENITIES SECTION ===== */
.amenity-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.amenity-item:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.25),
        inset 0 2px 8px rgba(255, 255, 255, 0.15);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.1);
}

.amenity-icon i {
    font-size: 2rem;
    color: white;
}

.amenity-item h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--hotel-primary);
}

.amenity-item p {
    color: var(--hotel-gray);
    margin: 0;
}

/* ===== GALLERY CAROUSEL ===== */
#galleryCarousel {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-slide {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

#galleryCarousel:hover .gallery-slide img {
    transform: scale(1.05);
}

.carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
}

.carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.carousel-caption p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.carousel-indicators [data-bs-target] {
    background-color: var(--hotel-primary);
    border: 2px solid white;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
}

.carousel-indicators .active {
    background-color: white;
    border-color: var(--hotel-primary);
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--hotel-primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Carousel Responsive */
@media (max-width: 768px) {
    .gallery-slide {
        height: 350px;
    }
    
    .carousel-caption {
        padding: 1rem;
        text-align: center;
    }
    
    .carousel-caption h5 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 1rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {
    .gallery-slide {
        height: 250px;
    }
    
    .carousel-caption {
        padding: 0.75rem;
    }
    
    .carousel-caption h5 {
        font-size: 1rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
        margin: 0 0.5rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.25),
        inset 0 2px 8px rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    color: var(--hotel-warning);
    margin-bottom: 1rem;
}

.testimonial-stars i {
    margin-right: 0.25rem;
}

.testimonial-text {
    color: var(--hotel-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h6 {
    font-weight: 600;
    margin: 0;
    color: var(--hotel-primary);
}

.author-info span {
    color: var(--hotel-gray);
    font-size: 0.9rem;
}

/* ===== LOCATION SECTION ===== */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-info h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--hotel-primary);
}

.location-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-item i {
    font-size: 1.5rem;
    color: var(--hotel-primary);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.location-item h6 {
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--hotel-primary);
}

.location-item p {
    color: var(--hotel-gray);
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-info:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.25),
        inset 0 2px 8px rgba(255, 255, 255, 0.15);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.25),
        inset 0 2px 8px rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h5 {
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--hotel-primary);
}

.contact-details p {
    color: var(--hotel-gray);
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    text-align: left;
    align-items: stretch;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    height: 100%;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.25),
        inset 0 2px 8px rgba(255, 255, 255, 0.15);
}

.contact-form h4 {
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--hotel-primary);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--hotel-primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--hotel-primary);
    margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 0;
}

.footer-about,
.footer-contact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    height: 100%;
}

.footer-about:hover,
.footer-contact:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.25),
        inset 0 2px 8px rgba(255, 255, 255, 0.15);
}

/* Footer Links - Glass Card */
.footer-links {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    height: 100%;
    text-align: center;
    max-width: 300px;
    width: 100%;
}

.footer-links:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.25),
        inset 0 2px 8px rgba(255, 255, 255, 0.15);
}

.footer-links h5 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--hotel-primary);
}

.footer-links ul {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    text-align: center;
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--hotel-primary);
}

.footer-about img {
    margin-bottom: 1rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--hotel-primary);
    transform: translateY(-3px);
}

.footer-links h5,
.footer-contact h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--hotel-primary);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.footer-contact p i {
    color: var(--hotel-primary);
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .btn-primary {
        display: block;
        width: 100%;
        margin: 1rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 1rem auto;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .room-card,
    .amenity-item,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SCROLL BEHAVIOR ===== */
html {
    scroll-behavior: smooth;
}

/* ===== LOADING ANIMATION ===== */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--hotel-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--hotel-secondary), var(--hotel-primary));
}
