/* Contact page – green theme aligned with home, product, category, about */
.contact-page {
    font-family: 'Inter', 'Poppins', sans-serif;
    background-color: #f8fafc;
}

/* Hero – full screen (100vh), full width */
.hero-bg {
    background: var(--primary-color) url('/images/contact-us.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: multiply;
}

.contact-hero-inner {
    min-height: 100vh;
    box-sizing: border-box;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 163, 74, 0.85);
    z-index: 1;
}

.contact-hero-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.contact-hero-breadcrumb a {
    text-decoration: none;
}

/* Contact card icons – ensure Font Awesome icons always show */
.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-card-icon i {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 1.25rem;
    font-style: normal;
    line-height: 1;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
}

.contact-card-icon-green {
    background: rgba(22, 163, 74, 0.2);
    color: var(--primary-color);
}

.contact-card-icon-yellow {
    background: rgba(234, 179, 8, 0.2);
    color: var(--secondary-hover, #ca8a04);
}

.contact-card-icon-orange {
    background: rgba(249, 115, 22, 0.2);
    color: var(--accent-color);
}

/* Contact cards – green accent, hover lift */
.contact-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.15);
}

/* .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.contact-card:hover::before {
    height: 100%;
} */

/* Section title underline */
.contact-section-title span {
    display: block;
    margin-top: 4px;
}

/* Form – unified design: all fields same border and green label like Last Name / Subject */
.contact-form-card .form-input {
    border: 1.5px solid rgba(22, 163, 74, 0.35);
    color: #1f2937;
}

.contact-form-card .form-input::placeholder {
    color: transparent;
}

.contact-form-card .form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-input:valid + .form-label,
.contact-form-card .form-group.focused .form-label {
    top: -10px;
    left: 8px;
    font-size: 0.75rem;
    color: var(--primary-color);
    background: white;
    padding: 0 8px;
}

/* Form group & label – green label for all fields (match Last Name / Subject) */
.form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.contact-form-card .form-label {
    position: absolute;
    left: 12px;
    top: 15px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.25s ease;
    pointer-events: none;
}

/* Submit button – green */
.contact-submit-btn {
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.contact-submit-btn:hover {
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
}

/* Form card */
.contact-form-card {
    transition: box-shadow 0.3s ease;
}

.contact-form-card:focus-within {
    box-shadow: 0 25px 50px rgba(22, 163, 74, 0.12);
}

/* Social buttons – green hover */
.contact-social-btn {
    transition: all 0.3s ease;
}

/* Store details card */
.store-details-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-details-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(22, 163, 61, 0.25);
}

/* Store Details section icons – ensure they show on gradient card */
.store-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.store-detail-icon i {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 1.125rem;
    font-style: normal;
    line-height: 1;
    display: inline-block;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* CTA section */
.contact-cta {
    position: relative;
}

/* Scrollbar – yellow (match site side scroller) */
.contact-page ::-webkit-scrollbar {
    width: 8px;
}

.contact-page ::-webkit-scrollbar-track {
    background: rgba(234, 179, 8, 0.15);
}

.contact-page ::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.contact-page ::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 100vh;
    }
    .contact-hero-title {
        font-size: 2.25rem;
    }
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    .contact-section-title {
        font-size: 1.75rem;
    }
    .contact-card-icon {
        width: 2.75rem;
        height: 2.75rem;
        min-width: 2.75rem;
        min-height: 2.75rem;
    }
    .contact-card-icon i {
        font-size: 1.125rem;
    }
}
