/* ==========================================
   CIRI CONTACT PAGE STYLING
   Theme Colors:
   Blue: #0d6efd
   Green: #198754
   Yellow: #f4c542
   ========================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    padding: 40px 0;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* LEFT SIDE CONTACT INFO */

.contact-layout .page-reveal-left {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 5px solid #198754;
}

.contact-layout .page-reveal-left h2 {
    color: #0b2c5f;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-layout .page-reveal-left p {
    color: #666;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #198754, #0d6efd);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: #0b2c5f;
    font-weight: 700;
}

.contact-item p {
    margin: 0;
    color: #555;
}

/* FORM CARD */

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 5px solid #f4c542;
}

.contact-form h3 {
    color: #0b2c5f;
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 700;
}

/* FORM GROUPS */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0b2c5f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e4e8ee;
    border-radius: 12px;
    background: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #198754;
    box-shadow: 0 0 0 4px rgba(25,135,84,0.15);
    outline: none;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

/* BUTTON */

.contact-form .btn-primary {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #198754, #0d6efd);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13,110,253,0.25);
}

/* SECTION TAG */

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(25,135,84,0.12);
    color: #198754;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* CONTACT PAGE HERO */

.inner-hero {
    position: relative;
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:linear-gradient(90deg,rgba(0,35,72,.88),rgba(0,92,160,.58),rgba(0,35,72,.28));
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
}

.inner-hero p {
    color: rgba(255,255,255,0.92);
    max-width: 650px;
}

/* PROFESSIONAL INPUT PLACEHOLDERS */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa5b1;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .contact-form,
    .page-reveal-left {
        padding: 25px;
    }

    .inner-hero h1 {
        font-size: 40px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}