@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

:root {
    --primary-color: #1a1a1a;
    /* Luxurious Black */
    --secondary-color: #333333;
    /* Dark Gray */
    --accent-color: #D4AF37;
    /* Elegant Gold */
    --bg-light: #fdfbf7;
    /* Very subtle warm off-white */
    --bg-white: #ffffff;
    --text-dark: #121212;
    --text-light: #6c757d;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    --card-hover-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    /* Gold tinted hover shadow */
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

main {
    padding-top: 80px;
    /* Add padding to prevent content from going under fixed header */
}

.section-padding {
    padding: 30px 0;
    /* slightly more padding for luxury feel */
}

.section-title2 {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 2.5rem;
}

/* --- Header --- */
.fixed-top {
    transition: all 0.5s ease;
    padding: 15px 0;
    background: linear-gradient(135deg, #0f452f 0%, #222222 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.fixed-top.scrolled {
    background: rgba(17, 17, 17, 0.95);
    /* Slightly transparent dark */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar-brand img {
    height: 30px;
    transition: height 0.3s ease;
}

.fixed-top.scrolled .navbar-brand img {
    height: 30px;
}

.navbar-nav .nav-link {
    color: #ffffff;
    /* White for better contrast on purple */
    font-weight: 600;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.fixed-top.scrolled .navbar-nav .nav-link {
    color: #ffffff;
    /* White for better contrast when scrolled */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f8f9fa !important;
    /* Light white for better contrast */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    /* Gold underline */
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.fixed-top.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.fixed-top.scrolled .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    background-color: #c09a2e;
    border-color: #c09a2e;
    transform: translateY(-2px);
}

/* Mobile menu icon color */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* --- Hero Section --- */
.hero-section {
    height: 65vh;
    /* Slightly taller for grandeur */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect for luxury */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    /* Removed slanted skew for a more formal straight edge or subtle overlay */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    z-index: 3;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.85), rgb(195 171 92 / 76%));
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Hide playful elements */
.hero-wave,
.hero-particles {
    display: none !important;
}

.hero-content {
    z-index: 2;
    padding: 60px 20px;
    position: relative;
    max-width: 900px;
    width: 100%;
    margin-top: 40px;
}

.hero-content .hero-animated-logo {
    max-height: 120px;
    margin-bottom: 25px;
    /* Adding a bright glow for visibility against dark backgrounds */
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    animation: luxuryPulseRotate 6s ease-in-out infinite alternate;
}

@keyframes luxuryPulseRotate {
    0% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    }

    50% {
        transform: scale(1.05) translateY(-5px);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 45px rgba(212, 175, 55, 0.9));
    }

    100% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    }
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #fdfbf7;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    font-weight: 400;
    animation: elegantFloat 3s ease-in-out infinite alternate;
}

.hero-content .btn {
    font-weight: 600;
    padding: 16px 50px;
    border-radius: 4px;
    /* Slightly softer corners for buttons */
    background: linear-gradient(135deg, #D4AF37, #C09A2E);
    border: none;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    animation: goldPulse 2s infinite;
}

.hero-content .btn:hover {
    background: linear-gradient(135deg, #C09A2E, #fff);
    color: #1a1a1a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.7);
    animation: none;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 35px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 4px;
    animation: none;
    /* Disable strong pulse for secondary buttons */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-success {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    color: #fff;
}

.hero-buttons .btn-primary {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.8);
    color: #D4AF37;
}

.hero-buttons .btn-primary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
    border-color: #fff;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 25px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px;
    }

    .hero-content .hero-animated-logo {
        max-height: 90px;
    }

    .hero-content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .hero-content .hero-animated-logo {
        max-height: 70px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .hero-buttons .btn {
        width: 90%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* --- Features Section --- */
.feature-box-new {
    padding: 40px 30px;
    text-align: center;
    border-radius: 4px;
    /* Straight edges */
    background-color: var(--bg-white);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.feature-box-new::after {
    /* Gold accent line at bottom */
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.4s ease;
}

@media (max-width: 576px) {
    .feature-box-new {
        flex-direction: row;
        text-align: start;
        align-items: flex-start;
    }

    .feature-box-new.text-start {
        text-align: start;
    }
}

.feature-box-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-box-new:hover::after {
    width: 60%;
}

.feature-box-new:hover .icon-container {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.feature-box-new .icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .feature-box-new .icon-container {
        margin-bottom: 0;
        margin-right: 20px;
    }
}

.feature-box-new h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-box-new p {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .feature-box-new p {
        margin-bottom: 0;
    }
}

/* Highlight animation for feature boxes (simplifying for luxury) */
.feature-box-new.highlight {
    background: var(--primary-color);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-box-new.highlight .icon-container {
    background: var(--accent-color);
    color: var(--primary-color);
}

.feature-box-new.highlight h4,
.feature-box-new.highlight p {
    color: white;
}

/* --- Alternating BG --- */
.bg-custom-light {
    background-color: #fdfdfd;
}

/* --- About Us Section --- */
.about-us-image-wrapper {
    height: 400px;
    /* Fixed height for the image container */
}

.about-us-image-wrapper img {
    transition: transform 0.5s ease;
}

.about-us-image-wrapper:hover img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.about-us-image-wrapper .overlay {
    background-color: rgba(0, 51, 102, 0.2);
    /* Subtle overlay */
    transition: background-color 0.3s ease;
}

.about-us-image-wrapper:hover .overlay {
    background-color: rgba(0, 51, 102, 0.4);
    /* Darker overlay on hover */
}

.section-title.about-us-title {
    color: var(--primary-color);
    /* Use primary color for heading */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    /* Subtle text shadow */
    letter-spacing: 1px;
    /* Add some letter spacing */
}

/* --- Enhanced Card Styling --- */
.card {
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Thin gold border */
    border-radius: 4px;
    /* Straight edges */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
    background: var(--bg-white);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover,
.card.card-hover-active {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

/* Animation delay handling via CSS instead of inline styles */
[data-animation-delay] {
    animation-delay: attr(data-animation-delay);
}

/* Image visibility classes */
.img-visible {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Badge hover effects */
.badge-hover {
    transform: scale(1.1) rotate(-2deg) !important;
}

/* Pulse animation for offer badges */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Star hover effect */
.star-hover {
    color: #ffc107 !important;
    transform: scale(1.2) !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Amenity badge hover effect */
.amenity-hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Parallax effect for hero section */
.parallax-enabled {
    background-attachment: fixed;
    transform: translateZ(0);
}

.card-img-top {
    transition: all 0.4s ease;
    position: relative;
    opacity: 1 !important;
    /* Ensure images are always visible */
    transform: scale(1) !important;
    /* Ensure images are properly sized */
}

.card:hover .card-img-top {
    transform: scale(1.05) !important;
}

.card-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.card-body {
    position: relative;
    z-index: 2;
}

.card .btn-primary {
    background: var(--primary-color);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 2px;
    padding: 10px 25px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.card .btn-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

/* --- Package Card Specific Styling --- */
.package-card {
    background: var(--bg-white);
}

/* VIP Package Card Styling */
.package-card-vip {
    background: linear-gradient(145deg, #222 0%, #111 100%);
    border: 1px solid var(--accent-color);
    /* Gold border */
    color: white;
    /* White text */
}

.package-card-vip .card-title,
.package-card-vip .feature-label,
.package-card-vip .text-primary,
.package-card-vip .text-muted,
.package-card-vip small {
    color: white !important;
}

.package-card-vip .package-features {
    background: rgba(255, 255, 255, 0.03);
    /* Lighter background for features list */
}

.package-card-vip .package-features li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.package-card-vip .card-footer {
    background-color: transparent !important;
}

.package-card-vip i {
    color: var(--accent-color) !important;
    /* Gold icons */
}

.package-card .card-img-top {
    height: 250px;
    object-fit: cover;
    position: relative;
}

.package-card .card-img-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover .card-img-top::after {
    opacity: 1;
}

.package-features {
    background: var(--bg-light);
    border-radius: 4px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li:hover {
    background: rgba(212, 175, 55, 0.05);
    padding-left: 10px;
}

.package-features i {
    width: 20px;
    text-align: center;
    color: var(--accent-color) !important;
}

/* --- Hotel Card Specific Styling --- */
.hotel-card {
    background: var(--bg-white);
}

.hotel-card .card-img-top {
    height: 250px;
    object-fit: cover;
    position: relative;
}

.hotel-card .card-body {
    padding: 25px;
}

.hotel-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.hotel-rating .stars {
    color: var(--accent-color);
    margin-right: 10px;
}

.hotel-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.hotel-location i {
    margin-right: 8px;
    color: var(--primary-color);
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4px 12px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* --- Info Badge (Replaces Price Badge) --- */
.info-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 6px 15px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Special Offer Badge --- */
.offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    z-index: 3;
    text-transform: uppercase;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes moveText {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

@keyframes elegantFloat {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-8px);
    }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3), 0 0 20px rgba(52, 152, 219, 0.2);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(52, 152, 219, 0.5), 0 0 30px rgba(52, 152, 219, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3), 0 0 20px rgba(52, 152, 219, 0.2);
    }
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(10deg) scale(1.1);
    }

    50% {
        transform: rotate(0deg) scale(1);
    }

    75% {
        transform: rotate(-10deg) scale(1.1);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes luxuriousTextFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

@keyframes glowGold {
    0% {
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    }

    100% {
        text-shadow: 2px 2px 25px rgba(212, 175, 55, 0.7), 2px 2px 40px rgba(212, 175, 55, 0.4);
    }
}

@keyframes goldPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.8);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }
}

@keyframes headerGlow {
    0% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(240, 147, 251, 0.8);
    }

    100% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
}

@keyframes headerPulse {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- Enhanced Card Layout --- */
.card-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-actions {
    margin-top: auto;
    padding-top: 20px;
}

/* --- Enhanced Hover Effects --- */
.card-enhanced {
    position: relative;
    overflow: hidden;
}

.card-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 51, 102, 0.05), rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card-enhanced:hover::after {
    opacity: 1;
}

/* --- Additional Styling for Enhanced Cards --- */
.feature-label {
    color: var(--text-light);
    font-weight: 500;
}

.package-rating,
.hotel-rating {
    padding: 10px;
    background: rgba(0, 51, 102, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(0, 51, 102, 0.05);
}

.hotel-features .feature-item {
    padding: 15px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hotel-features .feature-item:hover {
    background: rgba(0, 51, 102, 0.05);
    transform: translateY(-2px);
}

/* --- Responsive Design Improvements --- */
@media (max-width: 768px) {

    .package-features,
    .hotel-amenities {
        text-align: center;
    }

    .amenity-badge {
        margin-bottom: 8px;
        display: inline-block;
    }

    .card .btn-primary,
    .card .btn-success {
        width: 100%;
        margin-bottom: 10px;
    }

    .card .btn-primary.me-2 {
        margin-right: 0 !important;
    }

    .info-badge,
    .offer-badge {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .hotel-features .row {
        margin: 0;
    }

    .hotel-features .col-4 {
        padding: 5px;
    }

    .feature-item i {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .card-body {
        padding: 20px !important;
    }

    .package-features li,
    .hotel-amenities {
        font-size: 0.9rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 15px;
    }

    .floating-whatsapp {
        right: 15px;
    }

    .floating-phone {
        left: 15px;
    }

    .floating-location {
        left: 50%;
        transform: translateX(-50%);
    }

    .floating-location:hover {
        transform: translateX(-50%) scale(1.1);
    }
}

/* --- Loading Animation for Cards --- */
.fade-in-section {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Card Hover Glow Effect --- */
.card-enhanced:hover {
    box-shadow: 0 25px 50px rgba(0, 51, 102, 0.15), 0 0 30px rgba(212, 175, 55, 0.1);
}

/* --- Button Improvements --- */
.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* --- Enhanced Typography --- */
.card-title {
    background: linear-gradient(135deg, var(--primary-color), #004080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
}

/* --- Special Effects for Badges --- */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.7rem;
}

/* --- Card Footer Styling --- */
.card-footer {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(233, 236, 239, 0.8) 100%);
    backdrop-filter: blur(10px);
}

/* --- Gallery Styling --- */
.gallery-item {
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- Sticky Icons --- */
.sticky-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1030;
    display: flex;
    flex-direction: column;
}

.sticky-icon {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    background-color: #25D366;
}

/* --- Animation --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */
footer {
    background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
    /* Luxurious dark gradient */
    color: white;
    padding: 70px 0 50px 0;
    /* More balanced padding */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    /* Stronger shadow at the top */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    /* Subtle Gold border */
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    /* Gold top line */
}

footer h5 {
    color: var(--accent-color);
    /* Gold Headers */
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    /* Gold underline */
}

footer ul {
    padding: 0;
    list-style: none;
    /* Ensure no default bullets */
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: #ccc;
    /* Lighter gray for readability */
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    /* Space for the arrow */
    text-decoration: none;
}

footer ul li a:hover {
    color: var(--accent-color);
    /* Gold on hover */
    padding-left: 20px;
}

footer ul li a::before {
    content: '❯';
    /* More elegant arrow */
    position: absolute;
    left: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
    color: var(--accent-color);
    /* Gold arrow */
    font-size: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
}

footer ul li a:hover::before {
    opacity: 1;
    left: 5px;
}

footer .social-icons a {
    font-size: 20px;
    transition: all 0.4s ease;
    display: inline-flex;
    margin: 0 8px 10px 0;
    color: #111;
    /* Dark icon */
    background: var(--accent-color);
    /* Gold background */
    width: 40px;
    height: 40px;
    border-radius: 4px;
    /* Straight edges for luxury feel */
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
}

footer .social-icons a:hover {
    transform: translateY(-5px);
    color: var(--accent-color);
    /* Gold icon on hover */
    background: transparent;
    /* Transparent background */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* --- General Button Styling --- */
.btn {
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #002244;
    border-color: #002244;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-success {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-success:hover {
    background-color: #1da851;
    border-color: #1da851;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}