/* ===== HERO SECTION ===== */
.hero-contact {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #f5e6e8 0%, #d4c5d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-contact h1 {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-contact p {
    font-size: 18px;
    color: #555;
    max-width: 600px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.contact-form h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000;
    letter-spacing: 1px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Cera Pro', sans-serif;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
}

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

.btn-submit {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
    text-transform: uppercase;
    width: 100%;
}

.btn-submit:hover {
    background-color: #333;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    font-size: 32px;
    color: #FFD700;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}

.info-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.info-content a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #FFD700;
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #000;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.social-link span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== MAP SECTION ===== */
.map-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.map-container {
    width: 100%;
    height: 450px;
    background: #e0e0e0;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.faq-toggle {
    font-size: 20px;
    color: #FFD700;
    font-weight: bold;
}

.faq-answer {
    padding: 0 30px 25px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle::before {
    content: '−';
}

.faq-toggle::before {
    content: '+';
}

/* ===== BUSINESS HOURS ===== */
.hours-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hours-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.hours-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.hours-time {
    font-size: 14px;
    color: #666;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .hero-contact h1 {
        font-size: 36px;
    }

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

    .map-container {
        height: 300px;
    }
}
