html, body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.main-content {
    max-width: 72rem;
    margin: 0 auto;
    padding: 6rem 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
    .main-content { padding: 7rem 2rem 3rem; }
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.contact-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}
.contact-header p {
    font-size: 1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .contact-container { grid-template-columns: 1fr 1fr; }
}

.contact-info {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.contact-info h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #da6f0d;
    display: inline-block;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.info-item:last-child {
    margin-bottom: 0;
}
.info-item i {
    color: #da6f0d;
    font-size: 1.25rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(218, 111, 13, 0.1);
    border-radius: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.info-text {
    flex: 1;
    min-width: 0;
}
.info-text h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}
.info-text p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}
.info-text a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}
.info-text a:hover {
    color: #da6f0d;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #da6f0d 0%, #da6f0d 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.submit-btn:hover {
    box-shadow: 0 5px 15px rgba(218, 111, 13, 0.3);
    transform: translateY(-1px);
}
.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

.map-container {
    margin-top: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

footer {
    background-color: #001830;
    color: #9ca3af;
    padding-top: 1rem;
    padding-bottom: 3rem;
    z-index: 1;
    text-align: center;
    border-top: 2px solid #da6f0d;
}
footer p {
    font-size: 0.875rem;
    margin: 0;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}
.social-link {
    color: #9ca3af;
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}
.social-link:hover {
    color: #da6f0d;
    transform: scale(1.15);
    background: rgba(218, 111, 13, 0.15);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}
.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}
.footer-link:hover {
    color: #da6f0d;
}
.footer-text {
    margin-top: 0.5rem;
}

.contact-auth-notice {
    background: #fff8f3;
    border: 1px solid #da6f0d;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #4b5563;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.5;
}

.hidden { display: none !important; }

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    background: #ffffff;
    border: 1.5px solid #d1d5db;
    border-radius: 9999px;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.back-btn i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}
.back-btn:hover {
    background: #fff5ee;
    border-color: #da6f0d;
    color: #da6f0d;
    box-shadow: 0 2px 8px rgba(218, 111, 13, 0.15);
}
.back-btn:hover i {
    transform: translateX(-3px);
}
.back-btn:active {
    transform: scale(0.97);
}
@media (max-width: 480px) {
    .back-btn span { display: none; }
    .back-btn { padding: 0.45rem 0.6rem; }
    .back-btn i { font-size: 0.85rem; margin: 0; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem 1rem;
    border-radius: .75rem;
    font-weight: 600;
}
.btn-primary { background: #da6f0d; color: #fff; }
.btn-primary:hover { filter: brightness(.93); }
.btn-dark { background: #001830; color: #fff; }
.btn-dark:hover { filter: brightness(1.15); }
.btn-ghost { background: #fff; border: 1px solid #e5e7eb; color: #111827; }
.btn-ghost:hover { background: #f9fafb; }
