/* FastCarton Contact Us Stylesheet */
body:has(.fc-contact-page),
body.page-template-page-contact-us {
    background: var(--fc-color-night) !important;
}

.fc-contact-page{
    position: relative;
    overflow: hidden;
    color: var(--fc-color-white);
    background: radial-gradient(circle at 75% -5%, rgba(88,211,107,.08), transparent 38rem),
                radial-gradient(circle at 20% 50%, rgba(255,173,85,.05), transparent 34rem),
                var(--fc-color-night);
    margin-top: -88px;
    padding-top: 88px;
    padding-bottom: 90px;
    direction: rtl;
}

.admin-bar .fc-contact-page{
    margin-top: -120px;
    padding-top: 120px;
}

.fc-contact__container{
    box-sizing: border-box;
    width: min(var(--fc-container), calc(100% - 40px));
    margin-inline: auto;
}

/* Background Atmospheric Glows */
.fc-contact-glow{
    position: absolute;
    z-index: 0;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: .12;
    pointer-events: none;
}
.fc-contact-glow--green{
    top: 60px;
    right: -120px;
    background: var(--fc-color-green);
}
.fc-contact-glow--orange{
    top: 560px;
    left: -140px;
    background: var(--fc-color-orange);
    opacity: .08;
}

/* Section Header & Kickers */
.fc-contact-kicker{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fc-color-green);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 14px;
}
.fc-contact-kicker::before{
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fc-color-green);
    box-shadow: 0 0 10px rgba(88,211,107,.6);
}

/* Hero Section */
.fc-contact-hero{
    position: relative;
    padding: 64px 0 44px;
    text-align: center;
}
.fc-contact-hero__inner{
    max-width: 720px;
    margin: 0 auto;
}
.fc-contact-hero h1{
    margin: 0 0 16px;
    color: #f7faf7;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1.3;
}
.fc-contact-hero h1 em{
    font-style: normal;
    background: linear-gradient(135deg, #58d36b 0%, #ffad55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fc-contact-hero p{
    margin: 0;
    color: #9eb1a3;
    font-size: 14px;
    line-height: 1.9;
}

/* Cards Grid */
.fc-contact-cards{
    padding: 20px 0 50px;
}
.fc-contact-cards__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.fc-contact-card{
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    background: linear-gradient(180deg, #111813 0%, #0a0f0c 100%);
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.fc-contact-card:hover{
    transform: translateY(-4px);
    border-color: rgba(88,211,107,.3);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.fc-contact-card__head{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.fc-contact-card__icon{
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(88,211,107,.12);
    color: var(--fc-color-green);
}
.fc-contact-card__icon svg{
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.fc-contact-card__icon--orange{
    background: rgba(255,173,85,.12);
    color: var(--fc-color-orange);
}
.fc-contact-card__head h3{
    margin: 0;
    color: #eef5f0;
    font-size: 16px;
    font-weight: 750;
}
.fc-contact-card__head small{
    display: block;
    color: #7b8c80;
    font-size: 10.5px;
    margin-top: 2px;
}
.fc-contact-card__body{
    display: grid;
    gap: 10px;
    flex: 1;
}
.fc-contact-phone-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    background: rgba(255,255,255,.025);
    color: #e2ede5;
    text-decoration: none;
    transition: all .16s ease;
}
.fc-contact-phone-item:hover{
    border-color: rgba(88,211,107,.4);
    background: rgba(88,211,107,.08);
    color: var(--fc-color-green);
}
.fc-contact-phone-item span{
    font-size: 11.5px;
    color: #92a497;
}
.fc-contact-phone-item strong{
    font-family: Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .03em;
    direction: ltr;
}

.fc-contact-social-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    background: rgba(255,255,255,.025);
    color: #e2ede5;
    text-decoration: none;
    transition: all .16s ease;
}
.fc-contact-social-item:hover{
    border-color: rgba(88,211,107,.4);
    background: rgba(88,211,107,.08);
    color: var(--fc-color-green);
}
.fc-contact-social-item img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.fc-contact-social-item div{
    flex: 1;
}
.fc-contact-social-item strong{
    display: block;
    font-size: 12.5px;
}
.fc-contact-social-item small{
    display: block;
    color: #7d8e82;
    font-size: 10px;
}
.fc-contact-social-item i{
    font-style: normal;
    color: var(--fc-color-green);
    font-size: 14px;
}

/* Main Split: Form & Info Sidecar */
.fc-contact-split{
    padding: 20px 0 70px;
}
.fc-contact-split__grid{
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 32px;
    align-items: flex-start;
}

/* Contact Form Box */
.fc-contact-form-box{
    padding: 38px 32px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    background: linear-gradient(180deg, #111813 0%, #090e0b 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.fc-contact-form-box header{
    margin-bottom: 24px;
}
.fc-contact-form-box header h2{
    margin: 0 0 8px;
    color: #f1f8f2;
    font-size: 22px;
    font-weight: 750;
}
.fc-contact-form-box header p{
    margin: 0;
    color: #899c8f;
    font-size: 12.5px;
    line-height: 1.7;
}

.fc-contact-form{
    display: grid;
    gap: 16px;
}
.fc-contact-form__row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.fc-contact-field{
    display: grid;
    gap: 6px;
}
.fc-contact-field label{
    color: #b0c0b4;
    font-size: 11.5px;
    font-weight: 700;
}
.fc-contact-field input,
.fc-contact-field select,
.fc-contact-field textarea{
    box-sizing: border-box;
    width: 100% !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 12px !important;
    background: #090e0b !important;
    color: #edf5ef !important;
    font-family: inherit !important;
    font-size: 12.5px !important;
    box-shadow: none !important;
    transition: all .16s ease;
}
.fc-contact-field input:focus,
.fc-contact-field select:focus,
.fc-contact-field textarea:focus{
    border-color: rgba(88,211,107,.5) !important;
    box-shadow: 0 0 0 3px rgba(88,211,107,.12) !important;
    outline: 0;
}
.fc-contact-field select{
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%238d9a90' stroke-width='1.7'%3E%3Cpath d='m6 8 4 4 4-4'/%3E%3C/svg%3E") !important;
    background-position: left 12px center !important;
    background-repeat: no-repeat !important;
    background-size: 14px !important;
    padding-inline-start: 32px !important;
}
.fc-contact-field select option{
    background: #0f1611 !important;
    color: #dce7df !important;
}
.fc-contact-field textarea{
    min-height: 120px;
    resize: vertical;
}

.fc-contact-submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 28px;
    border: 0;
    border-radius: 12px;
    background: var(--fc-color-green);
    color: #071009;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(88,211,107,.25);
    transition: all .18s ease;
}
.fc-contact-submit:hover{
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(88,211,107,.35);
}

.fc-contact-notice{
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 12.5px;
    margin-bottom: 16px;
}
.fc-contact-notice.is-success{
    background: rgba(88,211,107,.12);
    border: 1px solid rgba(88,211,107,.35);
    color: #6ee681;
}

/* Sidecar / FAQ & Signal */
.fc-contact-sidecar{
    display: grid;
    gap: 20px;
}
.fc-contact-signal-card{
    padding: 24px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    background: #101712;
}
.fc-contact-signal-card header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.fc-contact-signal-card header span{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--fc-color-green);
    font-size: 11px;
    font-weight: 700;
}
.fc-contact-signal-card header span i{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fc-color-green);
    box-shadow: 0 0 8px rgba(88,211,107,.5);
}
.fc-contact-signal-card p{
    margin: 0 0 16px;
    color: #8c9d90;
    font-size: 12px;
    line-height: 1.75;
}
.fc-contact-hours{
    display: grid;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 12px;
}
.fc-contact-hour-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
}
.fc-contact-hour-row span{
    color: #7b8c80;
}
.fc-contact-hour-row strong{
    color: #dbe6dd;
}

/* FAQ Accordion in Sidecar */
.fc-contact-faq-card{
    padding: 24px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    background: #101712;
}
.fc-contact-faq-card h3{
    margin: 0 0 16px;
    color: #edf5ef;
    font-size: 15px;
    font-weight: 750;
}
.fc-contact-faq-list{
    display: grid;
    gap: 10px;
}
.fc-contact-faq-item{
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    background: rgba(255,255,255,.02);
    overflow: hidden;
}
.fc-contact-faq-item summary{
    padding: 12px 14px;
    color: #d6e2d8;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.fc-contact-faq-item summary::-webkit-details-marker{
    display: none;
}
.fc-contact-faq-item p{
    margin: 0;
    padding: 0 14px 12px;
    color: #87998c;
    font-size: 11.5px;
    line-height: 1.7;
}

/* Responsive Rules */
@media(max-width:1024px){
    .fc-contact-cards__grid{grid-template-columns: 1fr;}
    .fc-contact-split__grid{grid-template-columns: 1fr;}
}
@media(max-width:680px){
    .fc-contact-form__row{grid-template-columns: 1fr;}
    .fc-contact-form-box{padding: 24px 18px;}
}
