/* Hubungi Kami Page Specific Styles */

.hubungi-kami-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding-top: 80px;
}

.hubungi-kami-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hubungi-kami-header {
    text-align: center;
    margin-bottom: 60px;
}

.hubungi-kami-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b75bb;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hubungi-kami-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact info section */
.contact-info-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    border-color: #1b75bb;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 117, 187, 0.15);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f0f7ff;
    color: #1b75bb;
}

.contact-details h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.contact-details a {
    color: #1b75bb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #155a99;
    text-decoration: underline;
}

/* Social media section */
.social-media-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #4a5568;
    background: white;
}

.social-link:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Instagram hover - Solid pink like in image */
.social-link.instagram:hover {
    border-color: #E91E63;
    background: #E91E63;
    color: white;
}

.social-link.instagram:hover svg {
    fill: white;
}

/* YouTube hover - Solid red like in image */
.social-link.youtube:hover {
    border-color: #FF0000;
    background: #FF0000;
    color: white;
}

.social-link.youtube:hover svg {
    fill: white;
}

/* Facebook hover - Solid blue like in image */
.social-link.facebook:hover {
    border-color: #1877F2;
    background: #1877F2;
    color: white;
}

.social-link.facebook:hover svg {
    fill: white;
}

/* Form validation error styles */
.form-control.error,
.searchable-select-wrapper.error .searchable-select {
    border-color: #dc3545 !important;
    background-color: #fef2f2;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.form-control.error:focus,
.searchable-select-wrapper.error .searchable-select:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.searchable-select-wrapper.error .selected-text {
    color: #dc3545;
}

/* Error state animation */
.form-control.error,
.searchable-select-wrapper.error .searchable-select {
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Success state for completed fields */
.form-control:valid:not(:placeholder-shown) {
    border-color: #28a745;
    background-color: #f8fff9;
}

/* Submit button disabled state */
.papikost-static-btn:disabled,
.papikost-static-btn.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

/* Contact Form Section Styling */
.contact-form-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form-section p {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Form Styling */
.contact-form {
    max-width: 100%;
    position: relative;
    overflow: visible;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: visible;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.half {
    flex: 1;
}

.form-group.full {
    flex: 1 1 100%;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #1b75bb;
    box-shadow: 0 0 0 3px rgba(27, 117, 187, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 30px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.alert.alert-success {
    background-color: #d1edff;
    border: 1px solid #28a745;
    color: #155724;
}

.alert.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #dc3545;
    color: #721c24;
}

.social-info {
    text-align: left;
}

.social-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.social-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hubungi-kami-page {
        padding-top: 60px;
    }
    
    .hubungi-kami-title {
        font-size: 2rem;
    }
    
    .contact-info-section,
    .social-media-section {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method-card {
        padding: 16px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    /* Form mobile styles */
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group.half {
        flex: 1 1 100%;
    }
    
    .contact-form-section {
        padding: 20px;
    }
}