/* ========================================
   CONTACT PAGE
   ======================================== */

/* HERO */
.hero-full {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    padding: 100px 0 40px;
    background: url('images/about/windfarm.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero-full .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero-full .hero-slant {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 65%;
    background: rgba(0, 0, 0, 0.60);
    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: 70px;
    background: #00a3ff;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 8px;
}

.hero-full .hero-text {
    text-align: left;
    flex: 1;
}

/* ===== JUDUL UTAMA (PUTIH, BESAR) - 100% SAMA DENGAN ABOUT ===== */
.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* ===== SUB JUDUL (BIRU, ANTON) - 100% SAMA DENGAN ABOUT ===== */
.hero-sub {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #66ccff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ===== HERO DESCRIPTION / TAGLINE ===== */
.hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    text-transform: none;
    letter-spacing: 0.5px;
    margin-top: 8px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    line-height: 1.5;
    max-width: 100%;
    word-wrap: break-word;
}

/* ========================================
   CONTACT CONTENT
   ======================================== */
.contact-content {
    padding: 50px 0 70px;
    background: #f9fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

/* ========================================
   LEFT - CONTACT INFO (TANPA CARD)
   ======================================== */
.contact-info {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.contact-info h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 25px;
    border-bottom: 4px solid #00a3ff;
    padding-bottom: 10px;
    display: inline-block;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-detail i {
    font-size: 1.3rem;
    color: #00a3ff;
    width: 28px;
    text-align: center;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 2px;
}

.contact-detail p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* ===== 2 KOLOM: FOLLOW US & FIND US ===== */
.contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
    align-items: center;
}

.contact-follow h4,
.contact-find h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 10px;
}

.contact-follow .social-links {
    display: flex;
    gap: 10px;
}

.contact-follow .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f4f9;
    color: #0a2a43;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 1rem;
    text-decoration: none;
}

.contact-follow .social-links a:hover {
    background: #00a3ff;
    color: white;
    transform: translateY(-3px);
}

.contact-find .find-links {
    display: flex;
    gap: 10px;
}

.contact-find .find-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f4f9;
    color: #0a2a43;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 1rem;
    text-decoration: none;
}

.contact-find .find-links a:hover {
    background: #00a3ff;
    color: white;
    transform: translateY(-3px);
}

/* ========================================
   RIGHT - CONTACT FORM
   ======================================== */
.contact-form {
    background: white;
    padding: 35px 35px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-form h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 6px;
    border-bottom: 4px solid #00a3ff;
    padding-bottom: 10px;
    display: inline-block;
}

.contact-form .form-info {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    color: #0a2a43;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.contact-form .form-group .required {
    color: #e53935;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e7ef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: 0.3s;
    background: white;
    font-family: 'Inter', sans-serif;
}

.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 .form-group textarea {
    resize: vertical;
}

/* ===== FILE UPLOAD 3 KOLOM ===== */
.file-upload-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.file-card {
    background: #f7fafc;
    border: 2px dashed #d0d7e2;
    border-radius: 10px;
    padding: 14px 12px 12px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.file-card:hover {
    border-color: #00a3ff;
    background: #f0f6fe;
}

.file-card .file-label {
    font-weight: 600;
    color: #0a2a43;
    font-size: 0.85rem;
}

.file-card .file-label .required {
    color: #e53935;
}

.file-card .file-hint {
    font-size: 0.65rem;
    color: #8899aa;
    margin: 2px 0 6px;
}

.file-card input[type="file"] {
    display: block;
    width: 100%;
    padding: 4px 0;
    font-size: 0.7rem;
    border: none;
    background: transparent;
    cursor: pointer;
}

.file-card input[type="file"]::file-selector-button {
    padding: 4px 12px;
    border: none;
    border-radius: 6px;
    background: #e0e7ef;
    color: #0a2a43;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.file-card input[type="file"]::file-selector-button:hover {
    background: #00a3ff;
    color: white;
}

/* ===== SUBMIT BUTTON ===== */
.contact-form .btn-primary {
    display: inline-block;
    background: #00a3ff;
    color: white;
    padding: 12px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.contact-form .btn-primary:hover {
    background: #0077cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,163,255,0.4);
}

/* ========================================
   RESPONSIVE - 100% SAMA DENGAN ABOUT
   ======================================== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .file-upload-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-full {
        min-height: 25vh;
        padding: 50px 0 15px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-sub {
        font-size: 0.8rem;
        margin-top: -4px;
        max-width: 70%;
    }
    .hero-desc {
        font-size: 0.85rem;
        max-width: 70%;
    }
    .hero-full .hero-content-center {
        padding: 0 16px;
    }
    .hero-full .hero-slant {
        width: 80%;
        transform: skewX(-8deg);
    }
    .hero-full .hero-underline {
        min-height: 50px;
        width: 4px;
    }
    .hero-full .hero-text-wrapper {
        gap: 12px;
    }

    .contact-content {
        padding: 30px 0 40px;
    }

    .contact-info {
        padding: 0;
    }

    .contact-form {
        padding: 20px 16px;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.2rem;
    }

    .contact-actions {
        gap: 10px;
        align-items: center;
    }

    .contact-follow .social-links a,
    .contact-find .find-links a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .contact-follow h4,
    .contact-find h4 {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .file-upload-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .file-card {
        padding: 8px 6px;
    }

    .file-card .file-label {
        font-size: 0.55rem;
    }

    .file-card .file-hint {
        font-size: 0.45rem;
        margin: 1px 0 4px;
    }

    .file-card input[type="file"] {
        font-size: 0.5rem;
        padding: 2px 0;
    }

    .file-card input[type="file"]::file-selector-button {
        padding: 2px 8px;
        font-size: 0.5rem;
    }

    .contact-form .btn-primary {
        padding: 10px 24px;
        font-size: 0.85rem;
        width: auto;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-full {
        min-height: 22vh;
        padding: 40px 0 12px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-sub {
        font-size: 0.65rem;
        margin-top: -4px;
        max-width: 80%;
    }
    .hero-desc {
        font-size: 0.75rem;
        max-width: 70%;
    }
    .hero-full .hero-underline {
        min-height: 35px;
        width: 3px;
    }

    .contact-content {
        padding: 20px 0 30px;
    }

    .contact-info {
        padding: 0;
    }

    .contact-form {
        padding: 16px 12px;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1rem;
    }

    .contact-detail {
        gap: 12px;
    }
    .contact-detail i {
        font-size: 1rem;
        width: 22px;
    }
    .contact-detail h4 {
        font-size: 0.8rem;
    }
    .contact-detail p {
        font-size: 0.8rem;
    }

    .contact-actions {
        gap: 6px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .contact-follow .social-links a,
    .contact-find .find-links a {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }

    .contact-follow .social-links {
        gap: 6px;
    }

    .contact-find .find-links {
        gap: 6px;
    }

    .contact-follow h4,
    .contact-find h4 {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }

    .contact-form .form-group label {
        font-size: 0.8rem;
    }
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .file-upload-row {
        gap: 4px;
    }

    .file-card {
        padding: 6px 4px;
    }

    .file-card .file-label {
        font-size: 0.45rem;
    }

    .file-card .file-hint {
        font-size: 0.4rem;
        margin: 0 0 2px;
    }

    .file-card input[type="file"] {
        font-size: 0.4rem;
        padding: 1px 0;
    }

    .file-card input[type="file"]::file-selector-button {
        padding: 1px 6px;
        font-size: 0.4rem;
    }

    .contact-form .btn-primary {
        padding: 8px 20px;
        font-size: 0.75rem;
        width: auto;
        display: block;
        margin: 0 auto;
    }
}