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

body{
    background:#eef2f7;
    padding:40px;
}

.container{
    max-width:1100px;
    margin:auto;
    display:flex;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 35px rgba(0,0,0,.12);
}

/*********************
LEFT SIDE
*********************/

.left{
    width:50%;
    padding:45px;
    margin-bottom: -5px;
    color:#fff;

    background:
    url("../img/image-1.png") center center/cover no-repeat,
    #008cf0;
}

.logo{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
    margin-left: -13px;
}

.logo-takealot{
    height:72px;
    width:auto;
    display:block;
}

.logo-capital{
    height:35px;
    width:auto;
    display:block;
}

.divider{
    width:1px;
    height:28px;
    background:rgba(255,255,255,.5);
    flex-shrink:0;
}

.small{
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:15px;
}

.left h1{
    font-size:38px;
    line-height:1.05;
    margin-bottom:28px;
}

.left p{
    font-size:17px;
    line-height:1.4;
    opacity:.95;
}

.faq{
    margin-top:40px;
}

.faq-item{
    padding:6px 0;
}

.faq-question{
    display:flex;
    margin-bottom:10px;
}

.faq-question .label{
    min-width:28px;
    color:rgba(255,255,255,.55);
    font-size:18px;
    font-weight:800;
}

.faq-question .text{
    color:#fff;
    font-size:18px;
    font-weight:700;
    line-height:1.4;
}

.faq-answer{
    display:flex;
    align-items:flex-start;
}

.faq-answer .label{
    min-width:28px;
    color:rgba(255,255,255,.45);
    font-size:18px;
    font-weight:800;
    flex-shrink:0;
}

.faq-answer .text{
    color:rgba(255,255,255,.88);
    font-size:16px;
    line-height:1.65;
    font-weight:400;
}

.faq hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.18);
    margin:24px 0;
}

hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.2);
    margin:20px 0;
}

/**********************
RIGHT
**********************/

.right{
    width:50%;
    padding:45px;
}

.right h1{
    font-size:27px;
    color:#111827;
    margin-bottom:15px;
}

.right .sub{
    color:#6b7280;
    line-height:1.7;
    margin-bottom:35px;
}

label{
    display:block;
    margin-bottom:8px;
    font-size:15px;
    font-weight:700;
    color:#475569;
    text-transform:uppercase;
}

.required{
    color:#ef4444;
}

input,
select{
    width:100%;
    height:56px;
    border-radius:12px;
    border:1px solid #d8dee8;
    padding:0 18px;
    font-size:17px;
    outline:none;
    margin-bottom:22px;
    background:#f9fbfd;
}

.phone{
    position:relative;
}

.whatsapp{
    position:absolute;
    right:15px;
    top:11px;
    background:#dcfce7;
    color:#16a34a;
    padding:8px 15px;
    border-radius:20px;
    font-size:14px;
    font-weight:700;
}

.privacy-notice{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#6b7280;
    font-size:14px;
    line-height:1.4;
    margin:25px 0;
}

.privacy-notice img{
    width:22px;
    margin-top:2px;
}

button{
    width:100%;
    height:60px;
    border:none;
    border-radius:40px;
    background:#008cf0;
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#008cf0;
}

.call{
    text-align:center;
    margin-top:25px;
    color:#6b7280;
    font-size:18px;
}

.call b{
    color:#111827;
}

a{
    color:#008cf0;
    text-decoration:none;
}

@media (max-width: 1024px) {

    body{
        padding:20px;
    }

    .container{
        max-width:100%;
    }

    .left,
    .right,
    .right-2{
        padding:35px;
    }

    .left h1{
        font-size:32px;
    }

    .right h1,
    .right-2 h1{
        font-size:30px;
    }

}


/* ===========================
   TABLETS
=========================== */

@media (max-width:900px){

    body{
        padding:15px;
    }

    .container{
        flex-direction:column;
    }

    .left,
    .right,
    .right-2{
        width:100%;
        padding:35px;
    }

    .left h1{
        font-size:34px;
    }

    .right h1,
    .right-2 h1{
        font-size:30px;
    }

    .logo{
        justify-content:center;
        flex-wrap:wrap;
        text-align:center;
    }

    .small,
    .left h1,
    .left p{
        text-align:center;
    }

}


/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    body{
        padding:10px;
    }

    .container{
        border-radius:14px;
    }

    .left,
    .right,
    .right-2{
        padding:28px 22px;
    }

    .logo{
        gap:12px;
        margin-bottom:20px;
    }

    .logo-takealot{
        height:55px;
    }

    .logo-capital{
        height:28px;
    }

    .divider{
        height:22px;
    }

    .left h1{
        font-size:30px;
    }

    .left p,
    .faq p{
        font-size:15px;
    }

    .faq h4{
        font-size:16px;
    }

    .right h1,
    .right-2 h1{
        font-size:28px;
    }

    .sub{
        font-size:15px;
    }

    input,
    select{
        height:52px;
        font-size:16px;
    }

    button{
        height:55px;
        font-size:16px;
    }

    .call{
        font-size:16px;
    }

    .success-icon{
        width:75px;
        height:75px;
        font-size:32px;
        margin:0 auto 25px;
    }

    .right-2{
        text-align:center;
    }

    .info-box{
        text-align:left;
    }

    .info-box img{
        width:45px !important;
        min-width:45px;
    }

}


/* ===========================
   SMALL PHONES
=========================== */

@media (max-width:480px){

    body{
        padding:0;
        background:#fff;
    }

    .container{
        border-radius:0;
        box-shadow:none;
    }

    .left,
    .right,
    .right-2{
        padding:22px 18px;
    }

    .logo{
        flex-direction:column;
    }

    .divider{
        display:none;
    }

    .logo-takealot{
        height:62px;
    }

    .logo-capital{
        height:26px;
        margin-top: -10px;
    }

    .small{
        font-size:12px;
        letter-spacing:1px;
    }

    .left h1{
        font-size:26px;
    }

    .right h1,
    .right-2 h1{
        font-size:24px;
    }

    label{
        font-size:13px;
    }

    input,
    select{
        height:50px;
        padding:0 14px;
        font-size:15px;
    }

    .phone{
        display:flex;
        flex-direction:column;
    }

    .whatsapp{
        position:absolute;
        top:18px;
        display:inline-block;
        margin:-10px 0 15px;
        width:fit-content;
    }

    .checkbox{
        font-size:13px;
        gap:8px;
    }

    .checkbox input{
        min-width:18px;
    }

    button{
        height:52px;
        border-radius:14px;
    }

    .call{
        font-size:15px;
        line-height:1.5;
    }

    .info-box{
        padding:15px;
        gap:14px;
    }

    .info-title{
        font-size:12px;
    }

    .info-value{
        font-size:16px;
        word-break:break-word;
    }

    .modal-content{
        padding:22px;
    }

    .modal-content h2{
        font-size:22px;
    }

    .modal-content p{
        font-size:15px;
    }

}

.right-2{

    width:50%;
    padding:45px;

}

.success-icon{

    width:90px;
    height:90px;
    border-radius:50%;
    background:#e7f1ff;

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

    font-size:38px;
    color:#1783f3;
    margin-bottom:35px;

}

.right-2 h1{

    font-size:38px;
    color:#202938;
    margin-bottom:20px;

}

.right-2 .sub{

    font-size:17px;
    color:#667085;
    line-height:1.7;
    margin-bottom:40px;

}

.info-box{

    border:1px solid #d9e1ec;
    border-radius:16px;

    padding:18px 24px;

    display:flex;
    align-items:center;

    gap:20px;

    margin-bottom:18px;

}

.info-icon{

    font-size:28px;
    color:#1783f3;
    width:40px;
    text-align:center;

}

.info-title{

    color:#607080;
    font-weight:700;
    letter-spacing:1px;
    font-size:14px;

}

.info-value{

    font-size:20px;
    font-weight:700;
    color:#202938;
    margin-top:4px;

}

.right-2 hr{

    margin:40px 0 30px;

    border:none;
    height:1px;
    background:#e3e8ef;

}

.error-box{
    color:#d93025;
    font-size:13px;
    display:none;
}

.error-field{
    border:1px solid #d93025 !important;
}

/* Overlay */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn .25s ease;
}

/* Popup */
.modal-content {
    width: 430px;
    max-width: 90%;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    font-family: 'Inter', sans-serif;
    text-align: center;
    animation: slideUp .25s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.modal-icon {
    font-size: 34px;
}

.modal-content h2 {
    margin: 0;
    color: #1f2937;
    font-size: 28px;
    font-weight: 700;
}

.modal-content p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 28px;
}

.modal-btn {
    width: 100%;
    background: #0089e5;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.modal-btn:hover {
    background: #0076c9;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(25px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.page-loader{
    position:fixed;
    inset:0;
    background:rgba(255,255,255,.25);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.page-loader img{
    width:150px;
    height:150px;
}
