/* style.css - Fixed Parallax & Footer Link */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-navy: #0b1c3a;
    --brand-blue: #29a9e0;
    --text-dark: #1a1a1a;
    --text-grey: #555555;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 8px;
}

* { box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-navy);
    margin-top: 0;
    font-weight: 700;
}
a { text-decoration: none; transition: 0.3s ease; }
img { display: block; max-width: 100%; height: auto; }

/* --- Buttons --- */
.btn, .btn-submit, .btn-primary, .btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(41, 169, 224, 0.3);
    border: none;
    transition: 0.3s;
}
.btn-primary { background-color: var(--brand-blue); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-navy); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary-navy); }

/* --- HEADER --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 4%;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 90px;
}
body { padding-top: 90px; }

.logo-container { flex: 1; padding-left: 10px; }
.logo-container img { height: 75px; width: auto; }

nav.desktop-nav { flex: 2; display: flex; justify-content: center; }
nav.desktop-nav ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; align-items: center; }
nav.desktop-nav a { font-weight: 600; color: var(--primary-navy); font-size: 15px; text-transform: uppercase; }
nav.desktop-nav a:hover { color: var(--brand-blue); }

.header-cta { flex: 1; display: flex; justify-content: flex-end; padding-right: 10px; }
.nav-btn { background: var(--primary-navy); color: var(--white) !important; padding: 14px 35px; border-radius: 4px; font-weight: 700; font-size: 14px; text-transform: uppercase; }
.nav-btn:hover { background: var(--brand-blue); }

/* --- MOBILE MENU --- */
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: var(--primary-navy);
    cursor: pointer;
    z-index: 10000;
}
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    flex-direction: column;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
    z-index: 9998;
}
.mobile-nav-overlay.active { display: flex; }
.mobile-nav-overlay a { padding: 15px; font-weight: 600; color: var(--primary-navy); border-bottom: 1px solid #f4f4f4; display: block; }

/* --- HERO SECTIONS --- */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover !important;
    background-position: center !important;
}
.about-hero, .strategy-hero, .contact-hero {
    height: 45vh !important;
    min-height: 350px !important;
}
.hero-content { max-width: 900px; padding: 20px; animation: fadeIn 1s ease-out; }
.hero h1 { font-size: 4rem; font-weight: 900; margin-bottom: 20px; color: var(--white); line-height: 1.1; text-transform: uppercase; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero p { font-size: 1.25rem; margin-bottom: 30px; opacity: 0.95; font-weight: 400; text-shadow: 0 1px 5px rgba(0,0,0,0.3); }
.hero-divider { height: 6px; width: 100px; background: linear-gradient(to right, var(--brand-blue), #ffffff); margin: 0 auto 30px auto; border-radius: 3px; }

/* --- SECTIONS --- */
.section-pad { padding: 80px 5%; }
.mission { padding: 80px 5%; background: var(--white); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-text h3 { font-size: 14px; color: var(--brand-blue); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.mission-text h2 { font-size: 2.5rem; margin-bottom: 25px; }
.mission-img img { box-shadow: var(--shadow); border-radius: var(--radius); width: 100%; }

/* --- PARALLAX SECTION (Fixed) --- */
.parallax-section {
    background-attachment: fixed !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important; /* Prevents multiple images */
    padding: 100px 5%;
    text-align: center;
    color: var(--white);
    position: relative;
    width: 100%;
}
/* Overlay for text readability */
.parallax-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 28, 58, 0.85); /* Dark Navy Overlay */
    z-index: 1;
}
.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px; /* Constrains text width */
    margin: 0 auto;
}
.parallax-content h2 { color: var(--white); font-size: 2.8rem; margin-bottom: 15px; }
.parallax-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.95; }

/* --- CONTACT FORM --- */
.form-box { background: white; padding: 60px; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.form-box h3 { color: #555; margin-bottom: 40px; font-size: 1.8rem; text-transform: uppercase; font-weight: 400; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 0; border: none; border-bottom: 1px solid #ccc; border-radius: 0; font-family: inherit; font-size: 14px; color: #333; background: transparent; transition: 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-bottom-color: var(--brand-blue); }
.full-width { grid-column: span 2; }
.btn-submit { background-color: #111; color: white; margin-top: 20px; width: auto; min-width: 200px; }
.btn-submit:hover { background-color: var(--brand-blue); }

/* --- FOOTER --- */
footer { background: var(--primary-navy); color: var(--white); padding: 60px 5% 20px; text-align: center; }
.footer-content { max-width: 600px; margin: 0 auto; }
footer h3 { color: var(--brand-blue); margin-bottom: 20px; }
.subscribe-form { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; }
.subscribe-form input { padding: 12px; border: none; border-radius: 4px; width: 60%; outline: none; }
.subscribe-form button { background: var(--brand-blue); color: var(--white); border: none; padding: 12px 25px; border-radius: 4px; cursor: pointer; font-weight: 700; }
.verivest-badge { margin: 30px auto; width: 120px; opacity: 0.9; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; font-size: 13px; color: rgba(255,255,255,0.5); }

/* --- XESSS LINK (UPDATED) --- */
.xesss-link {
    position: relative;
    display: inline-block;
    color: #ffffff !important; /* Force White */
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
    text-decoration: none;
}
.xesss-link:hover::after {
    content: "Premium Business Solutions"; /* Updated Text */
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #0b1c3a;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 8px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    nav.desktop-nav, .header-cta { display: none !important; }
    .mobile-menu-btn { display: block !important; }
    .hero h1 { font-size: 2.5rem; }
    .mission-grid, .form-grid { grid-template-columns: 1fr; }
    header { padding: 15px 20px; }
    .logo-container img { height: 60px; }
    .full-width { grid-column: span 1; }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }