/*
 * Trooworths Contact Us Page Styles
 * File: trooworths-contact-us.css
 */

/* ============================================
   QUICK CONTACT SECTION
   ============================================ */
.quick-contact-section 
{
    padding: 60px 0;
    background: #f8f9fa;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.quick-contact-card 
{
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.quick-contact-card:hover 
{
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #ffc107;
}

.quick-contact-card .contact-icon 
{
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc107 0%, #ffcd39 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.quick-contact-card .contact-icon i 
{
    font-size: 32px;
    color: #1a1a2e;
}

.quick-contact-card h3 
{
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.quick-contact-card p 
{
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quick-contact-card .contact-link 
{
    color: #0f3460;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.quick-contact-card .contact-link:hover 
{
    color: #ffc107;
}


/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-form-section 
{
    padding: 80px 0;
    background: #ffffff;
}

.contact-form-wrapper 
{
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.section-title 
{
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.section-subtitle 
{
    color: #666666;
    font-size: 1rem;
    margin-bottom: 30px;
}

.contact-form .form-control,
.contact-form .form-select 
{
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus 
{
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

.contact-form .form-floating > label 
{
    color: #888888;
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.contact-form .form-floating > .form-select ~ label 
{
    color: #1a1a2e;
}

.contact-form .form-check-input:checked 
{
    background-color: #ffc107;
    border-color: #ffc107;
}

.contact-form .form-check-label a 
{
    color: #0f3460;
    text-decoration: none;
}

.contact-form .form-check-label a:hover 
{
    color: #ffc107;
    text-decoration: underline;
}

.btn-submit 
{
    background: linear-gradient(135deg, #ffc107 0%, #ffcd39 100%);
    border: none;
    color: #1a1a2e;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover 
{
    background: linear-gradient(135deg, #ffcd39 0%, #ffc107 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.35);
    color: #1a1a2e;
}

.btn-submit:disabled 
{
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message 
{
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
}

.form-message.success 
{
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error 
{
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* ============================================
   CONTACT INFO SIDEBAR
   ============================================ */
.contact-info-wrapper 
{
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 16px;
    padding: 40px;
    color: #ffffff;
    height: 100%;
}

.contact-info-wrapper .section-title 
{
    color: #ffffff;
    margin-bottom: 30px;
}

.info-item 
{
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child 
{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon 
{
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i 
{
    font-size: 20px;
    color: #ffc107;
}

.info-content h4 
{
    font-size: 1rem;
    font-weight: 600;
    color: #ffc107;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p 
{
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.info-content p a 
{
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content p a:hover 
{
    color: #ffc107;
}

/* Social Links */
.social-links 
{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link 
{
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link.facebook 
{
    background: #1877f2;
}

.social-link.twitter 
{
    background: #000000;
}

.social-link.instagram 
{
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.linkedin 
{
    background: #0a66c2;
}

.social-link.whatsapp 
{
    background: #25d366;
}

.social-link:hover 
{
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}


/* ============================================
   STORE LOCATIONS SECTION
   ============================================ */
.store-locations-section 
{
    padding: 80px 0;
    background: #f8f9fa;
}

.section-main-title 
{
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.section-main-subtitle 
{
    color: #666666;
    font-size: 1.1rem;
}

/* Store Card */
.store-card 
{
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.store-card:hover 
{
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.store-card.coming-soon 
{
    opacity: 0.95;
}

.store-card.coming-soon:hover 
{
    transform: translateY(-5px);
}

/* Store Image */
.store-image 
{
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

.store-image img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.store-card:hover .store-image img 
{
    transform: scale(1.05);
}

.store-badge 
{
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 5;
}

.store-badge.active 
{
    background: #28a745;
    color: #ffffff;
}

.store-badge.upcoming 
{
    background: #ffc107;
    color: #1a1a2e;
}

/* Coming Soon Overlay */
.coming-soon-overlay 
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.overlay-content 
{
    text-align: center;
    color: #ffffff;
}

.overlay-content i 
{
    font-size: 48px;
    color: #ffc107;
    margin-bottom: 10px;
    display: block;
}

.overlay-content span 
{
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Store Content */
.store-content 
{
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.store-name 
{
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.store-name i 
{
    color: #ffc107;
}

.store-details 
{
    flex-grow: 1;
}

.store-address,
.store-hours,
.store-phone 
{
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.store-address i,
.store-hours i,
.store-phone i 
{
    width: 30px;
    height: 30px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.store-address p,
.store-hours p,
.store-phone p 
{
    margin-bottom: 0;
    color: #555555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.store-phone p a 
{
    color: #0f3460;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.store-phone p a:hover 
{
    color: #ffc107;
}

.notify-link 
{
    color: #ffc107 !important;
    cursor: pointer;
}

.notify-link:hover 
{
    text-decoration: underline !important;
}

/* Store Actions */
.store-actions 
{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.btn-directions 
{
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-directions:hover 
{
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 26, 46, 0.3);
    color: #ffffff;
}

.btn-notify 
{
    background: linear-gradient(135deg, #ffc107 0%, #ffcd39 100%);
    color: #1a1a2e;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-notify:hover 
{
    background: linear-gradient(135deg, #ffcd39 0%, #ffc107 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
    color: #1a1a2e;
}


/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section 
{
    padding: 80px 0;
    background: #ffffff;
}

.faq-section .accordion-item 
{
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.faq-section .accordion-button 
{
    padding: 20px 25px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    background: #ffffff;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) 
{
    background: #ffffff;
    color: #1a1a2e;
    box-shadow: none;
}

.faq-section .accordion-button:focus 
{
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-button::after 
{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffc107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body 
{
    padding: 0 25px 25px;
    color: #555555;
    line-height: 1.7;
}

.faq-section .accordion-body a 
{
    color: #0f3460;
    text-decoration: none;
    font-weight: 500;
}

.faq-section .accordion-body a:hover 
{
    color: #ffc107;
    text-decoration: underline;
}

.btn-outline-warning 
{
    border-color: #ffc107;
    color: #1a1a2e;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover 
{
    background: #ffc107;
    border-color: #ffc107;
    color: #1a1a2e;
    transform: translateY(-2px);
}


/* ============================================
   MODAL STYLES
   ============================================ */
.modal-content 
{
    border: none;
    border-radius: 16px;
}

.modal-header 
{
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 25px;
}

.modal-title 
{
    font-weight: 700;
    color: #1a1a2e;
}

.modal-body 
{
    padding: 25px;
}

.modal-footer 
{
    border-top: 1px solid #f0f0f0;
    padding: 15px 25px;
}


/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991.98px) 
{
    .quick-contact-section 
	{
        padding: 40px 0;
        margin-top: 0;
    }
    
    .contact-form-section 
	{
        padding: 60px 0;
    }
    
    .contact-form-wrapper 
	{
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .contact-info-wrapper 
	{
        padding: 30px;
    }
    
    .store-locations-section 
	{
        padding: 60px 0;
    }
    
    .section-main-title 
	{
        font-size: 1.85rem;
    }
    
    .faq-section 
	{
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) 
{
    .quick-contact-section 
	{
        padding: 30px 0;
    }
    
    .quick-contact-card 
	{
        padding: 25px 20px;
    }
    
    .quick-contact-card .contact-icon 
	{
        width: 65px;
        height: 65px;
    }
    
    .quick-contact-card .contact-icon i 
	{
        font-size: 26px;
    }
    
    .contact-form-section 
	{
        padding: 40px 0;
    }
    
    .contact-form-wrapper 
	{
        padding: 25px 20px;
    }
    
    .section-title 
	{
        font-size: 1.5rem;
    }
    
    .contact-info-wrapper 
	{
        padding: 25px 20px;
    }
    
    .info-icon 
	{
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .info-icon i 
	{
        font-size: 18px;
    }
    
    .social-link 
	{
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .store-locations-section 
	{
        padding: 40px 0;
    }
    
    .section-main-title 
	{
        font-size: 1.6rem;
    }
    
    .store-image 
	{
        height: 180px;
    }
    
    .store-content 
	{
        padding: 20px;
    }
    
    .store-name 
	{
        font-size: 1.2rem;
    }
    
    .faq-section 
	{
        padding: 40px 0;
    }
    
    .faq-section .accordion-button 
	{
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .faq-section .accordion-body 
	{
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) 
{
    .quick-contact-card h3 
	{
        font-size: 1.2rem;
    }
    
    .quick-contact-card p 
	{
        font-size: 0.9rem;
    }
    
    .btn-submit 
	{
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .store-card 
	{
        margin-bottom: 15px;
    }
}


/* ============================================
   PRINT STYLES
   ============================================ */
@media print 
{
    .quick-contact-section,
    .contact-form-section,
    .faq-section,
    .cta-section 
	{
        display: none;
    }
    
    .store-locations-section 
	{
        padding: 20px 0;
    }
    
    .store-card 
	{
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .store-image 
	{
        display: none;
    }
    
    .store-actions 
	{
        display: none;
    }
}


/* ============================================
   ACCESSIBILITY
   ============================================ */
.quick-contact-card:focus-within 
{
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}

.store-card:focus-within 
{
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}

.social-link:focus 
{
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.btn-directions:focus,
.btn-notify:focus,
.btn-submit:focus 
{
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}