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


.top-header {
    background: transparent;
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 10;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo-center img {
    max-width: 220px;
    height: auto;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 100px);
    margin-top: 0;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}


.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px 0;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 20px;
    max-width: 900px;
}

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

.hero-content p {
    font-size: 18px;
    line-height: 1.5;
}


.enquiry-form {
    min-height: 100vh;
    background: #f7f9fc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.enquiry-form .title-w3l {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #02163d;
    margin-bottom: 25px;
}

.form-wrapper {
    width: 100%;
    max-width: 900px;
    text-align: center;
}


.form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    max-width: 700px;
    margin: auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: grid;
    gap: 16px;
}

.form-box input,
.form-box textarea {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.form-box textarea {
    min-height: 120px;
    resize: vertical;
}


.btn-center {
    display: flex;
    justify-content: center;
}

.btn-submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.btn-submit {
    padding: 14px 44px;
    border-radius: 30px;
    background: #0066cc;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}


.btn-submit.loading .btn-loader {
    display: inline-block;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit:hover {
    background: #004fa3;
}

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


.toaster {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #333;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    opacity: 0;
    transition: 0.4s;
    z-index: 9999;
}

.toaster.success {
    background: #28a745;
}

.toaster.error {
    background: #dc3545;
}

.toaster.show {
    opacity: 1;
}


@media (max-width: 768px) {
    .top-header {
        height: 80px;
    }

    .hero-section {
        min-height: calc(100vh - 80px);
        padding-top: 10px;
    }

    .hero-image {
        padding: 10px;
    }

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

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

    .enquiry-form .title-w3l {
        font-size: 22px;
        margin-bottom: 18px;
    }
}