/* Global Reset and Theme Colors */
:root {
    --bg-base: #090909;
    --bg-section: #111111;
    --bg-card: #181818;
    --border-gold: #D4AF37;
    --hover-glow: #FFD700;
    --text-white: #FFFFFF;
    --text-grey: #BDBDBD;
    --text-light-grey: #D0D0D0;
}

body {
    background-color: var(--bg-base);
    color: var(--text-light-grey);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.font-heading {
    font-family: 'Playfair Display', serif;
}

.gold-text {
    color: var(--border-gold) !important;
}

.text-light-grey {
    color: var(--text-light-grey) !important;
}

/* Typography & Links */
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #111111, #181818, #111111);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Custom Buttons */
.btn-gold {
    background-color: var(--border-gold);
    color: #000000;
    border: 1px solid var(--border-gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--hover-glow);
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--border-gold);
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--border-gold);
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Floating Action Buttons */
.btn-whatsapp {
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    transform: scale(1.08);
}

.btn-call {
    width: 45px;
    height: 45px;
    background-color: var(--border-gold);
    border: none;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background-color: var(--hover-glow);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: scale(1.08);
}

#scrollToTopBtn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

/* Navbar */
.navbar {
    background-color: var(--bg-base);
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background-color: rgba(9, 9, 9, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-light-grey);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--border-gold);
}

/* Hero Section & Particles */
.hero-section {
    height: 100vh;
    min-height: 600px;
}

.hero-video {
    z-index: 0;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(9, 9, 9, 0.8), rgba(17, 17, 17, 0.7));
    z-index: 1;
}

.max-w-800 {
    max-width: 800px;
}

.badge-custom {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

#shiv{
    text-decoration: none;
    color: #fac498;
    font-weight: 900;
    font-family: Times New Roman;
}
#meshiv{
    color: #54f6ff;
    font-size: 20px;
}





/* Floating Golden Particles Animation */
.particle {
    position: absolute;
    background: var(--border-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 12s infinite linear;
}

.particle.p1 { width: 6px; height: 6px; top: 20%; left: 10%; animation-duration: 10s; }
.particle.p2 { width: 4px; height: 4px; top: 60%; left: 25%; animation-duration: 15s; animation-delay: 2s; }
.particle.p3 { width: 8px; height: 8px; top: 40%; left: 75%; animation-duration: 18s; animation-delay: 1s; }
.particle.p4 { width: 5px; height: 5px; top: 80%; left: 85%; animation-duration: 12s; animation-delay: 3s; }
.particle.p5 { width: 7px; height: 7px; top: 15%; left: 60%; animation-duration: 14s; animation-delay: 4s; }
.particle.p6 { width: 4px; height: 4px; top: 70%; left: 45%; animation-duration: 16s; animation-delay: 2.5s; }

@keyframes floatParticle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Background Utilities */
.bg-base {
    background-color: var(--bg-base);
}

.bg-section {
    background-color: var(--bg-section);
}

/* Dividers */
.gold-divider {
    width: 60px;
    height: 2px;
    background-color: var(--border-gold);
}

/* Stat Cards */
.stat-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

/* Trusted By & Industry Cards */
.trusted-card, .industry-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.trusted-card:hover, .industry-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
    transform: translateY(-5px);
}

/* Feature & Tech Cards */
.feature-card, .tech-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover, .tech-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
    transform: translateY(-5px);
}

/* Product Cards */
.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.35);
    transform: translateY(-8px);
}

.product-card .img-container img {
    transition: transform 0.5s ease;
    height: 320px;
}

.product-card:hover .img-container img {
    transform: scale(1.08);
}

.badge-premium {
    background-color: var(--border-gold);
    color: #000;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Gallery & Instagram Section */
.gallery-item, .instagram-item {
    border: 1px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    overflow: hidden;
    height: 280px;
}

.instagram-item {
    height: 250px;
}

.gallery-item img, .instagram-item img {
    height: 100%;
    transition: transform 0.5s ease;
}

.gallery-overlay, .instagram-overlay {
    background: rgba(9, 9, 9, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay,
.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.gallery-item:hover img,
.instagram-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover, .instagram-item:hover {
    border-color: var(--border-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Testimonial Card */
.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Accordion Customization */
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #1f1f1f;
    color: var(--border-gold);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.custom-accordion .accordion-button::after {
    filter: invert(1);
}

.border-gold {
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

/* Payment Box */
.payment-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(9,9,9,0.9), rgba(9,9,9,0.9)), url('img/kolv.mp4') center/cover no-repeat;
    background-color: var(--bg-section);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Footer */
.footer-section {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-link {
    color: var(--text-light-grey);
}

.footer-link:hover {
    color: var(--border-gold);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-card);
    color: var(--border-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--border-gold);
    color: #000000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}