/* SkyNet Consult - Master Stylesheet 2026
   Consolidated Mobile-Responsive Design 
*/

/* --- GLOBAL SETTINGS & SMOOTH SCROLL --- */
html {
    scroll-behavior: smooth;
    /* Offset for the fixed navigation bar */
    scroll-padding-top: 100px; 
}

:root {
    --primary-navy: #0f172a;
    --accent-blue: #00a8e8;
    --text-gray: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body { 
    background: var(--white); 
    color: var(--primary-navy); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

/* --- NAVIGATION --- */
nav {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 20px 8%; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f5f9;
}

.logo-wrapper { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    gap: 10px; 
}

.nav-logo { height: 40px; width: auto; }

nav h2 { 
    font-size: 22px; 
    color: var(--primary-navy); 
    font-weight: 700; 
}

nav h2 span { color: var(--accent-blue); }

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 30px; 
    align-items: center; 
}

nav ul li a { 
    text-decoration: none; 
    color: var(--text-gray); 
    font-weight: 500; 
    font-size: 15px; 
    transition: var(--transition); 
}

nav ul li a:hover, nav ul li a.active { 
    color: var(--primary-navy); 
}

/* --- HAMBURGER MENU --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-navy);
    transition: var(--transition);
}

/* --- BUTTONS --- */
.btn { 
    padding: 12px 25px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: var(--transition); 
    display: inline-block; 
    cursor: pointer; 
    border: none; 
}

.btn-navy { background: var(--primary-navy); color: white !important; }
.btn-blue { background: var(--accent-blue); color: white !important; }
.btn-outline { background: white; border: 1px solid #e2e8f0; color: var(--primary-navy) !important; }
.btn-navy:hover, .btn-blue:hover { opacity: 0.9; transform: translateY(-2px); }

/* --- HERO SECTIONS --- */
.hero-split { padding: 160px 8% 100px; display: flex; align-items: center; }
.hero-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; align-items: center; }

.tagline { 
    color: var(--accent-blue); 
    text-transform: uppercase; 
    font-weight: 700; 
    letter-spacing: 2px; 
    font-size: 13px; 
    margin-bottom: 20px; 
}

h1 { 
    font-size: clamp(34px, 5vw, 64px); 
    line-height: 1.1; 
    margin-bottom: 25px; 
    font-weight: 800; 
}

.highlight-blue { color: var(--accent-blue); }

.hero-description { 
    font-size: 18px; 
    color: var(--text-gray); 
    margin-bottom: 35px; 
    max-width: 520px; 
}

/* --- IMAGE STYLING --- */
.image-wrapper { position: relative; }
.image-bg-shape { 
    position: absolute; 
    bottom: -20px; 
    right: -20px; 
    width: 90%; 
    height: 90%; 
    background: #dcf2fa; 
    border-radius: 30px; 
    z-index: 1; 
}
.hero-image { 
    width: 100%; 
    border-radius: 30px; 
    position: relative; 
    z-index: 2; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); 
}

/* --- VOUCHER & SERVICE GRIDS --- */
section { padding: 80px 8%; max-width: 1300px; margin: 0 auto; }
.section-title { font-size: 36px; text-align: center; margin-bottom: 50px; }

.voucher-grid, .services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px; 
}

.voucher-card, .service-card { 
    padding: 35px; 
    border-radius: 20px; 
    border: 1px solid #f1f5f9; 
    transition: var(--transition); 
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.voucher-card:hover, .service-card:hover { 
    border-color: var(--accent-blue); 
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05); 
}

/* --- LEAD CONSULTANT PROFILE (ABOUT PAGE) --- */
.lead-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.05);
}
.lead-name { font-size: 32px; color: var(--primary-navy); margin-bottom: 5px; }
.lead-title { color: var(--accent-blue); font-weight: 700; text-transform: uppercase; font-size: 14px; margin-bottom: 20px; display: block; }
.lead-bio { color: var(--text-gray); font-size: 17px; line-height: 1.8; margin-bottom: 25px; }
.lead-credentials { display: flex; gap: 15px; flex-wrap: wrap; }
.badge { background: var(--bg-light); padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; color: var(--primary-navy); border: 1px solid #e2e8f0; }

/* --- SEARCH & FORMS --- */
.search-container { max-width: 600px; margin: 0 auto 40px; }
#uniSearch {
    width: 100%; padding: 18px 30px; border-radius: 50px;
    border: 1px solid #e2e8f0; font-size: 16px; outline: none;
    transition: 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-form { 
    background: #fff; padding: 40px; border-radius: 20px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.05); 
}
.contact-form input, .contact-form textarea { 
    width: 100%; padding: 15px; margin-bottom: 20px; 
    border: 1px solid #e2e8f0; border-radius: 8px; 
    background: #f8fafc; font-size: 16px; outline: none; 
}

/* --- FOOTER --- */
footer { 
    padding: 40px; text-align: center; border-top: 1px solid #f1f5f9; 
    color: var(--text-gray); font-size: 14px; 
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin: 0 auto 35px; }
    .hero-split { padding-top: 140px; }
    
    .menu-toggle { display: flex; }

    nav ul {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 75%;
        background: white;
        flex-direction: column;
        padding: 100px 40px;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

    nav ul.active { right: 0; }
    nav ul li { width: 100%; margin: 15px 0; }
    nav ul li a { font-size: 18px; }

    .lead-card { grid-template-columns: 1fr; padding: 30px; text-align: center; }
    .lead-credentials { justify-content: center; }
}

@media (max-width: 600px) {
    section { padding: 60px 5%; }
    .section-title { font-size: 28px; }
    .uni-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .image-bg-shape { display: none; }
}