/* CSS khusus untuk halaman contact-us.php */

/* Gunakan header dari mobile-header-core.css */
body {
    padding-top: 0; /* Default untuk desktop */
}

@media (max-width: 768px) {
    body {
        padding-top: var(--body-padding-top);
    }
}
.hero-contact {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Arial Narrow', Arial, sans-serif;
    color: #ffffff;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #dadada;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    margin-bottom: 0;
}

.contact-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #dadada;
    
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #b2b2b2;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-intro .section-description {
    font-size: 1.1rem;
    color: #b2b2b2;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h3,
.contact-form h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-color: #555;
}

.contact-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0.8);
}

.contact-details h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-details p {
    color: #b2b2b2;
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-details a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #fff;
}

.contact-details .note {
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
    margin-top: 10px;
}

/* Contact Form Styles */
.contact-form {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    background-color: #3a3a3a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
}

.map-section h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 15px;
}

.map-note {
    text-align: center;
    color: #888;
    font-style: italic;
    font-size: 0.9rem;
}

/* Quick Contact */
.quick-contact {
    text-align: center;
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    margin-bottom: 60px;
}

.quick-contact h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-contact p {
    color: #b2b2b2;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.quick-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: white;
}

.quick-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.quick-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.quick-btn.phone {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
}

.quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* FAQ Section */
.faq-section h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-color: #555;
}

.faq-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.faq-item p {
    color: #b2b2b2;
    line-height: 1.6;
}

/* Responsive Contact Styles */
/* Responsive Contact Styles */
@media (max-width: 768px) {
    /* Header mobile menggunakan mobile-header-core.css */
    body {
        padding-top: var(--body-padding-top);
        padding-bottom: 70px;
    }
    
    /* Hero Section Mobile */
    .hero-contact {
        height: 70vh;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: 90%;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
     
    }
    
    .contact-intro {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .contact-intro h2 {
        font-size: 2rem;
    }
    
    .contact-intro p {
        font-size: 1rem;
    }
    
    /* Quick Contact Buttons Mobile */
    .quick-contact-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .quick-btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
        font-size: 1rem;
    }
}

/* Tambahkan media query 480px yang belum ada di contact.css */
@media (max-width: 480px) {
    /* Header mobile menggunakan mobile-header-core.css */
    body {
        padding-top: var(--body-padding-top);
        padding-bottom: 65px;
    }
    
    .hero-contact {
        height: 60vh;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .hero-content {
        padding: 0 10px;
        max-width: 95%;
    }
    
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-intro {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .contact-intro h2 {
        font-size: 1.8rem;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-icon img {
        width: 30px;
        height: 30px;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .quick-contact {
        padding: 25 15px;
    }
    
    .contact-form {
        padding: 25 15px;
    }
    
    .quick-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}