/* ===========================================
   GLOBAL
=========================================== */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --text: #1f2937;
    --light-text: #6b7280;
    --border: #e5e7eb;
    --bg: #f8fafc;
    --white: #ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.6;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

/* ===========================================
   HEADER
=========================================== */

.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
    padding:15px 0;
}

.navbar-brand{
    font-size:28px;
    font-weight:700;
    color:#111;
}

.navbar-nav .nav-link{
    color:#333;
    font-weight:500;
    margin-left:20px;
}

.navbar-nav .nav-link:hover{
    color:var(--primary);
}

/* ===========================================
   HERO SECTION
=========================================== */

.hero-section{
    padding:80px 0;
    background:#fff;
}

.hero-content h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    color:var(--light-text);
    margin-bottom:30px;
}

.store-icons{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.store-icons img{
    height:42px;
}

/* ===========================================
   IMAGE
=========================================== */

.hero-image{
    text-align:center;
    margin-top:40px;
}

.hero-image img{
    max-width:90%;
}

/* ===========================================
   FORM
=========================================== */

.callback-form{
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:30px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.callback-form h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:10px;
}

.callback-form p{
    color:var(--light-text);
    margin-bottom:25px;
}

.form-label{
    font-weight:600;
    margin-bottom:8px;
}

.form-control{
    height:50px;
    border-radius:8px;
    border:1px solid #ddd;
}

.form-control:focus{
    border-color:var(--primary);
    box-shadow:none;
}

textarea.form-control{
    min-height:120px;
}

/* ===========================================
   EMPLOYEE BUTTONS
=========================================== */

.employee-options{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    margin-bottom:20px;
}

.employee-options input{
    display:none;
}

.employee-options label{
    border:1px solid #ddd;
    padding:12px;
    border-radius:8px;
    text-align:center;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
}

.employee-options input:checked+label{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
}

/* ===========================================
   BUTTON
=========================================== */

.btn-submit{
    width:100%;
    height:52px;
    background:var(--primary);
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.btn-submit:hover{
    background:var(--primary-dark);
}

/* ===========================================
   STATS
=========================================== */

.stats-section{
    margin-top:70px;
}

.stat-card{
    background:#fff;
    border-radius:12px;
    padding:30px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    border:1px solid #eee;
    transition:.3s;
    height:100%;
}

.stat-card:hover{
    transform:translateY(-6px);
}

.stat-card h3{
    font-size:34px;
    font-weight:700;
    color:var(--primary);
}

.stat-card p{
    margin-top:10px;
    color:#666;
}

/* ===========================================
   FEATURES
=========================================== */

.features{
    padding:80px 0;
    background:#f8fafc;
}

.feature-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    height:100%;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#eef4ff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
    font-size:28px;
    color:var(--primary);
}

/* ===========================================
   FOOTER
=========================================== */

footer{
    background:#111827;
    color:#fff;
    padding:40px 0;
}

footer a{
    color:#fff;
}

/* ===========================================
   RESPONSIVE
=========================================== */

@media(max-width:1200px){

.hero-content h1{
    font-size:40px;
}

}

@media(max-width:991px){

.hero-section{
    padding:50px 0;
}

.hero-content{
    text-align:center;
    margin-bottom:50px;
}

.store-icons{
    justify-content:center;
}

.callback-form{
    margin-top:30px;
}

}

@media(max-width:768px){

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

.employee-options{
    grid-template-columns:repeat(2,1fr);
}

.callback-form{
    padding:25px;
}

.stat-card{
    margin-bottom:20px;
}

}

@media(max-width:576px){

.hero-content h1{
    font-size:30px;
}

.navbar-brand{
    font-size:24px;
}

.employee-options{
    grid-template-columns:1fr;
}

.callback-form{
    padding:20px;
}

.btn-submit{
    font-size:16px;
    margin-top:10px;
}

}