*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body{
    background: #f5f7fb;
    /* color: #1c2b4a; */
}

/* =========================
   CONTAINER
========================= */
.container{
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* =========================
   HERO SECTION
========================= */
.hero-quote{
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-radius: 0 0 40px 40px;

    background:
    /* linear-gradient(
        rgba(7,21,45,0.72),
        rgba(7,21,45,0.72)
    ), */
    url("../../images/quote.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* OPTIONAL DARK OVERLAY */
.hero-quote::before{
    content: "";

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        90deg,
        rgba(7,21,45,0.85),
        rgba(7,21,45,0.45)
    );
}

/* HERO CONTENT */
.hero-content-wrapper{
    position: relative;
    z-index: 2;

    width: 100%;
}

/* HERO TEXT */
.hero-text{
    max-width: 700px;
    color: white;
}

/* TITLE */
.hero-text h1{
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;

    margin-bottom: 22px;

    animation: fadeUp 0.8s ease;
}

/* SUBTEXT */
.hero-text p{
    font-size: 20px;
    line-height: 1.8;

    color: rgba(255,255,255,0.92);

    max-width: 620px;

    animation: fadeUp 1s ease;
}

/* REMOVE IMAGE CONTAINER */
.hero-image-container{
    display: none;
}

/* =========================
   QUOTE SECTION
========================= */
.quote-section{
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

/* GRID */
.quote-grid{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    align-items: start;
}

/* =========================
   FORM CONTAINER
========================= */
.form-container{
    background: white;

    padding: 45px;

    border-radius: 28px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    animation: fadeUp 1s ease;
}

/* HEADING */
.form-container h3{
    font-size: 32px;
    margin-bottom: 35px;
    color: #07152d;
}

/* FORM ROW */
.form-row{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* INPUTS */
.form-row input,
.form-row select,
textarea{
    width: 100%;

    padding: 18px 20px;

    border: 1px solid #dfe5f0;

    border-radius: 16px;

    background: #f9fbff;

    font-size: 15px;

    outline: none;

    transition: 0.3s ease;
}

/* FOCUS */
.form-row input:focus,
.form-row select:focus,
textarea:focus{
    border-color: #2c6cff;

    background: white;

    box-shadow:
    0 0 0 4px rgba(44,108,255,0.1);
}

/* TEXTAREA */
textarea{
    resize: none;
    margin-bottom: 25px;
}

/* =========================
   BUTTON
========================= */
.btn-primary{
    border: none;

    background:
    linear-gradient(
        135deg,
        #ff4d4d,
        #d62828
    );

    color: white;

    padding: 18px 36px;

    border-radius: 50px;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;

    box-shadow:
    0 12px 30px rgba(255,77,77,0.25);
}

/* BUTTON HOVER */
.btn-primary:hover{
    transform: translateY(-3px);

    box-shadow:
    0 18px 35px rgba(255,77,77,0.35);
}

/* =========================
   SIDEBAR
========================= */
.info-sidebar{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* SIDEBAR TITLE */
.info-sidebar h3{
    font-size: 28px;
    color: rgba(254, 221, 38, 0.868);
}

/* INFO CARD */
.info-card{
    background: white;

    padding: 28px;

    border-radius: 22px;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.06);

    transition: 0.3s ease;
}

/* HOVER */
.info-card:hover{
    transform: translateY(-5px);
}

/* TITLE */
.info-card strong{
    display: block;

    font-size: 19px;

    margin-bottom: 12px;

    color: #07152d;
}

/* TEXT */
.info-card p{
    color: #5f6d85;
    line-height: 1.8;
}

/* CONTACT CARD */
.contact-card{
    background:
    linear-gradient(
        135deg,
        #07152d,
        #12325f
    );

    color: white;

    padding: 32px;

    border-radius: 24px;

    box-shadow:
    0 18px 40px rgba(7,21,45,0.22);
}

/* TEXT */
.contact-card p{
    margin-bottom: 18px;
    font-size: 18px;
}

/* PHONE */
.phone-link{
    color: white;

    text-decoration: none;

    font-size: 20px;
    font-weight: 700;
}

/* HOVER */
.phone-link:hover{
    text-decoration: underline;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeUp{

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

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

/* =========================
   POPUP OVERLAY
========================= */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
    z-index: 9999;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   POPUP BOX
========================= */
.popup-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;

    width: 90%;
    max-width: 400px;

    transform: scale(0.8);
    opacity: 0;

    transition: 0.4s ease;

    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.popup-overlay.active .popup-box {
    transform: scale(1);
    opacity: 1;
}

/* ICON */
.popup-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

/* SUCCESS */
.popup-success {
    color: #28a745;
}

/* ERROR */
.popup-error {
    color: #dc3545;
}

/* TEXT */
.popup-box h2 {
    margin-bottom: 10px;
    color: #0b1f3a;
}

.popup-box p {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}

/* BUTTON */
.popup-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;

    background: linear-gradient(135deg, #2c6cff, #1746b5);
    color: white;

    cursor: pointer;
    font-weight: 600;

    transition: 0.3s;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44,108,255,0.3);
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media(max-width: 992px){

    .hero-quote{
        min-height: 420px;
    }

    .hero-text h1{
        font-size: 52px;
    }

    .hero-text p{
        font-size: 18px;
    }

    .quote-grid{
        grid-template-columns: 1fr;
    }

    .form-container{
        padding: 35px;
    }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width: 768px){

    .hero-quote{
        min-height: 360px;

        border-radius: 0 0 30px 30px;
    }

    .hero-text{
        text-align: center;
    }

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

    .hero-text p{
        font-size: 16px;
        line-height: 1.7;
    }

    .quote-section{
        margin-top: -50px;
    }

    .form-row{
        flex-direction: column;
        gap: 16px;
    }

    .form-container{
        padding: 28px;
        border-radius: 22px;
    }

    .form-container h3{
        font-size: 26px;
    }

    .info-sidebar h3{
        font-size: 24px;
    }

    .btn-primary{
        width: 100%;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width: 576px){

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

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

    .form-container{
        padding: 24px;
    }

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

    .phone-link{
        font-size: 17px;
    }
}