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

body{
    background:#f3f3f3;
    color:#041335;
}

/* Contact Section */

.contact-section{
    width:100%;
    min-height:85vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 90px 80px;
    gap:80px;
}

.left-content,
.contact-form-container {
    animation: fadeUp .6s ease both;
}

.contact-form-container {
    animation-delay: .08s;
}

/* Left Side */

.left-content{
    flex:1;
    max-width:500px;
}

.left-content h1{
    font-size:95px;
    font-weight:700;
    line-height:0.95;
    margin-bottom:35px;
    color:#00133a;
}

.left-content p{
    font-size:18px;
    line-height:1.5;
    margin-bottom:45px;
    max-width:470px;
}

.contact-details h3{
    font-size:24px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

/* Form */

.contact-form-container{
    flex:1;
    max-width:700px;
}

form{
    background:#d9e0e7;
    padding:20px;
}

.row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.input-group{
    width:100%;
}

label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    color:#00133a;
}

input,
textarea{
    width:100%;
    border:none;
    background:#fff;
    padding:12px;
    font-size:16px;
    outline:none;
}

textarea{
    height:80px;
    resize:none;
}

.form-note{
    margin-top:14px;
    font-size:13px;
    line-height:1.5;
    color:#44506c;
}

.form-note a{
    color:#1b2954;
    font-weight:700;
    text-decoration:none;
}

.visually-hidden{
    position:absolute;
    left:-9999px;
    width:1px;
    height:1px;
    overflow:hidden;
}

button{
    width:100%;
    border:none;
    background:#1b2954;
    color:white;
    padding:14px;
    font-size:18px;
    cursor:pointer;
    margin-top:20px;
    transition:.3s;
}

button:hover{
    opacity:.9;
}

/* Responsive */

@media(max-width:1000px){
    .contact-section{
        flex-direction:column;
        align-items:flex-start;
        gap:40px;
    }

    .left-content h1{
        font-size:clamp(48px, 10vw, 70px);
    }

    .contact-form-container{
        width:100%;
        max-width:100%;
    }
}

@media(max-width:768px){
    .contact-section{
        padding:30px 5% 60px;
    }

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

    .left-content h1{
        font-size:clamp(40px, 12vw, 60px);
    }
}

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

/* Success Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 19, 53, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 48px rgba(4, 19, 53, 0.16);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(8, 23, 58, 0.08);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.checkmark-circle {
    stroke: #1b2954;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke: #1b2954;
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

.modal-content h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #041335;
    margin-bottom: 12px;
}

.modal-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6475;
    margin-bottom: 28px;
}

.modal-content button {
    margin-top: 0;
    border-radius: 4px;
    font-weight: 600;
}
