:root {
    --primary-color: #ff0000;
    /* Blood red */
    --secondary-color: #500000;
    /* Deep dried blood */
    --bg-color: #050505;
    /* Black */
    --text-color: #f0f0f0;
    --font-main: 'Poppins', sans-serif;
    --nav-height: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor everywhere to use custom one */
}

/* Custom Cursor */
/* body { cursor: url('../images/crosshair.png'), auto; } - Optional */

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    /* Flickering Light Effect */
    animation: text-flicker 3s infinite alternate;
}

@keyframes text-flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
        text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    }

    20%,
    24%,
    55% {
        opacity: 0.5;
        text-shadow: none;
    }
}

a {
    text-decoration: none;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- CUSTOM CURSOR (EYE) --- */
.custom-cursor {
    width: 50px;
    height: 50px;
    background: url('../images/image-removebg-preview.png') no-repeat center center/contain;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    /* Center on mouse */
    transition: transform 0.1s;
}

/* Hide eye cursor in hero section (Flashlight takes over) */
.hero:hover~.custom-cursor,
body.hero-active .custom-cursor {
    display: none;
}

/* Click Animation */
.custom-cursor.clicked {
    transform: translate(-50%, -50%) scale(0.8) rotate(-10deg);
}

/* --- SPOTLIGHT EFFECT --- */
.spotlight {
    position: absolute;
    /* Changed from fixed to absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    /* On top of hero content (which is z-index 2) */
    /* Dark overlay, light hole */
    background: radial-gradient(circle 250px at 50% 50%, transparent 10%, rgba(0, 0, 0, 0.85) 100%);
    mix-blend-mode: multiply;
}

/* --- RAIN EFFECT --- */
.rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    /* Behind content but over background */
    overflow: hidden;
}

.drop {
    position: absolute;
    top: -20px;
    width: 2px;
    height: 15px;
    /* Long drops */
    background: linear-gradient(transparent, var(--primary-color));
    opacity: 0.7;
    animation: rain-fall linear infinite;
}

@keyframes rain-fall {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(110vh);
    }
}

/* Header */
.main-header {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
    text-shadow: 0 0 10px var(--primary-color);
}

.logo span {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    font-weight: 600;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.desktop-nav a {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.btn-contact {
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    background: rgba(255, 0, 0, 0.1);
}

.btn-contact:hover {
    background: var(--primary-color);
    color: #000 !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    /* Content above rain */
}

/* We don't need a heavy overlay on the hero div itself because the spotlight covers the whole page */
/* But we can add a subtle tint */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-content h2 {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 20px #000;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 5px;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 15px var(--secondary-color);
}

.btn-primary:hover {
    background: #fff;
    color: #aa0000;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Sections */
.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 5;
    /* Ensure content is clickable */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

/* Cards */
.rules-grid,
.services-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rule-card,
.review-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    padding: 30px;
    border-radius: 8px;
    transition: 0.3s;
}

.rule-card:hover,
.review-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

/* Service Items with Images */
.service-item {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.5s;
}

.service-item:hover img {
    transform: scale(1.1);
    opacity: 0.3;
}

.service-item-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.service-item h3 {
    margin-bottom: 5px;
    color: #fff;
}

/* Contact */
.contact-info {
    font-size: 1.1rem;
    color: #ccc;
}

.phone-link {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 20px 0;
}

/* Social */
.social-links-large {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    background: #222;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--primary-color);
}

/* Mobile Nav */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #fff;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin: 20px 0;
}

.mobile-nav a {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h2 {
        font-size: 2.5rem;
        /* Reduced from 4rem */
        text-shadow: 0 0 10px #000;
    }
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #000;
    /* Black background */
    color: var(--primary-color);
    /* Red icon */
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 15px var(--primary-color);
    /* Red glow */
    z-index: 9999;
    /* Ensure on top */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    animation: pulse-red 2s infinite;
}

.phone-float {
    display: none;
    /* Hidden by default (desktop) */
    position: fixed;
    bottom: 30px;
    /* Align with bottom */
    left: 30px;
    /* Left corner */
    width: 60px;
    height: 60px;
    background-color: #000;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 0 15px var(--primary-color);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    animation: pulse-red 2s infinite;
}

@media (max-width: 768px) {
    .phone-float {
        display: flex;
    }
}



.whatsapp-float:hover {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 25px var(--primary-color), 0 0 50px var(--primary-color);
    transform: scale(1.1);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}


/* --- FOOTER --- */
.main-footer {
    background: #000;
    padding: 60px 0 80px;
    /* Increased bottom padding */
    border-top: 1px solid #222;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col p {
    color: #bbb;
    margin-bottom: 15px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p i {
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    border: 1px solid #333;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #222;
    color: #777;
    font-size: 0.9rem;
}