/* ============================================
   COLOR VARIABLES
   ============================================ */
:root {
    --brand-blue: #0057B8;
    --energy-orange: #FF8C00;
    --power-green: #00A651;
    --charcoal: #1F2937;
    --off-white: #F8FAFC;
    --light-gray: #D1D5DB;

    --prussian-blue: #003153;
    --white: #ffffff;
    --btn-blue: #0057B8;

    --bg-dark: #05070a;
    --glow-blue: #001f4d;
    --glow-purple: #1a1030;
    --accent-blue: #0057B8;
    --accent-green: #00A651;
    --accent-orange: #FF8C00;
    --text-main: #ffffff;
    --text-dim: #9ca3af;
}

/* ============================================
   GLOBAL RESET
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at 20% 40%, var(--glow-blue) 0%, var(--bg-dark) 80%),
        radial-gradient(circle at 80% 20%, var(--glow-purple) 0%, var(--bg-dark) 80%);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    background-attachment: fixed;
}

a { text-decoration: none; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    background: rgba(5, 7, 10, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.logo-container { display: flex; align-items: center; gap: 12px; }

.logo-container img.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.1rem;
    line-height: 1.1;
}

.tagline-text {
    font-size: 0.75rem;
    opacity: 0.8;
    color: var(--light-gray);
}

.text-white { color: var(--white); }

/* ── NAV BASE ── */
nav {
    margin-left: auto;
    margin-right: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.875rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--accent-orange);
}

.nav-chevron {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
    opacity: 0.5;
}

.nav-item--dropdown:hover .nav-chevron,
.nav-item--dropdown.open .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Mobile hamburger — hidden on desktop */
.nav-hamburger { display: none; }

.btn-reach {
    background-color: var(--brand-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    border: 2px solid var(--brand-blue);
}

.btn-reach:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--accent-orange);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--brand-blue);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--brand-blue);
    box-shadow: 0 0 20px rgba(0, 87, 184, 0.35);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: transparent;
    color: white;
}

.btn-outline, .btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.btn-outline:hover, .btn-secondary:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 87, 184, 0.4);
}

/* ============================================
   LOGO
   ============================================ */
.logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: #000d1a;
    color: var(--light-gray);
    font-family: 'Inter', sans-serif;
    padding: 80px 20px 20px;
    border-top: 1px solid rgba(0, 87, 184, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col.company-info { text-align: left; }
.footer-col.company-info .company-desc { max-width: 280px; }

.footer-heading {
    text-align: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--energy-orange);
    border-radius: 2px;
}

.footer-logo h2 {
    margin-bottom: 0;
    font-size: 1.8rem;
    color: var(--white);
}

.footer-logo .highlight { color: var(--accent-orange); }

.company-desc {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-icons { display: flex; gap: 15px; }

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 87, 184, 0.1);
    border: 1px solid rgba(0, 87, 184, 0.3);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--energy-orange);
    border-color: var(--energy-orange);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.newsletter-desc {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    background: rgba(0, 87, 184, 0.07);
    border: 1px solid rgba(0, 87, 184, 0.25);
    border-radius: 5px;
    color: var(--white);
    outline: none;
}

.newsletter-form input:focus { border-color: var(--energy-orange); }

.newsletter-form button {
    padding: 12px;
    background-color: var(--brand-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--energy-orange);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #6b7280;
}

.legal-links a {
    color: #6b7280;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.2s;
}

.legal-links a:hover { color: var(--white); }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-img {
    width: 50px;
    height: auto;
}

.footer-col .footer-heading + .footer-links {
    margin-bottom: 0;
}

/* ============================================
   BASE MEDIA QUERIES
   ============================================ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    header { padding: 0 20px; }
    nav ul { display: none; }
    .hero-buttons { flex-direction: column; }

    .btn-reach {
        background-color: var(--brand-blue);
        color: var(--white);
        border-radius: 50px;
        border: none;
        padding: 10px 25px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .btn-reach:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(0, 87, 184, 0.4);
    }
}

@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
    .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 15px; }
    .legal-links a { margin: 0 10px; }
    .footer-col.company-info { text-align: center; }
    .footer-col.company-info .company-desc { max-width: 100%; }
}

@media (max-width: 1024px) {
    section, .about-us-section, .contact-section {
        background-attachment: scroll !important;
    }
}


/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
    padding: 50px 8%;
    background: linear-gradient(
        90deg,
        rgba(0, 31, 80, 0.9) 0%,
        #05070a 60%
    ) !important;
    border-bottom: 1px solid rgba(0, 87, 184, 0.15);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 600px;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 87, 184, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-header-product { position: relative; z-index: 1; }

.products-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-card {
    flex: 0 1 380px;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(0, 20, 60, 0.5);
    border: 1px solid rgba(0, 87, 184, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 87, 184, 0.25);
    border-color: var(--energy-orange);
}

.product-icon-container {
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--energy-orange);
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 15px;
}

.product-desc {
    flex-grow: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 2rem;
    -webkit-font-smoothing: antialiased;
}

.product-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--energy-orange);
    gap: 8px;
    transition: gap 0.3s ease, color 0.2s ease;
}

.product-link:hover {
    color: var(--brand-blue);
    gap: 12px;
}

.image-frame {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 87, 184, 0.2);
    box-shadow: 0 0 40px rgba(0, 87, 184, 0.15);
}

.border-blue, .border-purple, .border-green { border-top: none !important; }

.icon-box {
    background-color: transparent !important;
    border: none !important;
    width: 42px;
    height: 42px;
    background: rgba(0, 87, 184, 0.1) !important;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--energy-orange);
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 15px;
    gap: 15px;
    margin-bottom: 0;
}

.icon-box h3 {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.icon-box svg {
    width: 32px;
    height: 32px;
    color: var(--energy-orange);
    fill: none;
    display: block;
    flex-shrink: 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 800;
}

.section-subtitle {
    color: var(--white);
    margin-bottom: 60px;
    font-size: 1.1rem;
}
/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    position: relative;
    width: 100%;
    min-height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('reachushere.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    font-family: 'DMSans', sans-serif;
    padding: 60px 20px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    text-align: center;
   font-size: clamp(1.3rem, 3.5vw, 2.1rem) !important;    
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3rem;
    text-transform: capitalize;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background: rgba(0, 15, 45, 0.3);
    background-image: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 87, 184, 0.2);
    border-top: 1px solid rgba(0, 87, 184, 0.35);
    border-left: 1px solid rgba(0, 87, 184, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    transform: translateZ(0);
}
.form-column {
    flex: 1;
    min-width: 350px;
    padding: 50px 40px;
    border-right: 1px solid rgba(0, 87, 184, 0.12);
}

.form-group { margin-bottom: 25px; }

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 87, 184, 0.2);
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder { color: rgba(255, 255, 255, 0.5); }

.form-input:focus {
    background: rgba(0, 0, 0, 0.35);
    border-color: var(--energy-orange);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.12);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, var(--brand-blue), #0072e5);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 87, 184, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    background: linear-gradient(90deg, var(--energy-orange), #e07800);
}

.info-column {
    flex: 1;
    min-width: 350px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.info-text h4 {
    color: var(--energy-orange);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-text p {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-wrapper { flex-direction: column; }
    .form-column {
        border-right: none;
        border-bottom: 1px solid rgba(0, 87, 184, 0.1);
    }
}

/* ============================================
   PILL CONTAINERS (misc utility)
   ============================================ */
.pill-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

