/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Page Background */
body {
    background: #f8f4ff; /* Your light purple */
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    overflow-x:hidden;
}

/* Contact Page Styles */
.contact-page-container {
    background: #f8f4ff; /* Light purple */
    padding: 40px 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-page-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-page-container section {
    width: 90%;
    margin: 4rem auto 80px;
    padding: 40px 0;
}

.contact-page-container h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    text-align: left;
    color: #BE0606; /* Red accent */
}

.contact-page-container .subtext {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 50px;
    max-width: 800px;
    text-align: left;
}

.contact-page-container .content-wrapper {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-page-container .left-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.2;
}

.contact-page-container .right-content {
    flex: 2;
    display: flex;
    flex-direction: column;
}

/* Updated Divider - Dimmed Darker Gray */
.contact-page-container .divider {
    height: 2px;
    background-color: #555555;
    margin: 30px 0;
}

/* Social Media Links */
.contact-page-container .social-links {
    display: flex;
    gap: 25px;
    margin-top: 15px;
}

.contact-page-container .social-link {
    color: #333;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-page-container .social-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #BE0606; /* Red accent */
    transition: width 0.3s;
}

.contact-page-container .social-link:hover::after {
    width: 100%;
}

/* Email Links */
.contact-page-container .email-link {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.contact-page-container .email-link:hover {
    color: #BE0606; /* Red accent */
}

/* Map Section */
.contact-page-container .map-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.contact-page-container .map-item {
    width: 32%;
    margin-bottom: 20px;
}

.contact-page-container .map-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #BE0606; /* Red accent */
}

.contact-page-container .shop-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-page-container .google-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-page-container .contact-form {
    width: 90%;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-page-container .map-container {
        flex-direction: column;
    }

    .contact-page-container .map-item {
        width: 100%;
    }

    .contact-page-container .google-map iframe {
        height: 250px;
    }

    .contact-page-container .shop-image {
        height: 200px;
    }

    .contact-page-container .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-page-container .google-map iframe {
        height: 200px;
    }

    .contact-page-container .shop-image {
        height: 180px;
    }
}

/* Phone Number Styling */
.contact-page-container .map-item p {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    color: #333;
}

.contact-page-container .map-item p a {
    color: #BE0606; /* Red accent */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    padding: 4px 6px;
    border-radius: 4px;
}

.contact-page-container .map-item p a:hover {
    color: #9E0505;
    background: #FFEEEE;
    text-decoration: underline;
}

/* Optional: Add this if you want clickable phone numbers to stand out more on mobile */
@media (max-width: 768px) {
    .contact-page-container .map-item p a {
        display: inline-block;
        padding: 6px 8px;
    }
}

/* Contact Form */
.contact-page-container .contact-form {
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 0 auto;
    margin-top: 5rem;
}

/* Form Categories (e.g., radio/checkbox label buttons) */
.contact-page-container .form-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.contact-page-container .form-categories label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #BE0606; /* Red accent */
    border-radius: 25px;
    transition: all 0.3s;
    cursor: pointer;
    user-select: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.contact-page-container .form-categories label:hover {
    background: #9E0505;
    transform: translateY(-2px);
    color: white;
}

/* Form Grid for layout */
.contact-page-container .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Form Group - labels and inputs */
.contact-page-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-page-container .form-group label {
    font-weight: 500;
    color: #444;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

/* Inputs, selects, textareas */
.contact-page-container .form-group input,
.contact-page-container .form-group select,
.contact-page-container .form-group textarea {
    padding: 14px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #222;
    transition: all 0.3s;
    appearance: none;  /* for consistent dropdown arrow styling across browsers */
    background-color: white;
}

/* Make options inside select inherit font as well */
.contact-page-container .form-group select option {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #222;
}

/* Focus styles */
.contact-page-container .form-group input:focus,
.contact-page-container .form-group select:focus,
.contact-page-container .form-group textarea:focus {
    border-color: #BE0606; /* Red accent */
    box-shadow: 0 2px 8px rgba(190, 6, 6, 0.1);
    outline: none;
}

/* Full width for larger elements */
.contact-page-container .form-group.full-width {
    grid-column: 1 / -1;
}

/* Submit button */
.contact-page-container button[type="submit"] {
    display: block;
    margin: 30px auto 0;
    width: 200px;
    background: transparent;
    color: #BE0606; /* Red accent */
    padding: 16px;
    border: 2px solid #BE0606; /* Red accent */
    border-radius: 35px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.contact-page-container button[type="submit"]:hover {
    background: #BE0606; /* Red accent */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(190, 6, 6, 0.15);
}

/* FAQ Section */
.contact-page-container .faq-section {
    max-width: 800px;
    margin: 0 auto 80px;
}

.contact-page-container .faq-item {
    position: relative;
    padding: 20px 0;
}

.contact-page-container .faq-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #555555;
    box-shadow: none;
}

.contact-page-container .faq-item summary {
    font-weight: 600;
    cursor: pointer;
    padding: 15px 0;
    list-style: none;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    color: #BE0606; /* Red accent */
}

.contact-page-container .faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.4em;
    transition: transform 0.3s;
    color: #BE0606; /* Red accent */
}

.contact-page-container .faq-item[open] summary::after {
    content: '−';
}

.contact-page-container .faq-item p {
    padding: 15px 0;
    line-height: 1.6;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .contact-page-container .content-wrapper {
        flex-direction: column;
    }

    .contact-page-container .map-container {
        grid-template-columns: 1fr;
    }

    .contact-page-container .contact-form {
        padding: 25px;
    }

    .contact-page-container .form-categories {
        justify-content: flex-start;
    }

    .contact-page-container h2 {
        font-size: 2rem;
        font-family: 'Montserrat', sans-serif;
    }
}

.phone-numbers {
    text-align: left;
    margin: 2rem 0;
    font-family: Arial, sans-serif;
}

.phone-numbers h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #BE0606; /* Red accent */
}

.phone-numbers p {
    font-size: 1rem;
    margin: 0.3rem 0;
}

.phone-numbers a {
    color: #BE0606; /* Red accent */
    text-decoration: none;
}

.phone-numbers a:hover {
    text-decoration: underline;
    color: #9E0505;
}