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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c2c2c, #3a3a3a);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23f4d03f" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23f7dc6f" opacity="0.2"/><circle cx="40" cy="70" r="1" fill="%23f4d03f" opacity="0.25"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Contact Form */
.contact-form-section h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #f4d03f;
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: linear-gradient(135deg, #f4d03f, #f7dc6f);
    color: #2c2c2c;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3);
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(244, 208, 63, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

/* Contact Info Section */
.contact-info-section h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #f4d03f;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.1);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f4d03f, #f7dc6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2c2c2c;
    flex-shrink: 0;
}

.method-content h3 {
    color: #2c2c2c;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.method-content p {
    color: #000000;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.method-content a {
    color: #f4d03f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: #fafafa;
}

.directions-btn {
    display: inline-block;
    background: #f4d03f;
    color: #2c2c2c;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: #d4b806;
    transform: translateY(-2px);
}

.emergency-note {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Social Links */
.social-links h3 {
    color: #2c2c2c;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn.facebook { background: #1877F2; }
.social-btn.linkedin { background: #0a66c2; }
.social-btn.twitter { background: #000000; }
.social-btn.whatsapp { 
    background: #25d366;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffbf0, #fef9e7);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 50px;
    font-weight: 700;
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #f4d03f;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-note {
    font-size: 1rem;
    color: #6b7280;
}

/* Quick Contact Section */
.quick-contact {
    padding: 80px 0;
    background: white;
}

.quick-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 50px;
    font-weight: 700;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.quick-card:hover {
    transform: translateY(-10px);
    border-color: #f4d03f;
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.15);
}

.quick-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4d03f, #f7dc6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #2c2c2c;
}

.quick-card h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
}

.quick-card p {
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.quick-btn {
    background: linear-gradient(135deg, #f4d03f, #f7dc6f);
    color: #2c2c2c;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 208, 63, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffbf0, #fef9e7);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(244, 208, 63, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    color: #2c2c2c;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #f4d03f;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 25px 30px;
    color: #000000;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c2c2c, #3a3a3a);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #f4d03f;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    line-height: 1.8;
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: #f4d03f;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 30px 20px;
    }


    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }


    .quick-contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .social-buttons {
        justify-content: center;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }

    .contact-main,
    .map-section,
    .quick-contact,
    .faq-section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 2rem;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
}