:root {
    --bg-black: #000000;
    --text-white: #ffffff;
    --rasta-red: #dc2626;
    --rasta-gold: #f59e0b;
    --rasta-green: #10b981;
    --card-dark: #121212;
    --border-gray: #2d3748;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-black);
    color: var(--text-white);
}

/* Navbar Components */
.navbar {
    background-color: var(--bg-black);
    padding: 25px 0;
    border-bottom: 3px solid var(--rasta-green);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    color: var(--text-white);
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
}
.logo span { color: var(--rasta-gold); }
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: var(--rasta-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-white); }

/* Main Homepage Hero Component */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(18, 18, 18, 0.95));
    text-align: center;
    
    /* MODIFIED: Drastically shaves down the top space to 60px while keeping the bottom spacing balanced */
    padding: 60px 20px 120px 20px !important;
}
.hero-section h1 { font-size: 3rem; margin-bottom: 20px; }
.hero-section p { font-size: 1.25rem; max-width: 750px; margin: 0 auto 40px; color: var(--rasta-gold); }
.cta-btn {
    background-color: var(--rasta-red);
    color: var(--text-white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

/* Card Grids Component */
.features-grid {
    max-width: 1100px;
    margin: -40px auto 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}
.feature-card {
    background: var(--card-dark);
    padding: 35px;
    border-radius: 6px;
    border: 1px solid var(--border-gray);
    border-top: 5px solid var(--rasta-red);
}
.feature-card h3 { margin-top: 0; color: var(--text-white); }
.feature-card p { color: #a0aec0; line-height: 1.6; }

/* About Us Layout Components */
.about-header, .services-header, .contact-header { text-align: center; padding: 60px 20px 30px; }
.about-header h1, .services-header h1, .contact-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.about-subtitle, .services-subtitle, .contact-subtitle { color: var(--rasta-gold); font-size: 1.2rem; }

.about-container { max-width: 850px; margin: 0 auto 60px; padding: 0 20px; }
.about-section-box { background: var(--card-dark); padding: 35px; border-radius: 6px; margin-bottom: 30px; border: 1px solid var(--border-gray); }
.about-section-box h2 { margin-top: 0; font-size: 1.6rem; margin-bottom: 15px; }
.about-section-box p { color: #cbd5e0; line-height: 1.7; }

.border-red { border-left: 5px solid var(--rasta-red); } .border-red h2 { color: var(--rasta-red); }
.border-gold { border-left: 5px solid var(--rasta-gold); } .border-gold h2 { color: var(--rasta-gold); }
.border-green { border-left: 5px solid var(--rasta-green); } .border-green h2 { color: var(--rasta-green); }

/* Team Profile Elements Component */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 25px; }
.team-member { background-color: #080808; border: 1px solid var(--border-gray); padding: 20px; border-radius: 4px; text-align: center; }
.team-photo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    
    /* FIX: Adds a solid light grey border and a soft glow effect */
    border: 3px solid #4a5568; 
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15); 
    
    background-color: #1a1a1a; /* Gives a lighter dark grey background behind the image */
    display: inline-block;
}
.team-member h3 { margin: 0 0 8px 0; color: var(--text-white); }
.role-tag { margin: 0; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; }
.text-red { color: var(--rasta-red); } .text-gold { color: var(--rasta-gold); } .text-green { color: var(--rasta-green); }

/* Services Layout Components */
.services-container { max-width: 1000px; margin: 0 auto; padding: 20px; }
.service-row { background: var(--card-dark); border: 1px solid var(--border-gray); border-radius: 8px; padding: 40px; margin-bottom: 40px; }
.service-tag { display: inline-block; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; margin-bottom: 15px; }
.tag-red { background: rgba(220,38,38,0.2); color: var(--rasta-red); border: 1px solid var(--rasta-red); }
.tag-gold { background: rgba(245,158,11,0.2); color: var(--rasta-gold); border: 1px solid var(--rasta-gold); }
.tag-green { background: rgba(16,185,129,0.2); color: var(--rasta-green); border: 1px solid var(--rasta-green); }
.service-info h2 { margin: 0 0 15px 0; font-size: 1.8rem; }
.service-info p { color: #cbd5e0; line-height: 1.7; margin-bottom: 20px; }
.service-points { list-style: none; padding: 0; margin: 0; }
.service-points li { position: relative; padding-left: 25px; margin-bottom: 10px; }
.service-points li::before { content: "✓"; position: absolute; left: 0; color: var(--rasta-green); font-weight: bold; }
.services-cta { text-align: center; padding: 80px 20px; border-top: 1px solid var(--border-gray); }

/* Contact Component Interface Layout */
.contact-container { max-width: 1050px; margin: 0 auto 80px; padding: 0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.contact-info-box { display: flex; flex-direction: column; gap: 25px; }
.info-group { background: var(--card-dark); padding: 25px; border-radius: 6px; border: 1px solid var(--border-gray); }
.contact-form-box { background: var(--card-dark); padding: 40px; border-radius: 8px; border: 1px solid var(--border-gray); border-top: 5px solid var(--rasta-green); }
.secure-form { display: flex; flex-direction: column; gap: 20px; }
.input-field { display: flex; flex-direction: column; gap: 8px; }
.input-field label { font-weight: 700; font-size: 0.9rem; color: #a0aec0; text-transform: uppercase; }
.input-field input, .input-field textarea { background: #050505; border: 1px solid var(--border-gray); border-radius: 4px; padding: 12px; color: var(--text-white); font-family: inherit; }
.input-field input:focus, .input-field textarea:focus { border-color: var(--rasta-gold); outline: none; }
.form-submit-btn { background: var(--rasta-red); color: var(--text-white); border: none; padding: 14px; font-weight: bold; text-transform: uppercase; border-radius: 4px; cursor: pointer; }
.form-success-banner { background: rgba(16,185,129,0.15); border: 1px solid var(--rasta-green); color: #a7f3d0; padding: 15px; border-radius: 4px; margin-bottom: 25px; }

/* General Footer Layout */
.footer { background-color: #0a0a0a; color: #4a5568; text-align: center; padding: 35px 20px; font-size: 0.9rem; border-top: 1px solid var(--border-gray); margin-top: 40px; }

/* ======================================================= */
/* BRAND LOGO HEADER ALIGNMENT CONFIGURATIONS APPENDED      */
/* ======================================================= */

.logo-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;                /* Creates clean spacing between the image and the text */
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;             /* Constrains the logo height to line up perfectly with text */
    width: auto;              /* Keeps the logo's original aspect ratio */
    object-fit: contain;
}

.logo-text {
    color: var(--text-white);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.logo-text span { 
    color: var(--rasta-gold); 
}

/* ======================================================= */
/* UPDATED ABOUT US LAYOUT WITH IMAGES APPENDED             */
/* ======================================================= */

.about-container {
    max-width: 1050px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

/* Two-column layout rows */
.about-row {
    background: var(--card-dark);
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
}

/* Switches image/text layout for the vision section row */
.about-row.reverse {
    flex-direction: row-reverse;
}

.about-text-col {
    flex: 1.2;
}
.about-img-col {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

/* Section Images Formatting */
.about-section-img {
    width: 100%;
    max-width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-gray);
    background-color: #1a1a1a; /* Dark gray block showing before your image file loads */
}

.about-row h2 {
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.about-row p {
    color: #cbd5e0;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Rasta Highlight Borders for rows */
.about-row.border-red { border-left: 6px solid var(--rasta-red); }
.about-row.border-red h2 { color: var(--rasta-red); }

.about-row.border-gold { border-left: 6px solid var(--rasta-gold); }
.about-row.border-gold h2 { color: var(--rasta-gold); }

.about-row.border-green { border-left: 6px solid var(--rasta-green); }
.about-row.border-green h2 { color: var(--rasta-green); }

/* Team Header Wrapper Adjustments */
.team-section-wrapper {
    background: var(--card-dark);
    border: 1px solid var(--border-gray);
    padding: 40px;
    border-radius: 6px;
    margin-top: 50px;
}
.team-section-wrapper h2 {
    margin-top: 0;
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

/* Mobile responsive fallback */
@media (max-width: 768px) {
    .about-row, .about-row.reverse {
        flex-direction: column;
        padding: 30px 20px;
    }
    .about-section-img {
        max-width: 100%;
        height: auto;
    }
}

/* ======================================================= */
/* FIREWALL VENDOR LOGO DISPLAY SPECIFICATIONS APPENDED    */
/* ======================================================= */

.vendor-mini-logo {
    height: 32px;              /* Standardizes all vendor logos to the same height */
    width: auto;               /* Keeps original aspect proportions clean */
    object-fit: contain;
    filter: grayscale(20%) brightness(95%); /* Keeps them blending elegantly with the dark aesthetic */
    transition: filter 0.2s ease;
}

/* Brightens up the specific vendor logo naturally when hovered over */
.vendor-mini-logo:hover {
    filter: grayscale(0%) brightness(100%);
}


/* ======================================================= */
/* CONTACT PAGE TYPOGRAPHY & RASTA LINK OVERRIDES         */
/* ======================================================= */

.info-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #718096; /* Clean muted grey for structural labels */
    margin: 15px 0 5px 0;
    font-weight: 700;
}

.info-detail {
    font-size: 1.15rem;
    color: var(--text-white);
    margin: 0 0 15px 0;
    font-weight: 600;
}

/* Force-override default browser blue for phone/clickable links */
.contact-link, 
a[href^="tel:"] {
    color: var(--rasta-gold) !important; /* Standard numbers turn Gold */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease-in-out;
}

.contact-link:hover,
a[href^="tel:"]:hover {
    color: var(--text-white) !important; /* Glow white on hover */
}

/* Force the 24/7 Incident Response Line to Alert Red */
.IR-hotline {
    color: var(--rasta-red) !important;
    font-weight: 700;
}

.IR-hotline:hover {
    color: var(--rasta-gold) !important; /* Turns gold when hovered */
}


/* ======================================================= */
/* NAVBAR BRAND TYPOGRAPHY SPACING                         */
/* ======================================================= */

/* Targets any heading or link inside your header/nav that acts as the logo */
header a, 
.navbar a:first-child,
nav h1, 
nav h2 {
    letter-spacing: 1.5px; /* Adds clean spacing between letters */
    padding-right: 25px;   /* Pushes the menu links away so it doesn't crowd */
    font-weight: 700;
}

/* ======================================================= */
/* FOOTER LAYOUT & CENTERING                               */
/* ======================================================= */

.main-footer {
    width: 100%;
    padding: 20px 0;
    background-color: #000000; /* Keeps your crisp black background */
    text-align: center;        /* Forces the text directly to the absolute center */
    margin-top: auto;          /* Pushes it to the bottom of the screen if content is short */
}

.footer-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--text-white) !important; /* Base copyright text stays white */
    margin: 0;
    display: inline-block;
}

/* Turns only the final phrase into your corporate alert red */
.highlight-red {
    color: var(--rasta-red) !important;
    font-weight: 600;
}


/* ======================================================= */
/* CLEAN CLEAN-TEXT LIST OVERRIDES (NO TICKS, NO BULLETS)  */
/* ======================================================= */

/* Removes all default list styling and resets indentation */
.services-container ul, 
.services-list,
main ul {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* ======================================================= */
/* CLEAN CLEAN-TEXT LIST OVERRIDES (NO TICKS, NO BULLETS)  */
/* ======================================================= */

/* Removes all default list styling and resets indentation */
.services-container ul, 
.services-list,
main ul {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}



/* ======================================================= */
/* CLEAN CLEAN-TEXT LIST OVERRIDES (NO TICKS, NO BULLETS)  */
/* ======================================================= */

/* Removes all default list styling and resets indentation */
.services-container ul, 
.services-list,
main ul {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}


/* ======================================================= */
/* NUCLEAR TICK REMOVAL OVERRIDE                           */
/* ======================================================= */

/* Strips any injected icons or checkmarks before list items */
.services-container ul li::before,
.services-list li::before,
main ul li::before,
li::before {
    content: none !important;
    background: none !important;
    display: none !important;
}

/* Hard reset on the list elements themselves */
.services-container ul, 
.services-list,
main ul,
li {
    list-style: none !important;
    list-style-image: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
}


/* ======================================================= */
/* VENDOR LOGO ROW (SPACED START, MIDDLE, END)             */
/* ======================================================= */

.vendor-logo-row {
    display: flex;
    justify-content: space-between; /* Pushes logos to: Left Start, Dead Center, Right End */
    align-items: center;            /* Keeps them perfectly aligned vertically */
    width: 100%;                    /* Forces the container to stretch across the full page line */
    padding: 30px 0;                /* Adds professional breathing room above and below */
    gap: 20px;                      /* Prevents logos from bumping into each other on small screens */
}

.vendor-logo {
    height: 60px;                   /* Increases the size so they are highly visible */
    width: auto;                    /* Keeps original proportions so logos don't look stretched */
    max-width: 200px;               /* Puts a cap on the max width so they stay neat */
    object-fit: contain;
    filter: brightness(0) invert(1); /* Turns logos crisp white to stand out on your dark theme */
    transition: transform 0.3s ease;
}

/* Subtle hover effect to make the UI feel interactive */
.vendor-logo:hover {
    transform: scale(1.08);
}


/* ======================================================= */
/* SECURE MESSAGE CARD HOUSING                             */
/* ======================================================= */

.secure-msg-section {
    display: flex !important;
    justify-content: center !important; 
    align-items: center !important;
    width: 100% !important;
    padding: 0 0 60px 0 !important;     /* Shaves top padding to 0 */
    margin-top: -50px !important;       /* Pulls the card upward */
    background-color: #000000 !important;
    clear: both; 
}

.secure-msg-card {
    background-color: #0b0b0b !important; /* Deep dark card background */
    border: 1px solid #1a202c !important;  /* Grey boundary border */
    border-radius: 8px !important;
    width: 100% !important;
    max-width: 550px !important;            /* Limits card width */
    padding: 35px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7) !important;
    margin: 0 auto !important;             /* Standard layout trick to center block elements */
    text-align: left !important;
}

.secure-badge {
    display: inline-block !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    color: var(--rasta-gold) !important;
    border: 1px solid var(--rasta-gold) !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
}

.card-header h3 {
    font-size: 1.8rem !important;
    color: var(--text-white) !important;
    margin: 5px 0 10px 0 !important;
}

.card-header p {
    font-size: 0.95rem !important;
    color: #a0aec0 !important;
    margin-bottom: 25px !important;
    line-height: 1.5 !important;
}

/* FORM INPUT INTERFACES */
.form-group {
    margin-bottom: 20px !important;
}

.form-group label {
    display: block !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #cbd5e0 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.form-group input,
.form-group textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    background-color: #121212 !important;
    border: 1px solid #2d3748 !important;
    border-radius: 4px !important;
    color: var(--text-white) !important;
    font-size: 1rem !important;
    outline: none !important;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--rasta-gold) !important;
}

/* SUBMIT CTA BUTTON */
.secure-submit-btn {
    width: 100% !important;
    padding: 14px !important;
    background-color: transparent !important;
    border: 1px solid var(--rasta-red) !important;
    color: var(--text-white) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
}

.secure-submit-btn:hover {
    background-color: var(--rasta-red) !important;
    box-shadow: 0 0 15px rgba(214, 40, 40, 0.4) !important;
    transform: translateY(-2px) !important;
}


/* ======================================================= */
/* DIRECT CONTACT CHANNELS                                 */
/* ======================================================= */

.direct-channels {
    background-color: #121212 !important;
    border: 1px solid #2d3748 !important;
    border-radius: 6px !important;
    padding: 15px 20px !important;
    margin-bottom: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.channel-item {
    display: flex !important;
    align-items: center !important;
    font-size: 0.95rem !important;
}

.channel-icon {
    margin-right: 10px !important;
    font-size: 1.1rem !important;
}

.channel-label {
    color: #a0aec0 !important;
    font-weight: 600 !important;
    margin-right: 8px !important;
}

.channel-link {
    color: var(--text-white) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
}

/* Hovering turns the details to your corporate gold */
.channel-link:hover {
    color: var(--rasta-gold) !important;
    text-decoration: underline !important;
}

/* ======================================================= */
/* COMPRESSED HOME PAGE CONTACT CARD                       */
/* ======================================================= */

/* Tighten the card's general padding */
.secure-msg-card {
    padding: 22px 25px !important; /* Shaved down from 35px */
    max-width: 600px !important;   /* Slightly wider to accommodate side-by-side inputs */
}

/* Reduces spacing below headers and channels */
.card-header p {
    margin-bottom: 15px !important;
}
.direct-channels {
    margin-bottom: 15px !important;
    padding: 10px 15px !important;
}

/* Split row for identity and email inputs */
.compressed-form .form-row {
    display: flex !important;
    gap: 15px !important;
    width: 100% !important;
}

.compressed-form .form-row .form-group {
    flex: 1 !important; /* Forces both inputs to split the row 50/50 */
}

/* Shave off unnecessary padding inside inputs and buttons */
.compressed-form .form-group {
    margin-bottom: 12px !important; /* Reduced from 20px */
}

.compressed-form input,
.compressed-form textarea {
    padding: 8px 12px !important; /* Tighter internal input box height */
    font-size: 0.9rem !important;
}

/* Limits text area expansion */
.compressed-form textarea {
    resize: vertical !important;
    min-height: 55px !important; /* Drastically lower starting footprint */
}

.compressed-btn {
    padding: 10px !important; /* Smaller, punchier action button */
    margin-top: 5px !important;
}

/* ======================================================= */
/* VENDOR LOGOS DISPLAY (SERVICES TAB)                     */
/* ======================================================= */

/* Row container for the images */
.vendor-logo-row {
    display: flex !important;
    align-items: center !important;
    gap: 55px !important;            /* Wide separation to accommodate larger footprints */
    margin: 30px 0 35px 0 !important; 
    flex-wrap: wrap !important;
}

.vendor-logo {
    height: 85px !important;         /* Pushed from 65px to 85px for high visibility */
    width: auto !important;          
    max-width: 240px !important;     /* Generous width allowance so text-heavy logos don't choke */
    object-fit: contain !important;
    filter: none !important;         /* Displays full, vibrant vendor colors by default */
    opacity: 0.9 !important;         /* Soft blend into the dark theme background */
    transition: all 0.3s ease !important;
}

.vendor-logo:hover {
    opacity: 1.0 !important;
    transform: scale(1.05) !important; /* Clean hover pop */
}

/* --- RESPONSIVE MOBILE NAVIGATION STYLES --- */

/* Hide mobile structures on desktop monitors by default */
.mobile-menu-toggle, .mobile-menu-dropdown {
    display: none;
}

@media (max-width: 768px) {
    /* Hide the default horizontal desktop links */
    .nav-links {
        display: none;
    }

    /* Display and style the Hamburger Button (Three lines) */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .mobile-menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: #ffffff; /* White bars—change to your primary text color if needed */
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* The Vertical Dropdown Drawer */
    .mobile-menu-dropdown {
        display: none; /* Hidden until clicked */
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust based on your actual navbar height */
        left: 0;
        width: 100%;
        background-color: #111111; /* Match your site's dark theme navigation color */
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        padding: 20px 0;
        z-index: 1000;
    }

    /* Show the drawer when the JavaScript toggles the class */
    .mobile-menu-dropdown.open {
        display: flex;
    }

    .mobile-menu-dropdown a {
        color: #ffffff;
        padding: 15px 25px;
        text-decoration: none;
        font-size: 1.1rem;
        border-bottom: 1px solid #222222;
    }

    .mobile-menu-dropdown a:last-child {
        border-bottom: none;
    }
}