@import url('header.css');
@import url('footer.css');

body {
    background: url('/src/assets/images/baground.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Opsional, untuk efek parallax */  
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* header overlay */
.header-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
}
.header-overlay.active {
    display: block;
}

/* Nav menu menggunakan header.css - tidak perlu didefinisikan ulang */
/* header overlay */


/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    padding: 215px 0;
    text-align: center;
    margin-top: 70px;

}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    /* background: #f8fafc; */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-container {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(37,99,235,0.10), 0 1.5px 6px rgba(0,0,0,0.03);
    border: 1.5px solid #e0e7ff;
}

.contact-form-container h2 {
    color: #2563eb;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: #fff;
    align-items: center;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

/* Contact Info */
.contact-info {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(37,99,235,0.10), 0 1.5px 6px rgba(0,0,0,0.03);
    border: 1.5px solid #e0e7ff;
}

.contact-info h3 {
    color: #2563eb;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e0e7ff;
    transition: all 0.3s ease;
    flex-wrap: wrap;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37,99,235,0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.25rem;
    min-width: 24px;
}

.contact-item h4 {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Social Links */
.social-links {
    text-align: center;
}

.social-links h4 {
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.5s ease, transform 0.5s ease;
    flex-wrap: wrap;
}

.social-icon i {
    font-size: 1.5rem;
    color: #ffffff;
    transition: color 0.5s ease;
}

/* Hover effect */
.social-icon:hover {
    background: #ffffff;
    transform: scale(1.1); 
}

.social-icon:hover i {
    color: #764ba2;
}


/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #fff;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    letter-spacing: 0.01em;
}

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

.service-category {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    border: 1.5px solid #e0e7ff;
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(37,99,235,0.12);
    border-color: #667eea;
}

.service-category h3 {
    color: #2563eb;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category li {
    color: #6b7280;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.service-category li:last-child {
    border-bottom: none;
}

.service-category li:hover {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero-sub {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }
    .contact-hero {
        padding: 20px 0 180px 0; 
    }
    .contact-hero h1 {
        font-size: 1.5rem;
        margin-top: 130px;
    }
    .contact-hero-sub {
        font-size: 1rem;
        margin: 10px 10px;
    }
    .contact-section {
        padding: 30px 0 20px 0;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .contact-form-container, .contact-info {
        padding: 18px 10px;
        font-size: 0.98rem;
    }
    .contact-form-container h2, .contact-info h3 {
        font-size: 1.2rem;
    }
    .form-group input, .form-group textarea {
        font-size: 0.98rem;
    }
    .submit-btn {
        display: block;
        align-items: center;
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
        margin: 1rem auto 0 auto;
        text-align: center;
    }
    .contact-details {
        gap: 1rem;
    }
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    .contact-item h4 {
        font-size: 1rem;
    }
    .contact-item p {
        font-size: 0.95rem;
    }
    .social-links h4 {
        font-size: 1rem;
    }
    .social-icons {
        gap: 10px;
    }
    .social-icon {
        font-size: 1.2rem;
    }
}

/* Mobile Landscape Responsive Design untuk Contact */
@media (max-width: 900px) and (orientation: landscape) {
    .contact-hero {
        padding: 80px 0 30px 0;
    }
    
    .contact-hero h1 {
        font-size: clamp(2rem, 4.5vw, 2.5rem);
        line-height: 1.2;
    }
    
    .contact-hero-sub {
        font-size: clamp(1rem, 2.2vw, 1.2rem);
        margin: 15px 0;
        line-height: 1.5;
    }
    
    .contact-section {
        padding: 50px 0 30px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .contact-form-container, .contact-info {
        padding: 2rem;
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    .contact-form-container h2, .contact-info h3 {
        font-size: clamp(1.3rem, 3vw, 1.5rem);
        line-height: 1.3;
    }
    
    .form-group input, .form-group textarea {
        font-size: clamp(0.9rem, 2vw, 1rem);
        padding: clamp(0.8rem, 2vw, 1rem);
    }
    
    .submit-btn {
        width: auto;
        max-width: none;
        font-size: clamp(0.9rem, 2vw, 1rem);
        margin: 1.5rem 0 0 0;
        padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    }
    
    .contact-details {
        gap: 1.2rem;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: center;
        padding: 1rem 0;
    }
    
    .contact-item h4 {
        font-size: clamp(1rem, 2.2vw, 1.1rem);
        line-height: 1.3;
    }
    
    .contact-item p {
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.5;
    }
    
    .social-links h4 {
        font-size: clamp(1rem, 2.2vw, 1.1rem);
        line-height: 1.3;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: clamp(1rem, 2.2vw, 1.2rem);
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 1rem;
    }
} 