/* ========================================
   CONTACT PAGE
   ======================================== */

/* HERO */
.hero-full {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    padding: 80px 0 50px;
    background: url('images/about/sunset_at_rig.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero-full .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
    z-index: 1;
}

.hero-full .hero-slant {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 65%;
    background: rgba(0, 0, 0, 0.82);
    z-index: 2;
    transform: skewX(-12deg);
    transform-origin: top left;
    border-right: 4px solid #00a3ff;
}

.hero-full .hero-content-center {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0;
    padding: 0 20px 0 80px;
    width: 100%;
}

.hero-full .hero-text-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 750px;
    margin: 0;
}

.hero-full .hero-underline {
    width: 6px;
    min-height: 100px;
    background: #00a3ff;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 8px;
}

.hero-full .hero-text {
    text-align: left;
    flex: 1;
}

.hero-full h1 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-full .hero-sub {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #66ccff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ========================================
   CONTENT
   ======================================== */
.contact-content {
    padding: 60px 0 80px;
    background: #f9fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

/* LEFT: Contact Info */
.contact-info h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a2a43;
    border-bottom: 4px solid #00a3ff;
    padding-bottom: 8px;
    margin-bottom: 18px;
    display: inline-block;
}

.contact-detail {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-detail i {
    font-size: 1.3rem;
    color: #00a3ff;
    width: 36px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-detail h4 {
    color: #0a2a43;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-detail p {
    color: #4a5568;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-social {
    margin-top: 25px;
}

.contact-social h4 {
    color: #0a2a43;
    margin-bottom: 12px;
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
}

.contact-social .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a4a6e;
    color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.contact-social .social-links a:hover {
    background: #00a3ff;
    transform: translateY(-3px);
}

/* RIGHT: Form */
.contact-form {
    background: white;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-form h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a2a43;
    border-bottom: 4px solid #00a3ff;
    padding-bottom: 8px;
    margin-bottom: 18px;
    display: inline-block;
}

.contact-form .form-info {
    color: #4a5568;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    color: #0a2a43;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-form .form-group label .required {
    color: #e53935;
}

.contact-form .form-group label small {
    font-weight: 400;
    color: #8899aa;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e7ef;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
    font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: #00a3ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,163,255,0.15);
}

.contact-form textarea {
    min-height: 80px;
    max-height: 150px;
    resize: vertical;
}

/* ========================================
   FILE UPLOAD 3 KOLOM - DEFAULT
   ======================================== */
.file-upload-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.file-card {
    flex: 1;
    min-width: 150px;
    background: #f7fafc;
    border: 2px dashed #d0d7e2;
    border-radius: 12px;
    padding: 15px 12px 12px;
    transition: border-color 0.3s;
}

.file-card:hover {
    border-color: #00a3ff;
}

.file-card .file-label {
    font-weight: 600;
    color: #0a2a43;
    font-size: 0.95rem;
}

.file-card .file-label .required {
    color: #e53935;
}

.file-card .file-hint {
    font-weight: 400;
    color: #8899aa;
    font-size: 0.75rem;
    margin-bottom: 8px;
    display: block;
}

.file-card input[type="file"] {
    width: 100%;
    padding: 8px 10px;
    background: #f7fafc;
    border: 2px dashed #d0d7e2;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #0a2a43;
}

.file-card input[type="file"]::file-selector-button {
    background: transparent;
    color: #0a2a43;
    border: 1px solid #d0d7e2;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.8rem;
    transition: 0.3s;
}

.file-card input[type="file"]::file-selector-button:hover {
    background: #f0f0f0;
    border-color: #0a2a43;
}

.contact-form .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1.05rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-full {
        min-height: 40vh;
        padding: 60px 0 30px;
    }
    .hero-full h1 {
        font-size: 2.5rem;
    }
    .hero-full .hero-sub {
        font-size: 1.5rem;
    }
    .hero-full .hero-content-center {
        padding: 0 20px;
    }
    .hero-full .hero-slant {
        width: 80%;
        transform: skewX(-8deg);
    }
    .hero-full .hero-underline {
        min-height: 70px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .file-upload-row {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-full h1 {
        font-size: 1.8rem;
    }
    .hero-full .hero-sub {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 18px;
    }

    .contact-form h2 {
        font-size: 1.3rem;
    }

    .contact-detail {
        flex-direction: column;
        gap: 4px;
    }

    .file-upload-row {
        flex-direction: column;
    }

    .file-card {
        min-width: 100%;
    }
}