/* ==========================================================================
   1. GLOBAL & RESET
   ========================================================================== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    background: #000000; /* Dark baseline matching your cyber gold aesthetic */
}

/* Custom Scrollbar */
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: #111;
}
::-webkit-scrollbar-thumb{
    background: #f5b400;
    border-radius: 20px;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
header {
    width: 100%;
    height: 95px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 45px;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    transition: 0.4s;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

.logo h2 span {
    color: #f5b400;
}

nav {
    display: flex;
    align-items: center;
    gap: 42px;
    height: 100%;
}

nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 10px 0;
    display: inline-block;
    position: relative;
}

nav a:hover, 
nav a.active-link {
    color: #f5b400;
    text-shadow: 0 0 10px rgba(245, 180, 0, 0.3);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: #f5b400;
    transition: 0.3s ease;
}

nav a:hover::after,
nav a.active-link::after {
    width: 100%;
}

.menu-toggle{
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero{
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1582139329536-e7284fece509?q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 8% !important;
    text-align: left !important;
    position: relative;
    overflow: hidden;
}

.premium-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 30%, rgba(15, 15, 15, 0.8) 60%, rgba(245, 180, 0, 0.15) 100%);
    z-index: 1;
}

.hero-content{
    position: relative;
    max-width: 750px;
    z-index: 3;
    animation: premiumFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 180, 0, 0.1);
    border: 1px solid rgba(245, 180, 0, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: #f5b400;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-tagline-badge i {
    animation: pulseGlow 2s infinite;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 76px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.hero-content h1 span {
    color: #f5b400;
    background: linear-gradient(to right, #f5b400, #ffdb66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(245, 180, 0, 0.6), 0 0 20px rgba(245, 180, 0, 0.3) !important;
}

.hero-content p {
    font-size: 18px;
    line-height: 32px;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 650px;
}

/* Hero Badges */
.hero-badges{
    display: flex;
    justify-content: flex-start !important;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-badges span{
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    padding: 14px 24px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
    transition: all 0.4s ease !important;
    color: #ffffff !important;
}

.hero-badges span:hover {
    background: rgba(245, 180, 0, 0.15) !important;
    border-color: rgba(245, 180, 0, 0.4) !important;
    color: #f5b400 !important;
    transform: translateY(-4px) !important;
}

.hero-badges i{
    color: #f5b400;
    margin-right: 8px;
    transition: 0.3s;
}

.hero-badges span:hover i{
    color: black;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start !important;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #f5b400;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    transform: translateY(-5px);
}

.hero-buttons .btn {
    min-width: 220px;
    text-align: center;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.hero-buttons .btn:hover {
    box-shadow: 0 10px 25px rgba(245,180,0,0.35);
}

.btn-premium-primary {
    background: #f5b400 !important;
    color: #000000 !important;
    box-shadow: 0 6px 20px rgba(245, 180, 0, 0.3) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-premium-primary:hover {
    background: #ffffff !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5) !important;
}

.btn-premium-outline {
    background: rgba(255,255,255,0.03) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(5px);
}

.btn-premium-outline:hover {
    background: #f5b400 !important;
    color: #000000 !important;
    border-color: #f5b400 !important;
    box-shadow: 0 0 20px rgba(245, 180, 0, 0.4) !important;
}

/* Guard Graphic Image Container */
.hero-security-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    pointer-events: none;
}

.hero-security-image img {
    width: 100%;
    height: 100%;
    max-height: 90vh;
    object-fit: cover;
    object-position: center top;
    filter: drop-shadow(-15px 0 30px rgba(0, 0, 0, 0.7));
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
}

/* ==========================================================================
   4. WELCOME & ABOUT SECTION
   ========================================================================== */
.about {
    padding: 0;
    display: flex;
    align-items: center;
}

.welcome-section {
    width: 100%;
    padding: 120px 8%;
    background: #000000 !important; /* Deep dark tone */
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.welcome-container {
    max-width: 1100px;
    margin: auto;
    animation: fadeUp 1s ease;
}

.welcome-container h4 {
    color: #f5b400;
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.welcome-container h2 {
    font-size: 52px !important;
    line-height: 68px !important;
    margin-bottom: 25px;
    font-weight: 800;
    color: #ffffff !important;
}

.welcome-container h2 span {
    text-shadow: 0 0 10px rgba(245, 180, 0, 0.6), 0 0 20px rgba(245, 180, 0, 0.3) !important;
}

.line {
    width: 90px;
    height: 4px;
    background: #f5b400;
    margin: 0 auto 40px;
    border-radius: 50px;
}

.welcome-container p {
    font-size: 22px;
    line-height: 45px;
    color: #aaaaaa;
    margin-bottom: 35px;
}

.welcome-container .btn {
    margin-top: 15px;
}

/* ==========================================================================
   5. SERVICES BLOCK
   ========================================================================== */
.services {
    background: #000000;
    color: rgb(255, 255, 255);
    padding: 120px 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h4 {
    color: #f5b400;
    font-size: 20px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 50px;
}

.section-title h2 span {
    text-shadow: 0 0 10px rgba(245, 180, 0, 0.6), 0 0 20px rgba(245, 180, 0, 0.3) !important;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-box {
    background: #1b1b1b;
    padding: 45px 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.service-box:hover .service-image {
    transform: scale(1.05);
}

.service-box:hover {
    background: #f5b400;
    color: black;
    transform: translateY(-12px);
    border: 1px solid white;
}

.service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: 0.5s;
}

.service-box:hover::before {
    left: 100%;
}

.service-box i {
    font-size: 60px;
    margin-bottom: 25px;
}

.service-box h3 {
    margin-bottom: 18px;
    font-size: 24px;
}

.service-box p {
    line-height: 28px;
}

/* ==========================================================================
   6. WHY CHOOSE US
   ========================================================================== */
.why {
    padding: 120px 80px;
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.why-content {
    max-width: 750px;
}

.why-content h4 {
    color: #f5b400;
    margin-bottom: 15px;
}

.why-content h2 {
    font-size: 55px;
    line-height: 70px;
    margin-bottom: 25px;
}

.why-content h2 span {
    text-shadow: 0 0 10px rgba(245, 180, 0, 0.6), 0 0 20px rgba(245, 180, 0, 0.3) !important;
}

.why-content p {
    line-height: 34px;
    margin-bottom: 35px;
    font-size: 18px;
}

.why-list div {
    margin-bottom: 20px;
    font-size: 18px;
}

.why-list i {
    color: #f5b400;
    margin-right: 10px;
}

/* ==========================================================================
   7. LIVE METRIC COUNTERS
   ========================================================================== */
.counter {
    background: #f5b400;
    padding: 90px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-box h2 {
    font-size: 60px;
    margin-bottom: 10px;
    color: #000;
}

.counter-box p {
    color: #000;
    font-weight: 600;
}

/* ==========================================================================
   8. CONTACT FORM WORKSPACE
   ========================================================================== */
.contact {
    padding: 120px 80px;
    background: #000;
}

form {
    max-width: 1000px;
    margin: auto;
}

form input,
form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
    background: #fafafa;
}

form input:focus,
form textarea:focus {
    border: 1px solid #f5b400;
    box-shadow: 0 0 10px rgba(245,180,0,0.4);
}

form button {
    padding: 15px 40px;
    background: #f5b400;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    min-width: 240px;
}

form button:hover {
    background: #111;
    color: white;
}

/* ==========================================================================
   9. BRAND INFO ROW
   ========================================================================== */
.info {
    background: #111;
    padding: 100px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-box {
    background: #050505;
    padding: 45px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: 0.4s;
    border-bottom: 4px solid transparent;
    color: #fff;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    border-bottom: 4px solid #f5b400;
}

.info-box i {
    font-size: 42px;
    color: #f5b400;
    margin-bottom: 20px;
}

.info-box h3 {
    margin-bottom: 15px;
}

.info-box p {
    color: #ccc;
}

/* ==========================================================================
   10. FOOTER & COMPASS SYSTEMS
   ========================================================================== */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 70px 20px;
    border-top: 2px solid #f5b400;
}

footer h2 {
    margin-bottom: 20px;
}

footer p {
    margin-bottom: 25px;
}

.socials a {
    color: white;
    text-decoration: none;
}

.socials i {
    margin: 0 10px;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.socials i:hover {
    color: #f5b400;
    transform: scale(1.2);
}

footer h5 {
    margin-top: 30px;
    color: #999;
}

/* WhatsApp Floating System */
.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 32px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ==========================================================================
   11. ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes slideDown{
    from{ opacity: 0; transform: translateY(-50px); }
    to{ opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn{
    from{ opacity: 0; }
    to{ opacity: 1; }
}

@keyframes fadeUp{
    from{ opacity: 0; transform: translateY(40px); }
    to{ opacity: 1; transform: translateY(0); }
}

@keyframes premiumFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { opacity: 0.6; }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.6; }
}

/* ==========================================================================
   12. MEDIA RESPONSIVE LAYOUT MATRIX
   ========================================================================== */

/* Tablet Optimization Engines */
@media(max-width: 1100px){
    .service-container,
    .counter,
    .info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 1200px) {
    .hero-content h1 { font-size: 52px; line-height: 64px; }
    .hero-security-image { width: 34%; }
}

@media(max-width: 992px) {
    .hero { text-align: center !important; padding: 0 4% !important; justify-content: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-tagline-badge { margin: 0 auto 25px; }
    .hero-badges { justify-content: center !important; flex-wrap: wrap; }
    .hero-buttons { justify-content: center !important; width: 100%; }
    .hero-security-image { display: none; } 
}

/* Mobile Core Breakpoint */
@media(max-width: 768px){
    header {
        height: 75px;
        padding: 0 16px;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
    }

    .logo {
        margin: 0 !important;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .logo-link {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .header-logo-img {
        height: 42px !important;
        width: auto !important;
    }

    .logo h2 {
        font-size: 18px !important;
        line-height: 26px !important;
        max-width: 220px;
        white-space: nowrap !important;
        display: flex;
        gap: 5px;
        margin: 0 !important;
    }

    .logo h2 span {
        display: inline-block !important;
    }

    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #111;
        display: flex;
        flex-direction: column;
        padding-top: 90px;
        transition: 0.4s;
        z-index: 999;
    }

    #nav-menu.active {
        right: 0;
    }

    nav a {
        font-size: 17px;
        padding-left: 25px;
        margin: 18px 0;
        display: block;
    }

    /* Hero Section Mobile Override */
    .hero {
        height: 100vh;
        padding: 0 18px !important;
        background-attachment: scroll;
    }

    .hero-content {
        width: 100%;
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 48px;
        margin-bottom: 18px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 28px;
    }

    .hero-badges {
        gap: 10px;
        justify-content: center !important;
    }

    .hero-badges span {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 12px 15px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: 100%;
        text-align: center;
        padding: 15px;
    }

    /* Sections Shared Spacing Mobile */
    .about,
    .services,
    .why,
    .contact,
    .info {
        padding: 70px 18px;
    }

    /* Welcome Setup */
    .welcome-section {
        padding: 70px 0;
    }

    .welcome-container h2 {
        font-size: 34px;
        line-height: 46px;
        margin-bottom: 20px;
    }

    .welcome-container p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 25px;
    }

    .line {
        width: 70px;
        margin-bottom: 28px;
    }

    /* Component Structural Resets */
    .service-container,
    .counter,
    .info {
        grid-template-columns: 1fr;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .section-title h2,
    .why-content h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .service-box {
        padding: 35px 22px;
    }

    .service-box i {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .service-box h3 {
        font-size: 22px;
    }

    .service-box p {
        font-size: 15px;
        line-height: 26px;
    }

    .service-image {
        height: 200px;
    }

    .why {
        background-attachment: scroll;
    }

    .why-content p {
        font-size: 16px;
        line-height: 30px;
    }

    .why-list div {
        font-size: 16px;
        line-height: 28px;
    }

    .counter {
        gap: 25px;
    }

    .counter-box {
        padding: 25px 15px;
        background: rgba(255,255,255,0.15);
        border-radius: 10px;
    }

    .counter-box h2 {
        font-size: 42px;
    }

    .counter-box p {
        font-size: 15px;
    }

    /* Forms Mobile */
    form {
        width: 100%;
    }

    form input,
    form textarea {
        padding: 15px;
        font-size: 15px;
    }

    form button {
        width: 100%;
        min-width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    /* Info Core Boxes */
    .info-box {
        padding: 35px 20px;
    }

    .info-box i {
        font-size: 34px;
    }

    .info-box h3 {
        font-size: 22px;
    }

    .info-box p {
        font-size: 15px;
        line-height: 28px;
    }

    /* Footer Mobile */
    footer {
        padding: 55px 18px;
    }

    footer h2 {
        font-size: 24px;
        line-height: 36px;
    }

    footer p {
        font-size: 15px;
        line-height: 28px;
    }

    .socials i {
        font-size: 20px;
        margin: 0 8px;
    }

    footer h5 {
        font-size: 13px;
        line-height: 24px;
    }

    .whatsapp {
        width: 56px;
        height: 56px;
        font-size: 28px;
        right: 18px;
        bottom: 18px;
    }
}