.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* === HEADER (cloned from IIL style) === */
.site-header {
    background-color: #003057; /* deep navy — IIL corporate */
    color: white;
    padding: 1.2rem 0;
    border-bottom: 4px solid #f5a300; /* accent gold */
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    font-weight: 700;
    background-color: #f5a300;
    color: #003057;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-text .tagline {
    font-size: 0.9rem;
    color: #c9d9e9;
    font-style: italic;
}

.header-contact a {
    color: white;
    text-decoration: none;
    background-color: rgba(255,255,255,0.1);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    transition: 0.2s;
}

.header-contact a:hover {
    background-color: #f5a300;
    color: #003057;
    border-color: #f5a300;
}

/* === HERO (simple contact intro) === */
.contact-hero {
    background: linear-gradient(135deg, #e6f0fa 0%, #ffffff 100%);
    padding: 60px 0 40px;
    border-bottom: 1px solid #dde7f0;
}

.contact-hero h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #003057;
    margin-bottom: 0.75rem;
}

.hero-sub {
    font-size: 1.3rem;
    color: #2c3e5c;
        max-width: 700px;
        margin-bottom: 2rem;
}

.global-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    background: white;
    padding: 20px 28px;
    border-radius: 60px;
    box-shadow: 0 10px 20px rgba(0,48,87,0.08);
    margin-top: 20px;
    border: 1px solid #e2edf7;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #1e3b5c;
}

.badge-item span {
    font-size: 1.6rem;
}

/* === MAIN CONTACT AREA: 2 columns === */
.contact-main {
    padding: 70px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* left side: form */
.contact-form h3, .contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #003057;
    margin-bottom: 20px;
    border-left: 6px solid #f5a300;
    padding-left: 18px;
}

.form-group {
    margin-bottom: 24px;
}

label {
    font-weight: 600;
    color: #1e3b5c;
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd6e3;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #f9fcff;
    transition: 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #f5a300;
    box-shadow: 0 0 0 4px rgba(245,163,0,0.15);
    background-color: #ffffff;
}

.btn-primary {
    background-color: #003057;
    color: white;
    border: none;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
    border: 2px solid #003057;
    width: 100%;
}

.btn-primary:hover {
    background-color: #f5a300;
    border-color: #f5a300;
    color: #003057;
}

/* right side: contact details + why IIL */
.contact-info {
    background-color: #f2f7fd;
    padding: 40px 36px;
    border-radius: 32px;
    border: 1px solid #dae9f5;
}

.info-block {
    margin-bottom: 32px;
}

.info-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #003057;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.info-title .icon {
    font-size: 1.8rem;
}

.info-text {
    color: #1e3b5c;
    margin-bottom: 12px;
    padding-left: 36px;
}

.info-text strong {
    color: #003057;
}

.global-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0 20px;
    background: white;
    padding: 20px;
    border-radius: 24px;
}

.stat {
    flex: 1 0 120px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f5a300;
    line-height: 1;
}

.stat-desc {
    font-size: 0.9rem;
    color: #2c4b74;
}

/* certifications */
.wbe-badge {
    background: #ffffffde;
    border: 1px solid #b5d1e9;
    padding: 18px;
    border-radius: 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.wbe-badge .seal {
    font-size: 3rem;
}

.wbe-badge p {
    font-weight: 600;
    color: #003057;
}

.wbe-badge small {
    font-weight: normal;
    color: #2b4e73;
    display: block;
}

/* footer / learners love */
.testimonial-context {
    background-color: #eaf2fa;
    padding: 36px 0;
    border-top: 1px solid #cfe0ef;
}

.testimonial-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.testimonial-head h3 {
    font-size: 2rem;
    color: #003057;
    font-weight: 600;
}

.mini-quote {
    background: white;
    padding: 20px 28px;
    border-radius: 80px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.02);
    font-style: italic;
    color: #1f3a57;
    border: 1px solid #bdd6ec;
}

.mini-quote span {
    font-style: normal;
    font-weight: 700;
    color: #f5a300;
}

hr {
    border: 1px solid #2f5577;
    margin: 20px 0;
}

/* responsive */
@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .header-flex {
        flex-direction: column;
        gap: 16px;
        align-items: start;
    }
}
@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .global-badge {
        flex-direction: column;
        gap: 16px;
        border-radius: 32px;
    }
}
