/* ===========================
   HEADER (PHASE 2)
=========================== */
.gl-header{
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    padding:15px 0;
}

.gl-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.gl-logo a{
    font-size:22px;
    font-weight:700;
    color:#000;
}

.gl-menu{
    list-style:none;
    display:flex;
    gap:25px;
}

.gl-menu a{
    color:#000;
    font-weight:500;
    transition:.3s;
}

.gl-menu a:hover{
    color:#0077ff;
}

.gl-header-btn{
    background:#0077ff;
    color:#fff;
    padding:10px 18px;
    border-radius:6px;
}
/* ===========================
   HERO SECTION UI
=========================== */
.hero-section{
    height:85vh;
    background:url('../images/hero.png') center/cover no-repeat; /* You will add hero.png later */
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-inner h1{
    font-size:52px;
    font-weight:800;
    color:#ffffff;
}

.hero-inner p{
    font-size:20px;
    margin-top:10px;
    color:#e4e4e4;
}

/* Buttons */
.hero-buttons{
    margin-top:30px;
    display:flex;
    gap:20px;
    justify-content:center;
}

.hero-btn{
    padding:14px 32px;
    font-size:18px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.hero-btn.primary{
    background:#0077ff;
    color:#fff;
}

.hero-btn.secondary{
    background:#fff;
    color:#0077ff;
    border:2px solid #0077ff;
}
.hero-section{
    height:85vh;
    background: linear-gradient(120deg, #0a1a2f, #0e2d52); /* TEMPORARY GRADIENT */
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.hero-inner h1{
    color:#ffffff;
}
.hero-inner p{
    color:#dbe6f5;
}
@media(max-width:768px){
    .hero-inner h1{ font-size:32px; }
    .hero-inner p{ font-size:16px; }
    .hero-buttons{ flex-direction:column; gap:15px; }
}
.gl-header{
    position:sticky;
    top:0;
    z-index:100;
    background:#fff;
}
/* ===========================
   FEATURES SECTION (GRID FIXED)
=========================== */

.features-section{
    padding:70px 0;
    background:#ffffff;
    display:flex;
    justify-content:center;
}

.features-grid{
    width:90%;
    max-width:1200px;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

.feature-box{
    background:#ffffff;
    padding:35px 20px;
    text-align:center;
    border-radius:14px;
    border:1px solid #e6e6e6;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:.3s ease;
}

.feature-box:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
}

.feature-box span{
    font-size:38px;
    display:block;
    margin-bottom:12px;
}

.feature-box h3{
    font-size:18px;
    font-weight:650;
    margin-bottom:8px;
}

#gl-mobile-menu{
    position: fixed;
    top:0;
    right:-100%;
    width:75%;
    height:100vh;
    background:white;
    padding:40px 30px;
    transition:.35s;
    z-index:99999;
    box-shadow:-4px 0 15px rgba(0,0,0,0.15);
}

#gl-mobile-menu.open{
    right:0;
}

#gl-mobile-menu ul{
    list-style:none;
    padding:0;
    margin-top:40px;
}

#gl-mobile-menu li{ margin-bottom:15px; }
#gl-mobile-menu a{
    font-size:18px;
    text-decoration:none;
    font-weight:600;
    color:#000;
}

/* X btn */
#gl-close-menu{
    border:none;
    background:none;
    font-size:26px;
    font-weight:bold;
    float:right;
}

/* Show button only mobile */
#gl-menu-toggle{
    display:none;
    background:#006aff;
    color:#fff;
    border:none;
    padding:10px 14px;
    font-size:22px;
    border-radius:6px;
}

@media(max-width:850px){
    #gl-menu-toggle{ display:block; }
    .gl-nav, .gl-header-btn{ display:none; }
}
