/* ===========================
   FIX HORIZONTAL SCROLLBAR ONLY
   =========================== */
body {
    overflow-x: hidden;
}

.container, .row {
    max-width: 100%;
}

/* ===========================
   HOME HERO - KEEP SAME
   =========================== */
#home-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 100%), url('../images/hero2.png') center/cover no-repeat;
    height: 85vh;
    position: relative;
    color: white;
    overflow: hidden;
}

#home-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    width: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.6;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.hero-badge i {
    color: #ffd700;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 15px;
}

.hero-buttons .btn {
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Hero Info */
.hero-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    animation: bounce 2s infinite;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===========================
   INDEX SERVICES SECTION
   =========================== */
.index-services-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.index-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.index-section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.index-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.index-section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.index-service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.index-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #0a2a55);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.index-service-card:hover::before {
    transform: scaleX(1);
}

.index-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8, 28, 52, 0.15);
    border-color: var(--primary-light);
}

.index-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #e3f2fd 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.index-service-card:hover .index-service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary) 0%, #0a2a55 100%);
}

.index-service-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.index-service-card:hover .index-service-icon i {
    color: white;
}

.index-service-card h6 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.index-service-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   INDEX ROOMS SECTION
   =========================== */
.index-rooms-section {
    padding: 80px 0;
    background: white;
}

.index-room-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.index-room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(8, 28, 52, 0.2);
    border-color: var(--primary);
}

.index-room-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.index-room-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.index-room-card:hover .index-room-image-wrapper img {
    transform: scale(1.1);
}

.index-room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.index-room-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.index-room-content h5 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.index-room-content p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.index-room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--primary-light);
}

.index-room-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.index-room-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

/* ===========================
   INDEX HALLS SECTION
   =========================== */
.index-halls-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.index-hall-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    height: 100%;
}

.index-hall-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(8, 28, 52, 0.15);
    border-color: var(--primary);
}

.index-hall-image-wrapper {
    flex: 0 0 350px;
    position: relative;
    overflow: hidden;
}

.index-hall-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.index-hall-card:hover .index-hall-image-wrapper img {
    transform: scale(1.1);
}

.index-hall-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.index-hall-content h5 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.index-hall-content p {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ===========================
   INDEX PROMOTIONS SECTION
   =========================== */
.index-promotions-section {
    padding: 80px 0;
    background: white;
}

.index-promo-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.index-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(8, 28, 52, 0.12);
    border-color: var(--primary-light);
}

.index-promo-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.index-promo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.index-promo-card:hover .index-promo-image-wrapper img {
    transform: scale(1.05);
}

.index-promo-content h5 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.index-promo-content p {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Promo Carousel Controls */
#promoCarousel .carousel-control-prev,
#promoCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

#promoCarousel .carousel-control-prev {
    left: 15px;
}

#promoCarousel .carousel-control-next {
    right: 15px;
}

#promoCarousel .carousel-control-prev:hover,
#promoCarousel .carousel-control-next:hover {
    background: #0a2a55;
    transform: translateY(-50%) scale(1.15);
}

/* ===========================
   INDEX GALLERY SECTION
   =========================== */
.index-gallery-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.index-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.index-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 250px;
}

.index-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(8, 28, 52, 0.2);
}

.index-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.index-gallery-item:hover img {
    transform: scale(1.15);
}

.index-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 28, 52, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-gallery-item:hover .index-gallery-overlay {
    opacity: 1;
}

.index-gallery-overlay i {
    color: white;
    font-size: 2.5rem;
}

/* ===========================
   INDEX REVIEWS SECTION
   =========================== */
.index-reviews-section {
    padding: 80px 0;
    background: white;
}

.index-review-card {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-light);
    transition: all 0.4s ease;
    max-width: 900px;
    margin: 0 auto;
}

.index-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(8, 28, 52, 0.15);
}

.index-review-stars {
    margin-bottom: 30px;
}

.index-review-stars i {
    font-size: 1.5rem;
    color: #ffd700;
    margin: 0 3px;
}

.index-review-card p.lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #495057;
    font-style: italic;
    position: relative;
    padding: 0 30px;
}

.index-review-card p.lead::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -20px;
    font-size: 5rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
}

.index-review-author {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 30px;
}

/* Review Carousel Controls */
#reviewCarousel .carousel-control-prev,
#reviewCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

#reviewCarousel .carousel-control-prev {
    left: 15px;
}

#reviewCarousel .carousel-control-next {
    right: 15px;
}

#reviewCarousel .carousel-control-prev:hover,
#reviewCarousel .carousel-control-next:hover {
    background: #0a2a55;
    transform: translateY(-50%) scale(1.15);
}

/* ===========================
   CTA SECTION - KEEP SAME
   =========================== */
.index-cta {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.cta-card {
    position: relative;
    background: var(--primary);
    border-radius: 30px;
    padding: 60px 50px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(8, 28, 52, 0.3);
}

.cta-card .btn-light {
    background: white;
    color: var(--primary);
    border: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-card .btn-light:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--primary-light);
    color: var(--primary-hover);
}

.cta-card .btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-card .btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* CTA Decoration */
.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite ease-in-out;
}

.cta-circle-1 {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -100px;
    animation-delay: 0s;
}

.cta-circle-2 {
    width: 180px;
    height: 180px;
    bottom: -90px;
    left: -50px;
    animation-delay: 5s;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .index-section-title {
        font-size: 2.2rem;
    }
    
    .index-hall-card {
        flex-direction: column;
    }
    
    .index-hall-image-wrapper {
        flex: 0 0 250px;
    }
    
    .index-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #home-hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .index-section-title {
        font-size: 1.8rem;
    }
    
    .index-section-subtitle {
        font-size: 1rem;
    }
    
    .index-service-card {
        padding: 30px 20px;
    }
    
    .index-room-image-wrapper {
        height: 220px;
    }
    
    .index-hall-image-wrapper {
        flex: 0 0 200px;
    }
    
    .index-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .index-gallery-item {
        height: 180px;
    }
    
    .index-review-card {
        padding: 35px 25px;
    }
    
    .index-review-card p.lead {
        font-size: 1.1rem;
    }
    
    .cta-card {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    #home-hero {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .info-item {
        font-size: 0.9rem;
    }
}