body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0b0907;
    color: #e5e5e5;
}

.font-serif-luxury {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.04em;
}

.gold-gradient-text {
    background: linear-gradient(135deg, #fce09b 0%, #cba135 50%, #9e7519 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-bg-gradient {
    background: linear-gradient(135deg, #eed285 0%, #cba135 100%);
}

.gold-btn-gradient {
    background: linear-gradient(180deg, #dfb95c 0%, #a27b23 100%);
}

.gold-border {
    border-color: #3b301b;
}

.hero-glow {
    background: radial-gradient(circle at center, rgba(203, 161, 53, 0.15) 0%, rgba(11, 9, 7, 0) 70%);
}

#BannerImage {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    min-height: 480px;
    height: 75vh;
    max-height: 720px;
    cursor: pointer;
}

@media (min-width: 768px) {
    #BannerImage {
        min-height: 85vh;
        height: 100vh;
        max-height: none;
        cursor: default;
    }
}

/* Animated Snake / Running Light Beam Border Card */
.snake-card {
    position: relative;
    border-radius: 1rem;
    padding: 2px;
    background: #201a11;
    overflow: hidden;
}

.snake-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            transparent 270deg,
            rgba(203, 161, 53, 0.4) 300deg,
            #eed285 340deg,
            #ffffff 360deg);
    animation: snakeRotate 3.5s linear infinite;
    z-index: 1;
}

.snake-card-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #120f0b;
    border-radius: calc(1rem - 2px);
    overflow: hidden;
}

@keyframes snakeRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Circular Orbit Rings & Moving Balls Animation */
@keyframes spinClockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinCounterClockwise {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.animate-orbit-1 {
    animation: spinClockwise 18s linear infinite;
}

.animate-orbit-2 {
    animation: spinCounterClockwise 24s linear infinite;
}

.animate-orbit-3 {
    animation: spinClockwise 12s linear infinite;
}

/* Swiper Custom Theme Styling */
.swiper-pagination-bullet {
    background: rgba(203, 161, 53, 0.3) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #cba135 !important;
    width: 20px !important;
    border-radius: 4px !important;
}

.swiper-button-next,
.swiper-button-prev {
    width: 44px !important;
    height: 44px !important;
    background: rgba(18, 15, 12, 0.8) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(203, 161, 53, 0.25) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    border-color: rgba(203, 161, 53, 0.8) !important;
    background: rgba(203, 161, 53, 0.1) !important;
    transform: scale(1.05);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #cba135 !important;
}

/* Floating WhatsApp Premium Chat & Pulse/Blinking Animation */
.whatsapp-premium-chat {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 11, 8, 0.95);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(37, 211, 102, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(37, 211, 102, 0.25);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    animation: premiumPulse 2.5s infinite;
}

.whatsapp-status-ping {
    position: absolute;
    top: 3px;
    right: 3px;
    display: flex;
    width: 10px;
    height: 10px;
    z-index: 10;
}

.whatsapp-premium-chat:hover {
    border-color: rgba(37, 211, 102, 0.9);
    background: rgba(22, 18, 14, 0.98);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

@keyframes premiumPulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== BLOG ARTICLE RICH TEXT TYPOGRAPHY & SPACING ===== */
.blog-content-body {
    color: #d1d5db;
    font-size: 0.925rem;
    line-height: 1.75;
}

.blog-content-body p {
    margin-top: 0 !important;
    margin-bottom: 1.25rem !important;
    color: #d1d5db;
    font-weight: 300;
}

.blog-content-body p:last-child {
    margin-bottom: 0 !important;
}

.blog-content-body p:empty,
.blog-content-body p:has(> br:only-child) {
    display: none !important;
}

.blog-content-body h1,
.blog-content-body h2,
.blog-content-body h3,
.blog-content-body h4,
.blog-content-body h5,
.blog-content-body h6 {
    font-family: 'Montserrat', sans-serif !important;
    color: #fef3c7 !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    margin-top: 1.75rem !important;
    margin-bottom: 0.75rem !important;
    letter-spacing: 0.02em;
    display: block !important;
}

.blog-content-body h1 {
    font-size: 1.65rem !important;
    color: #fbbf24 !important;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding-bottom: 0.5rem;
}

.blog-content-body h2 {
    font-size: 1.35rem !important;
    color: #fef3c7 !important;
}

.blog-content-body h3 {
    font-size: 1.15rem !important;
    color: #fde68a !important;
}

.blog-content-body h4 {
    font-size: 1.05rem !important;
    color: #f59e0b !important;
}

.blog-content-body strong,
.blog-content-body b {
    color: #fbbf24 !important;
    font-weight: 700 !important;
}

.blog-content-body ul {
    list-style-type: disc !important;
    padding-left: 1.5rem !important;
    margin-bottom: 1.25rem !important;
}

.blog-content-body ol {
    list-style-type: decimal !important;
    padding-left: 1.5rem !important;
    margin-bottom: 1.25rem !important;
}

.blog-content-body li {
    margin-bottom: 0.5rem !important;
    color: #e5e7eb !important;
}

.blog-content-body blockquote {
    border-left: 3.5px solid #f59e0b !important;
    background: rgba(245, 158, 11, 0.06);
    padding: 0.85rem 1.25rem !important;
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
    border-radius: 0 1rem 1rem 0;
    font-style: italic;
    color: #fde68a !important;
}

.blog-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.blog-content-body a {
    color: #fbbf24 !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.blog-content-body a:hover {
    color: #f59e0b !important;
}