/* ==========================================
   Smartclass Group
   Quotation Request Page
   File : quotation-requests.css
========================================== */

:root{
    --primary:#0d3b8e;
    --secondary:#1f6bff;
    --success:#198754;
    --dark:#1e293b;
    --gray:#64748b;
    --light:#f8fafc;
    --border:#e5e7eb;
    --white:#ffffff;
    --shadow:0 15px 35px rgba(0,0,0,.08);
    --radius:16px;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,Arial,sans-serif;
    font-size:15px;
    color:var(--light);
    background:darkred;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

section{
    position:relative;
}

/*==========================================
Hero Section
==========================================*/

.hero-section{
    background:linear-gradient(135deg,#0d47a1);
    color:#fff;
    padding:90px 0;
    overflow:hidden;
}

.hero-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.hero-section::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-70px;
    left:-70px;
}

.hero-section small{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:50px;
    letter-spacing:.8px;
    font-weight:600;
}

.hero-section h1{
    font-size:48px;
    font-weight:700;
    margin:20px 0;
    line-height:1.2;
}

.hero-section p{
    font-size:18px;
    color:#eef3ff;
    max-width:650px;
}

/*==========================================
Main Section
==========================================*/

.quotation-section{
    padding:80px 0;
}

.left-content h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:25px;
    color:var(--dark);
}

/*==========================================
Information Cards
==========================================*/

.info-card{
    background:#fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:25px;
    margin-bottom:20px;
    transition:.35s;
    border:1px solid transparent;
}

.info-card:hover{
    transform:translateY(-6px);
    border-color:#dbeafe;
}

.info-card h5{
    font-size:20px;
    margin-bottom:10px;
    color:var(--primary);
    font-weight:700;
}

.info-card p{
    margin:0;
    color:var(--gray);
}

.contact-card{
    background:linear-gradient(135deg,#0b2b5b,#1565c0);
    color:#fff;
    border-radius:var(--radius);
    padding:30px;
    box-shadow:var(--shadow);
}

.contact-card h4{
    margin-bottom:18px;
    font-weight:700;
}

.contact-card p{
    margin-bottom:10px;
    color:#f1f5f9;
}

.contact-card strong{
    color:#fff;
}

/*==========================================
Animation
==========================================*/

.info-card,
.contact-card{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*==========================================
Quotation Form Card
==========================================*/

.form-card{
    background:#ffffff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    border:1px solid #eef2f7;
}

.form-card h2{
    font-size:32px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:10px;
}

.form-card .form-subtitle{
    color:#64748b;
    margin-bottom:30px;
    font-size:15px;
}

/*==========================================
Labels
==========================================*/

.form-label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#334155;
}

.required{
    color:#dc2626;
}

/*==========================================
Input Fields
==========================================*/

.form-control,
.form-select{
    width:100%;
    height:55px;
    border:1px solid #dbe3ec;
    border-radius:12px;
    background:#ffffff;
    padding:12px 18px;
    font-size:15px;
    color:#1e293b;
    transition:all .3s ease;
}

.form-control::placeholder{
    color:#94a3b8;
}

.form-control:focus,
.form-select:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 .20rem rgba(37,99,235,.15);
    outline:none;
}

/*==========================================
Textarea
==========================================*/

textarea.form-control{
    height:170px;
    resize:vertical;
    padding-top:15px;
}

/*==========================================
Character Counter
==========================================*/

.character-count{
    text-align:right;
    margin-top:8px;
    color:#64748b;
    font-size:13px;
}

/*==========================================
Checkbox
==========================================*/

.form-check{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-top:8px;
}

.form-check-input{
    width:18px;
    height:18px;
    margin-top:3px;
    cursor:pointer;
}

.form-check-label{
    font-size:14px;
    color:#475569;
    line-height:1.7;
}

.form-check-label a{
    color:#2563eb;
    font-weight:600;
}

.form-check-label a:hover{
    text-decoration:underline;
}

/*==========================================
Submit Button
==========================================*/

.btn-quotation{
    width:100%;
    height:58px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#0b5ed7,#0a58ca);
    color:#ffffff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
}

.btn-quotation:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(13,110,253,.30);
}

.btn-quotation:active{
    transform:scale(.98);
}

.btn-quotation:disabled{
    opacity:.7;
    cursor:not-allowed;
}

/*==========================================
Loading Button
==========================================*/

.btn-loading{
    position:relative;
    pointer-events:none;
    color:transparent !important;
}

.btn-loading::after{
    content:"";
    position:absolute;
    width:22px;
    height:22px;
    top:50%;
    left:50%;
    margin-left:-11px;
    margin-top:-11px;
    border:3px solid rgba(255,255,255,.3);
    border-top-color:#fff;
    border-radius:50%;
    animation:spin .8s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

/*==========================================
Alert Box
==========================================*/

.alert{
    border:none;
    border-radius:12px;
    padding:16px 18px;
    margin-bottom:25px;
    font-size:14px;
}

.alert-success{
    background:#ecfdf3;
    color:#15803d;
}

.alert-danger{
    background:#fef2f2;
    color:#dc2626;
}

.alert-warning{
    background:#fff8e1;
    color:#92400e;
}

/*==========================================
Error Fields
==========================================*/

.is-invalid{
    border-color:#dc2626 !important;
}

.is-valid{
    border-color:#198754 !important;
}

/*==========================================
Bottom Information
==========================================*/

.quotation-note{
    margin-top:20px;
    padding:18px;
    background:#f8fafc;
    border-left:4px solid #2563eb;
    border-radius:10px;
    font-size:14px;
    color:#475569;
    line-height:1.8;
}

.quotation-note strong{
    color:#0f172a;
}

/*==========================================
Small Text
==========================================*/

.small-text{
    font-size:13px;
    color:#64748b;
    line-height:1.7;
}


/*==========================================
Responsive Design
==========================================*/

@media (max-width:1200px){

    .hero-section h1{
        font-size:42px;
    }

    .form-card{
        padding:35px;
    }

}

@media (max-width:992px){

    .hero-section{
        padding:70px 0;
        text-align:center;
    }

    .hero-section h1{
        font-size:36px;
    }

    .hero-section p{
        max-width:100%;
        font-size:16px;
    }

    .left-content{
        margin-bottom:35px;
    }

    .form-card{
        padding:30px;
    }

}

@media (max-width:768px){

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

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

    .hero-section p{
        font-size:15px;
    }

    .left-content h2{
        font-size:26px;
    }

    .form-card{
        padding:25px;
        border-radius:14px;
    }

    .form-card h2{
        font-size:28px;
    }

    .info-card,
    .contact-card{
        padding:20px;
    }

    .btn-quotation{
        height:54px;
        font-size:16px;
    }

}

@media (max-width:576px){

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

    .hero-section small{
        font-size:12px;
        padding:6px 15px;
    }

    .hero-section h1{
        font-size:26px;
        line-height:1.3;
    }

    .hero-section p{
        font-size:14px;
    }

    .form-card{
        padding:20px;
    }

    .form-control,
    .form-select{
        height:50px;
        font-size:14px;
    }

    textarea.form-control{
        height:150px;
    }

    .btn-quotation{
        height:50px;
        font-size:15px;
    }

}

/*==========================================
Hover Effects
==========================================*/

.form-card{
    transition:.35s ease;
}

.form-card:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.form-control:hover,
.form-select:hover{
    border-color:#2563eb;
}

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

/*==========================================
Input Animation
==========================================*/

.form-control,
.form-select,
textarea{
    transition:all .30s ease;
}

.form-control:focus,
.form-select:focus,
textarea:focus{

    transform:scale(1.01);

}

/*==========================================
Fade Animation
==========================================*/

.fade-up{

    animation:fadeUp .7s ease;

}

.fade-left{

    animation:fadeLeft .7s ease;

}

.fade-right{

    animation:fadeRight .7s ease;

}

@keyframes fadeLeft{

    from{

        opacity:0;
        transform:translateX(-40px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;
        transform:translateX(40px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}

/*==========================================
Success Animation
==========================================*/

.success-animation{

    animation:successPop .5s ease;

}

@keyframes successPop{

    0%{

        transform:scale(.8);
        opacity:0;

    }

    100%{

        transform:scale(1);
        opacity:1;

    }

}

/*==========================================
Utility Classes
==========================================*/

.shadow-soft{

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.rounded-xl{

    border-radius:18px;

}

.bg-gradient-primary{

    background:linear-gradient(135deg,#0d47a1,#1565c0);

}

.text-primary-dark{

    color:#0d3b8e;

}

.text-gray{

    color:#64748b;

}

.border-light{

    border:1px solid #e5e7eb;

}

/*==========================================
Scrollbar
==========================================*/

textarea::-webkit-scrollbar{

    width:8px;

}

textarea::-webkit-scrollbar-thumb{

    background:#2563eb;
    border-radius:20px;

}

textarea::-webkit-scrollbar-track{

    background:#edf2f7;

}

/*==========================================
Selection
==========================================*/

::selection{

    background:#2563eb;
    color:#ffffff;

}

/*==========================================
Print Support
==========================================*/

@media print{

    .hero-section,
    .btn-quotation,
    footer,
    header{

        display:none !important;

    }

    body{

        background:#ffffff;

    }

    .form-card{

        box-shadow:none;
        border:1px solid #ccc;

    }

}

/*==========================================
End of File
==========================================*/
