/* Contact Us Page Styles */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 170px;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Main Contact Section */
.contact-main {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    border-bottom: 3px solid #ff0000;
    padding-bottom: 0.75rem;
}

/* Contact Information Section */
.contact-info-section {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.2);
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.3);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
    color: #ffffff;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-icon.whatsapp svg {
    stroke: none;
}

.contact-details h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #ff4444;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #ff6666;
}

.contact-hours {
    color: #999999;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Social Section */
.social-section {
    margin-top: 2rem;
}

.social-section h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.social-link svg {
    width: 1.75rem;
    height: 1.75rem;
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.social-link.facebook {
    background-color: #1877F2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-link.twitter {
    background-color: #1DA1F2;
}

.social-link.youtube {
    background-color: #FF0000;
}

.social-link.tiktok {
    background-color: #000000;
}

.social-link.linkedin {
    background-color: #0A66C2;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.4);
}

.submit-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 2px solid #22c55e;
    display: block;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 2px solid #ef4444;
    display: block;
}

/* Map Section */
.map-section {
    margin-top: 3rem;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.map-container iframe {
    display: block;
    width: 100%;
}

.address-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a, #000000);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.2);
    text-align: center;
}

.address-info svg {
    width: 3rem;
    height: 3rem;
    stroke: #ff0000;
    stroke-width: 2;
    flex-shrink: 0;
}

.address-info h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.address-info p {
    color: #cccccc;
    line-height: 1.6;
}

/* Responsive Design */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .contact-hero {
        padding: 6rem 2rem;
    }
}