* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* ===============================
   HEADER
================================ */
/* ===============================
   UPDATED HEADER
================================ */
.header {
    background: linear-gradient(135deg, #3589b1, #2b3f85);
    padding: 22px 18px;
    border-bottom: 3px solid #1e256c;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo + Title */
.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    height: 85px; /* Increased & visible */
}

.header-title h1 {
    font-size: 26px;
    color: #ffffff;
    font-weight: 600;
}

.header-title p {
    font-size: 14px;
    color: #e6f4ff;
    margin-top: 3px;
    font-style: italic;
}

/* Brochure Button */
.btn-brochure {
    background: #ffffff;
    color: #1e256c;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-brochure:hover {
    background: #1e256c;
    color: #ffffff;
}

/* ===== Mobile View ===== */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .logo {
        height: 95px;
    }

    .header-title h1 {
        font-size: 22px;
    }

    .btn-brochure {
        width: 100%;
        justify-content: center;
    }
}

/* ===============================
   FORM SECTION
================================ */
.form-section {
    background: #f7f7f7;
    padding: 30px 15px;
}

.form-card {
    background: #fff;
    max-width: 440px;
    margin: auto;
    padding: 26px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ===============================
   FORM
================================ */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1e256c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(30,37,108,0.15);
}

/* ===============================
   BUTTON
================================ */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1e256c;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 500;
}

.btn-submit:hover {
    background: #161c5a;
}


.form-title {
    font-size: 17px;
    font-weight: 600;
    color: #1e256c;
    margin: 25px 0 12px;
    border-left: 4px solid #2595c9;
    padding-left: 10px;
}

select {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.radio-group {
    display: flex;
    gap: 20px;
    font-size: 15px;
}


/* ===============================
   CUSTOM BIG SELECT ARROW
   (NO IMAGE, PURE CSS)
================================ */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 100%;
    padding: 18px 65px 18px 18px; /* space for arrow */
    font-size: 17px;
    border-radius: 14px;
    border: 1px solid #ccc;
    background-color: #fff;
    line-height: 1.4;
}

/* BIG & CLEAR ARROW */
.select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;      /* 🔥 BIG ARROW SIZE */
    color: #1e256c;
    pointer-events: none;
}

/* MOBILE – EVEN BIGGER */
@media (max-width: 768px) {
    .select-wrapper select {
        padding: 20px 70px 20px 18px;
        font-size: 18px;
    }

    .select-wrapper::after {
        font-size: 28px;
        right: 20px;
    }
}


/* ===============================
   FOOTER
================================ */
/* ===============================
   UPDATED FOOTER
================================ */
.site-footer {
    background: linear-gradient(135deg, #1e256c, #2595c9);
    padding: 35px 18px 0;
    margin-top: 40px;
}

.footer-card {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.footer-item {
    display: flex;
    gap: 12px;
    font-size: 15px;
    color: #ffffff;
    align-items: flex-start;
}

.footer-item a {
    color: #ffffff;
    text-decoration: none;
}

.footer-item p {
    margin: 0;
    line-height: 1.6;
}

/* Decorative strip */
.footer-bars {
    margin-top: 25px;
}

.footer-bars span:first-child {
    display: block;
    height: 6px;
    width: 65%;
    background: #2bb3d6;
    border-radius: 0 40px 40px 0;
}

.footer-bars span:last-child {
    display: block;
    height: 8px;
    width: 100%;
    background: #0b144d;
    margin-top: 6px;
}

/* Desktop */
@media (min-width: 768px) {
    .footer-card {
        grid-template-columns: 1fr 1fr;
        gap: 20px 40px;
    }

    .footer-item.address {
        grid-column: span 2;
    }
}

/* ===============================
   TABLET VIEW
================================ */
@media (min-width: 600px) {

    .logo {
        height: 80px;
    }

    .form-card {
        max-width: 500px;
    }

    .footer-card {
        max-width: 720px;
    }
}

/* ===============================
   DESKTOP VIEW
================================ */
@media (min-width: 768px) {

    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 22px 40px;
    }

    .header-top {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .logo {
        height: 90px;      /* Desktop logo size */
        margin-bottom: 0;
    }

    .header h1 {
        font-size: 26px;
    }

    .btn-brochure {
        width: auto;
        padding: 12px 22px;
    }

    .form-card {
        max-width: 560px;
        padding: 36px;
    }

    .footer-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 40px;
    }

    .footer-item.address {
        grid-column: span 2;
    }
}

/* ===============================
   LARGE DESKTOP
================================ */
@media (min-width: 1200px) {
    .logo {
        height: 100px;
    }

    .header {
        padding: 25px 80px;
    }

    .form-card {
        max-width: 600px;
    }
}

/* ===============================
   THANK YOU PAGE – MOBILE FIRST
================================ */
.thankyou-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f9ff, #eef3ff);
    padding: 30px 15px;
}

.thankyou-card {
    background: #ffffff;
    padding: 32px 22px;
    border-radius: 18px;
    text-align: center;
    width: 100%;
    max-width: 360px;   /* mobile perfect width */
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Logo */
.thankyou-logo {
    height: 80px;
    margin-bottom: 18px;
}

/* Heading */
.thankyou-card h2 {
    font-size: 22px;
    color: #1e256c;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Text */
.thankyou-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

/* Button */
.thankyou-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 13px 24px;
    background: #1e256c;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    width: 100%;              /* 🔥 mobile thumb friendly */
    max-width: 240px;
}

.thankyou-btn:hover {
    background: #161c5a;
}

/* ===============================
   TABLET VIEW
================================ */
@media (min-width: 600px) {
    .thankyou-card {
        max-width: 420px;
        padding: 38px 30px;
    }

    .thankyou-logo {
        height: 90px;
    }

    .thankyou-card h2 {
        font-size: 24px;
    }

    .thankyou-card p {
        font-size: 15px;
    }

    .thankyou-btn {
        width: auto;
    }
}

/* ===============================
   DESKTOP VIEW
================================ */
@media (min-width: 992px) {
    .thankyou-section {
        min-height: 75vh;
    }

    .thankyou-card {
        max-width: 460px;
        padding: 42px 36px;
    }

    .thankyou-logo {
        height: 100px;
    }

    .thankyou-card h2 {
        font-size: 26px;
    }

    .thankyou-card p {
        font-size: 15px;
    }
}
