@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

/* Header Section */
.contact-header {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-header p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Container */
.contact-wrapper {
    max-width: 800px;
    margin: -60px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.contact-box {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.contact-box h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #0f172a;
    font-weight: 700;
}

/* Contact Methods Layout */
.contact-methods {
    display: block;
    margin-bottom: 30px;
}

.contact-methods p {
    margin-bottom: 25px;
    color: #64748b;
    font-weight: 500;
}

.contact-action {
    margin-bottom: 15px;
}

/* Button Styling */
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    background: #d4af37; /* Gold */
    color: #000;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.submit-btn:hover {
    background: #e5c158;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.3);
}

.submit-btn.whatsapp-style {
    background: #25d366;
    color: white;
}

.submit-btn.whatsapp-style:hover {
    background: #20bd5a;
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}

/* Bottom Info */
.contact-footer-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}

.contact-footer-info p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.contact-footer-info a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.contact-footer-info a:hover {
    text-decoration: underline;
}

/* Footer Section */
.contact-footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 40px 20px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #d4af37;
}

.copyright {
    font-size: 13px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 640px) {
    .contact-header h1 { font-size: 32px; }
    .contact-box { padding: 40px 20px; }
    .submit-btn { padding: 14px 20px; }
}
