* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --blood-red: #DC143C;
            --dark-red: #B22222;
            --crimson: #8B0000;
            --danger-red: #FF4444;
            --light-bg: #F8F9FA;
            --white: #FFFFFF;
            --off-white: #FAFBFC;
            --light-gray: #E9ECEF;
            --medium-gray: #6C757D;
            --dark-gray: #343A40;
            --black: #0D0D0D;
            --accent-orange: #FF6B35;
            --success-green: #28A745;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--off-white);
            color: var(--dark-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        .hidden {
            display: none;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 30px rgba(220, 20, 60, 0.1);
            border-bottom: 3px solid var(--blood-red);
            transition: all 0.3s ease;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            font-size: 2.5rem;
            animation: shield-pulse 2s ease-in-out infinite;
        }

        @keyframes shield-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--blood-red);
            background: rgba(220, 20, 60, 0.05);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--blood-red), var(--dark-red));
            color: white;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5);
            background: linear-gradient(135deg, var(--dark-red), var(--crimson));
        }

        /* Hero Section */
        .hero {
            padding: 140px 2rem 80px;
            background: linear-gradient(135deg, #FFF 0%, #FFF5F5 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            border-radius: 50%;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--black);
        }

        .hero-text h1 .red-text {
            color: var(--blood-red);
            position: relative;
            display: inline-block;
        }

        .hero-text h1 .red-text::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--blood-red);
            opacity: 0.3;
        }

        .hero-text .tagline {
            font-size: 1.8rem;
            color: var(--medium-gray);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .hero-text .witty-line {
            font-size: 1.3rem;
            color: var(--dark-gray);
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            background: white;
            border-left: 5px solid var(--blood-red);
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            font-style: italic;
        }

        .hero-badges {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid var(--light-gray);
        }

        .badge i {
            color: var(--blood-red);
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .btn-primary, .btn-secondary {
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.15rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--blood-red), var(--dark-red));
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--blood-red);
            border: 3px solid var(--blood-red);
        }

        .btn-secondary:hover {
            background: var(--blood-red);
            color: white;
            transform: translateY(-4px);
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-visual {
            width: 550px;
            height: 550px;
            background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(220, 20, 60, 0.05));
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 20px 60px rgba(220, 20, 60, 0.2);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        .hero-visual i {
            font-size: 280px;
            color: var(--blood-red);
            opacity: 0.9;
            filter: drop-shadow(0 10px 40px rgba(220, 20, 60, 0.3));
        }

        .floating-icon {
            position: absolute;
            background: white;
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            animation: bounce 3s ease-in-out infinite;
        }

        .floating-icon i {
            font-size: 2rem;
            color: var(--blood-red);
        }

        .floating-icon:nth-child(2) { top: 10%; left: -5%; animation-delay: 0s; }
        .floating-icon:nth-child(3) { top: 60%; right: -5%; animation-delay: 1s; }
        .floating-icon:nth-child(4) { bottom: 10%; left: 10%; animation-delay: 2s; }

        @keyframes bounce {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        /* Alert Banner */
        .alert-banner {
            background: linear-gradient(135deg, var(--blood-red), var(--dark-red));
            color: white;
            padding: 1.5rem 2rem;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
        }

        .alert-banner i {
            margin-right: 0.5rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }

        /* Stats Section */
        .stats {
            padding: 4rem 2rem;
            background: white;
            box-shadow: 0 -5px 30px rgba(220, 20, 60, 0.05);
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #FFF 0%, #FFF5F5 100%);
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(220, 20, 60, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--blood-red);
            box-shadow: 0 15px 50px rgba(220, 20, 60, 0.2);
        }

        .stat-icon {
            font-size: 3.5rem;
            color: var(--blood-red);
            margin-bottom: 1rem;
        }

        .stat-number {
            font-family: 'Rajdhani', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: var(--black);
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--medium-gray);
            margin-top: 0.5rem;
            font-weight: 600;
        }

        /* Mission Section */
        .mission {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #FFF 0%, #FFFAF5 100%);
        }

        .mission-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .mission-container h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 2rem;
        }

        .mission-container h2 .highlight {
            color: var(--blood-red);
            position: relative;
        }

        .mission-text {
            font-size: 1.5rem;
            line-height: 1.8;
            color: var(--dark-gray);
            margin-bottom: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .mission-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .mission-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 5px solid var(--blood-red);
        }

        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(220, 20, 60, 0.2);
        }

        .mission-card i {
            font-size: 4rem;
            color: var(--blood-red);
            margin-bottom: 1.5rem;
        }

        .mission-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--black);
            font-weight: 700;
        }

        .mission-card p {
            font-size: 1.1rem;
            color: var(--medium-gray);
            line-height: 1.8;
        }

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-header h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 1.5rem;
        }

        .section-header .red {
            color: var(--blood-red);
        }

        .section-header p {
            font-size: 1.4rem;
            color: var(--medium-gray);
            max-width: 800px;
            margin: 0 auto;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
        }

        .service-card {
            background: linear-gradient(135deg, #FFF 0%, #FFF5F5 100%);
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--blood-red), var(--dark-red));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--blood-red);
            box-shadow: 0 20px 60px rgba(220, 20, 60, 0.25);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--blood-red), var(--dark-red));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
        }

        .service-card h3 {
            font-size: 1.8rem;
            color: var(--black);
            font-weight: 700;
            flex: 1;
        }

        .service-card .funny-tagline {
            font-size: 1.05rem;
            color: var(--blood-red);
            font-weight: 600;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .service-card p {
            color: var(--dark-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            padding: 0.8rem 0;
            color: var(--dark-gray);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 500;
        }

        .service-features li i {
            color: var(--blood-red);
            font-size: 1.2rem;
        }

        /* Threat Section */
        .threat-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--blood-red), var(--dark-red));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .threat-section::before {
            content: '⚠';
            position: absolute;
            font-size: 600px;
            opacity: 0.05;
            top: -100px;
            right: -100px;
            transform: rotate(-15deg);
        }

        .threat-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .threat-container h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .threat-container p {
            font-size: 1.6rem;
            margin-bottom: 3rem;
            line-height: 1.8;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .threat-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .threat-stat {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .threat-stat:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.25);
        }

        .threat-stat h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .threat-stat p {
            font-size: 1.2rem;
            margin: 0;
        }

        /* Weapons Arsenal Section */
        .arsenal {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #FFF 0%, #FFF9F9 100%);
        }

        .arsenal-grid {
            max-width: 1400px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .weapon-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 5px solid var(--blood-red);
            position: relative;
        }

        .weapon-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 50px rgba(220, 20, 60, 0.2);
        }

        .weapon-card::before {
            content: '🎯';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            opacity: 0.3;
        }

        .weapon-card h4 {
            font-size: 1.5rem;
            color: var(--black);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .weapon-card .vendor {
            color: var(--blood-red);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .weapon-card p {
            color: var(--medium-gray);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* White Papers Section */
        .white-papers {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #FFF 0%, #FFF5F5 100%);
        }

        .white-papers-grid {
            max-width: 1400px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .white-paper-card {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 5px solid var(--blood-red);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .white-paper-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--blood-red), var(--crimson));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .white-paper-card:hover::before {
            transform: scaleX(1);
        }

        .white-paper-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(220, 20, 60, 0.2);
        }

        .wp-icon {
            font-size: 3rem;
            color: var(--blood-red);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FFF5F5 0%, #FFE5E5 100%);
            border-radius: 50%;
        }

        .white-paper-card h3 {
            font-size: 1.6rem;
            color: var(--black);
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .white-paper-card > p {
            color: var(--medium-gray);
            line-height: 1.7;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .wp-highlights {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            border-left: 3px solid var(--blood-red);
            padding-left: 1.5rem;
        }

        .wp-highlights li {
            color: var(--dark-gray);
            padding: 0.5rem 0;
            font-size: 1rem;
            font-weight: 500;
        }

        .wp-highlights li::before {
            content: '✓';
            color: var(--blood-red);
            font-weight: bold;
            margin-right: 0.8rem;
            font-size: 1.2rem;
        }

        .download-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            padding: 1.2rem 2rem;
            background: linear-gradient(135deg, var(--blood-red), var(--crimson));
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
            margin-top: auto;
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
            background: linear-gradient(135deg, var(--crimson), var(--blood-red));
        }

        .download-btn i {
            font-size: 1.2rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 2rem;
            background: white;
        }

        .testimonials-grid {
            max-width: 1400px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #FFF 0%, #FFF5F5 100%);
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 6rem;
            color: var(--blood-red);
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(220, 20, 60, 0.15);
        }

        .stars {
            color: var(--accent-orange);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            font-size: 1.15rem;
            color: var(--dark-gray);
            line-height: 1.8;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            border-top: 2px solid var(--light-gray);
            padding-top: 1.5rem;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blood-red), var(--dark-red));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
        }

        .author-info h4 {
            font-size: 1.3rem;
            color: var(--black);
            margin-bottom: 0.3rem;
        }

        .author-info p {
            color: var(--medium-gray);
            font-size: 1rem;
        }

        /* Locations */
        .locations {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #FFF 0%, #FFFAF5 100%);
        }

        .locations-grid {
            max-width: 1400px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .location-card {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .location-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--blood-red), var(--dark-red));
        }

        .location-card:hover {
            border-color: var(--blood-red);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(220, 20, 60, 0.2);
        }

        .location-icon {
            font-size: 5rem;
            color: var(--blood-red);
            margin-bottom: 1.5rem;
        }

        .location-card h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            color: var(--black);
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .location-subtitle {
            color: var(--blood-red);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .location-card p {
            color: var(--dark-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: white;
        }

        .contact-container {
            max-width: 1400px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-info h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            color: var(--black);
            margin-bottom: 2rem;
            font-weight: 800;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            padding: 2rem;
            background: linear-gradient(135deg, #FFF 0%, #FFF5F5 100%);
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 5px solid var(--blood-red);
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
        }

        .contact-item i {
            font-size: 2.5rem;
            color: var(--blood-red);
            margin-top: 0.3rem;
        }

        .contact-item-content h4 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--black);
            font-weight: 700;
        }

        .contact-item-content p {
            color: var(--medium-gray);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .contact-form {
            background: linear-gradient(135deg, #FFF 0%, #FFF5F5 100%);
            padding: 3.5rem;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(220, 20, 60, 0.1);
            border: 3px solid var(--light-gray);
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 700;
            color: var(--black);
            font-size: 1.05rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1.2rem;
            border-radius: 12px;
            border: 2px solid var(--light-gray);
            background: white;
            color: var(--dark-gray);
            font-size: 1.05rem;
            transition: all 0.3s ease;
            font-family: 'Space Grotesk', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--blood-red);
            box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 1.4rem;
            background: linear-gradient(135deg, var(--blood-red), var(--dark-red));
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }

        .submit-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--black), #1a1a1a);
            color: white;
            padding: 5rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--blood-red);
            font-weight: 700;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            line-height: 2.2;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--blood-red);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blood-red), var(--dark-red));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-5px) scale(1.15);
            box-shadow: 0 10px 30px rgba(220, 20, 60, 0.5);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 2px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            color: var(--blood-red);
            cursor: pointer;
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--blood-red), var(--dark-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
        }

        .scroll-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 12px 35px rgba(220, 20, 60, 0.6);
        }

        /* Floating Take Revenge Button */
        .floating-booking-btn {
            position: fixed;
            bottom: 100px;
            right: 2rem;
            z-index: 1000;
            animation: float-pulse 3s ease-in-out infinite;
        }

        .floating-booking-btn a {
            background: linear-gradient(135deg, var(--blood-red), var(--dark-red));
            color: white;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 8px 30px rgba(220, 20, 60, 0.5);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            white-space: nowrap;
        }

        .floating-booking-btn a:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 40px rgba(220, 20, 60, 0.7);
            background: linear-gradient(135deg, var(--dark-red), var(--crimson));
        }

        .floating-booking-btn i {
            font-size: 1.3rem;
            animation: crosshair-spin 2s linear infinite;
        }

        @keyframes float-pulse {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes crosshair-spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-image {
                display: none;
            }

            .hero-text h1 {
                font-size: 4rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .mission-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .logo img {
                height: 35px;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                left: -100%;
                top: 85px;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 2rem;
                transition: left 0.3s ease;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-text .tagline {
                font-size: 1.4rem;
            }

            .section-header h2,
            .mission-container h2,
            .threat-container h2 {
                font-size: 2.5rem;
            }

            .services-grid,
            .arsenal-grid,
            .white-papers-grid,
            .testimonials-grid,
            .locations-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .floating-booking-btn {
                bottom: 80px;
                right: 1rem;
            }

            .floating-booking-btn a {
                padding: 1rem 1.8rem;
                font-size: 1rem;
            }
        }

/* Active navigation state */
.nav-links a.active {
    color: var(--blood-red);
    background: rgba(220, 20, 60, 0.1);
    font-weight: 700;
}

/* Page-specific styles */
.page-hero {
    padding: 140px 2rem 60px;
    background: linear-gradient(135deg, #FFF 0%, #FFF5F5 100%);
    text-align: center;
}

.page-hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Origin Story Section - Responsive Layout */
@media (max-width: 768px) {
    .origin-story > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .story-image {
        position: relative !important;
        top: 0 !important;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .origin-story {
        padding: 3rem 1.5rem !important;
    }
    
    .origin-story h2 {
        font-size: 2rem !important;
    }
    
    .origin-story h3 {
        font-size: 1.6rem !important;
    }
    
    .origin-story p {
        font-size: 1.1rem !important;
    }
}
