/* ============================================
   Contact Us Page Styles - Shifrah Foods
   ============================================ */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(193, 123, 75, 0.95) 0%, rgba(140, 80, 40, 0.95) 100%), url('../image/contact/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    text-align: center;
    color: white;
    position: relative;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero-content h1 span {
    color: #ffd966;
    position: relative;
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: #ffd966;
}

.hero-breadcrumb i {
    font-size: 0.7rem;
}

/* Contact Info Cards Section */
.contact-info-cards {
    padding: 60px 0;
    background: #fff;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(193, 123, 75, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(193, 123, 75, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(193, 123, 75, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: #c17b4b;
}

.info-card h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-link {
    display: block;
    color: #c17b4b;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #a05e35;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    background: rgba(193, 123, 75, 0.15);
    color: #c17b4b;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-center h2 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.section-title-center h2 span {
    color: #c17b4b;
}

.section-title-center p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: #fef9f2;
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Contact Form Styles */
.contact-form-container h2 {
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.contact-form-container h2 span {
    color: #c17b4b;
}

.contact-form-container > p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.form-group.full-width {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c1810;
    font-size: 0.9rem;
}

.form-group .required {
    color: #c17b4b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c17b4b;
    box-shadow: 0 0 0 3px rgba(193, 123, 75, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-icon {
    position: absolute;
    right: 1rem;
    top: 2.6rem;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
}

.textarea-icon {
    top: 2.6rem;
}

.select-icon {
    top: 2.6rem;
    pointer-events: none;
}

.submit-btn {
    width: 100%;
    background: #c17b4b;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #a05e35;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #888;
}

.form-note i {
    color: #c17b4b;
    margin-right: 0.3rem;
}

/* Success Message */
.success-message {
    background: #e8f5e9;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #4caf50;
}

.success-message i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #666;
}

/* Map Container */
.map-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-header {
    padding: 1.2rem 1.5rem;
    background: #c17b4b;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-header i {
    font-size: 1.3rem;
}

.map-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.map-wrapper {
    width: 100%;
    height: 300px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.map-address {
    padding: 1.5rem;
}

.map-address p {
    margin-bottom: 0.75rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.map-address p i {
    color: #c17b4b;
    margin-top: 0.2rem;
    min-width: 20px;
}

/* Quick Connect */
.quick-connect {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quick-connect h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quick-connect h3 i {
    color: #c17b4b;
}

.quick-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-link.whatsapp {
    background: #25D366;
    color: white;
}

.quick-link.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.quick-link.call {
    background: #c17b4b;
    color: white;
}

.quick-link.call:hover {
    background: #a05e35;
    transform: translateY(-2px);
}

.quick-link.email {
    background: #4a5568;
    color: white;
}

.quick-link.email:hover {
    background: #2d3748;
    transform: translateY(-2px);
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #fef9f2;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(193, 123, 75, 0.05);
}

.faq-question h3 {
    font-size: 1rem;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.faq-question h3 i {
    color: #c17b4b;
    font-size: 1rem;
}

.faq-toggle {
    color: #c17b4b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 1.5rem;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.2rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: #c17b4b;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Social Connect Section */
.social-connect {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c1810 0%, #1f120b 100%);
    color: white;
    text-align: center;
}

.social-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c17b4b;
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .form-map-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title-center h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 50px;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links {
        flex-direction: column;
    }
    
    .social-link {
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container h2 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .map-header h3 {
        font-size: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link span {
        display: none;
    }
    
    .social-link {
        padding: 0.8rem;
    }
    
    .social-link i {
        font-size: 1.2rem;
        margin: 0;
    }
}

/* Form Focus Animation */
.form-group.focused label {
    color: #c17b4b;
}

.form-group.focused input,
.form-group.focused select,
.form-group.focused textarea {
    border-color: #c17b4b;
}