/* ============================================================
   CONTACT US PAGE STYLES — Alignment with Figma
   ============================================================ */

.asar-contact {
    background: #ffffff;
    padding: 80px 0 120px;
}

/* Header Section */
.asar-contact__header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.asar-contact__main-title {
    font-family: 'Roca One', var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 4.5rem) !important; /* Huge Roca One */
    font-weight: 700 !important;
    color: var(--asar-primary) !important;
    line-height: 1.1 !important;
    margin-top: 24px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.asar-contact__main-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.35vw, 1.4rem) !important; /* approx 22px Satoshi */
    line-height: 1.6 !important;
    color: var(--asar-dark-alt);
    margin: 0;
}

/* Main Layout Grid */
.asar-contact__layout {
    display: grid;
    grid-template-columns: 1fr 724px;
    gap: 64px;
    align-items: start;
}

@media (max-width: 1200px) {
    .asar-contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Form Card */
.asar-contact__form-card {
    background: #fff8f0; /* Soft warm peach background from Figma */
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.asar-contact__form-title {
    font-family: var(--font-subheading);
    font-size: clamp(1.8rem, 2.5vw, 2.5rem) !important; /* approx 40px Satoshi Bold */
    font-weight: 700 !important;
    color: #000000 !important;
    line-height: 1.2 !important;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.asar-contact__form-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.15vw, 1.2rem) !important; /* approx 18-20px Satoshi Regular */
    line-height: 1.5 !important;
    color: var(--asar-dark-alt);
    margin-bottom: 40px;
}

/* Form Inputs & Fields */
.asar-contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.asar-contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.asar-contact-form__field label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
}

.asar-contact-form__field input[type="text"],
.asar-contact-form__field input[type="tel"],
.asar-contact-form__field input[type="email"],
.asar-contact-form__field textarea {
    width: 100%;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px !important;
    padding: 18px 24px !important;
    font-family: var(--font-body);
    font-size: 1.1rem !important;
    color: #000000;
    transition: all 0.3s ease;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.asar-contact-form__field input:focus,
.asar-contact-form__field textarea:focus {
    outline: none !important;
    border-color: var(--asar-primary) !important;
    box-shadow: 0 0 0 4px rgba(0, 71, 80, 0.15), inset 0px 2px 4px rgba(0, 0, 0, 0.02) !important;
}

/* Styled File Upload */
.asar-contact-form__file-wrapper {
    position: relative;
    width: 100%;
    height: 64px;
    cursor: pointer;
}

.asar-contact-form__file-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.asar-contact-form__file-custom {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 16px;
    color: var(--asar-dark-alt);
    transition: all 0.3s ease;
}

.asar-contact-form__file-wrapper:hover .asar-contact-form__file-custom {
    border-color: var(--asar-primary);
    background: #fbfbfb;
}

.file-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--asar-primary);
}

.file-label {
    font-family: var(--font-body);
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Consent Checkbox */
.asar-contact-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.asar-contact-form__consent input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--asar-primary);
    flex-shrink: 0;
}

.asar-contact-form__consent label {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--asar-dark-alt);
    cursor: pointer;
    user-select: none;
}

/* Submit Button */
.asar-contact-form__submit-wrap {
    margin-top: 20px;
}

.asar-contact-form__btn {
    width: 100%;
    height: 72px;
    background: #031b2b !important; /* Dark Blue/Black */
    color: #ffffff !important;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 1.25rem !important; /* 20px */
    border-radius: 16px !important;
    border: none !important;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.asar-contact-form__btn:hover {
    background: #082d46 !important;
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25) !important;
}

/* Contact Info Card */
.asar-contact__info-card {
    background: linear-gradient(133deg, #ff8811 0%, #06584f 69%, #001524 124%) !important; /* Warm Orange to Teal to Dark Navy */
    border-radius: 32px;
    overflow: hidden;
    height: 100%;
    color: #ffffff;
    box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.15);
}

.asar-contact__info-inner {
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    height: 100%;
    position: relative;
}

.asar-contact__info-title {
    font-family: var(--font-subheading);
    font-size: clamp(2rem, 3.25vw, 3.25rem) !important; /* 52px Satoshi Bold */
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin: 0;
}

.asar-contact__info-sub {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.4vw, 1.4vw) !important; /* approx 24px Satoshi Regular */
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0;
}

/* Details list */
.asar-contact__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.asar-contact__detail-item h3 {
    font-family: var(--font-subheading);
    font-size: 1.5rem !important; /* 24px */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.asar-contact__detail-item p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.asar-contact__detail-item p a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.asar-contact__detail-item p a:hover {
    border-bottom-color: #ffffff;
    opacity: 0.9;
}

/* Map Wrapper */
.asar-contact__map-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.asar-contact__map-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 73px;
    height: 73px;
    background: #d5992d !important; /* Gold */
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 5;
}

.asar-contact__map-btn:hover {
    background: #e2a83e !important;
    transform: scale(1.05);
}

.asar-contact__map-btn svg {
    width: 28px;
    height: 28px;
}

/* ============================================================
   CONTACT HERO SECTION
   ============================================================ */
.asar-contact-hero {
    position: relative;
    background-color: var(--asar-primary, #004750) !important;
    background-size: cover;
    background-position: right -120px; /* Vertically shift background up to crop out the built-in scoop */
    background-repeat: no-repeat;
    max-width: 1794px;
    width: calc(100% - 48px); /* Responsive fallback */
    margin: 24px auto 0;
    border-radius: 48px; /* Figma rounded card */
    overflow: hidden; /* Clip child elements to rounded corners */
    padding: 120px 80px 180px; /* Ample bottom padding to clear scoop */
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1200px) {
    .asar-contact-hero {
        width: calc(100% - 126px); /* Perfect 63px margin on left/right */
        border-radius: 64px;
    }
}

@media (max-width: 1024px) {
    .asar-contact-hero {
        background-position: center -80px; /* Responsive background position */
    }
}

@media (max-width: 768px) {
    .asar-contact-hero {
        padding: 80px 24px 180px;
        border-radius: 32px;
        background-position: center -40px;
    }
}

.asar-contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 27, 43, 0.45) 0%, rgba(3, 27, 43, 0.55) 100%);
    z-index: 1;
}

.asar-contact-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.asar-contact-hero__title {
    font-family: 'Roca One', var(--font-heading);
    font-size: clamp(2.5rem, 5.25vw, 5.25rem) !important; /* Huge 84px Roca One */
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.05 !important;
    margin: 0 0 16px 0;
    letter-spacing: -0.015em;
}

.asar-contact-hero__subtitle {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: clamp(1.1rem, 1.5rem, 1.5rem) !important; /* 24px Satoshi Bold label */
    color: #ffffff !important;
    margin-bottom: 24px;
    display: block;
    border: none !important;
    background: none !important;
    padding: 0 !important;
}

.asar-contact-hero__desc {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.6vw, 1.85rem) !important; /* approx 30px Satoshi */
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* White Scoop Buttons Cutout at Bottom-Left */
.asar-contact-hero__scoop-btns {
    position: absolute;
    bottom: 0;
    left: 0; /* Align directly with left edge of card */
    background: #ffffff;
    padding: 24px 40px 24px 48px; /* Left padding for alignment */
    border-top-right-radius: 32px;
    display: flex;
    gap: 24px;
    align-items: center;
    z-index: 10;
}

@media (min-width: 1200px) {
    .asar-contact-hero__scoop-btns {
        left: 0;
        border-top-right-radius: 40px;
        padding: 28px 48px 28px 64px; /* Left padding to match 64px grid */
    }
}

/* Inverted curves on the right and top-left of the scoop */
.asar-contact-hero__scoop-btns::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 100%;
    width: 32px;
    height: 32px;
    background: radial-gradient(circle at 100% 0%, transparent 32px, #ffffff 32.5px);
    pointer-events: none;
}

.asar-contact-hero__scoop-btns::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 0;
    width: 32px;
    height: 32px;
    background: radial-gradient(circle at 0% 0%, transparent 32px, #ffffff 32.5px);
    pointer-events: none;
}

@media (max-width: 768px) {
    .asar-contact-hero__scoop-btns {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 48px;
        border-radius: 20px;
        padding: 24px;
        justify-content: center;
        flex-wrap: wrap;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    
    .asar-contact-hero__scoop-btns::before,
    .asar-contact-hero__scoop-btns::after {
        display: none;
    }
}

.asar-contact-hero__btn {
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    border-radius: 16px;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 1.25rem !important;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.asar-contact-hero__btn--primary {
    background: #d5992d !important; /* Gold */
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(213, 153, 45, 0.25);
}

.asar-contact-hero__btn--primary:hover {
    background: #e2a83e !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(213, 153, 45, 0.4);
}

.asar-contact-hero__btn--whatsapp {
    background: transparent !important;
    border: 2px solid #031b2b !important; /* Dark Blue border */
    color: #031b2b !important; /* Dark Blue text */
}

.asar-contact-hero__btn--whatsapp:hover {
    background: #031b2b !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.whatsapp-btn-icon {
    margin-left: 12px;
    width: 23px;
    height: 19px;
}
}

.asar-contact-page,
.asar-contact-page #primary,
.asar-contact-page .site-main,
.page-template-template-contact,
.page-template-template-contact-php,
.page-template-template-contact #page,
.page-template-template-contact #content,
.page-template-template-contact-php #page,
.page-template-template-contact-php #content {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

/* ============================================================
   CONTACT SUPPORT SECTION ("How We Can Help")
   ============================================================ */
.asar-contact-support {
    background: #ffffff;
    padding: 100px 0;
}

.asar-contact-support__badge-wrap {
    text-align: center;
    margin-bottom: 56px;
}

.asar-contact-support__badge {
    background: rgba(213, 153, 45, 0.1);
    border: 1px solid #d5992d;
    color: #d5992d;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 10px 24px;
    border-radius: 32px;
    display: inline-block;
}

.asar-contact-support__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media (max-width: 1200px) {
    .asar-contact-support__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .asar-contact-support__grid {
        grid-template-columns: 1fr;
    }
}

.asar-contact-support-card {
    background: #fff8f0;
    border-radius: 32px;
    height: 390px;
    padding: 32px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    transition: all 0.3s ease;
}

.asar-contact-support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.1);
}

.asar-contact-support-card__content {
    width: 100%;
    text-align: left;
}

.asar-contact-support-card__title {
    font-family: var(--font-subheading);
    font-size: 1.85rem !important; /* 30px */
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.2;
}

.asar-contact-support-card__desc {
    font-family: var(--font-body);
    font-size: 1.25rem !important; /* 20px */
    color: #4a5467;
    line-height: 1.5;
    margin: 0;
}

.asar-contact-support-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--asar-primary);
}

/* Give different cards their Figma background opacity accents */
.asar-contact-support-card:nth-child(1) .asar-contact-support-card__icon {
    background: rgba(213, 153, 45, 0.2);
    color: #d5992d;
}

.asar-contact-support-card:nth-child(2) .asar-contact-support-card__icon {
    background: rgba(0, 71, 80, 0.2);
    color: var(--asar-primary);
}

.asar-contact-support-card:nth-child(3) .asar-contact-support-card__icon {
    background: rgba(3, 27, 43, 0.2);
    color: #031b2b;
}

.asar-contact-support-card:nth-child(4) .asar-contact-support-card__icon {
    background: rgba(74, 84, 103, 0.2);
    color: #4a5467;
}

.asar-contact-support-card__icon svg {
    width: 28px;
    height: 28px;
}

/* ============================================================
   CONTACT CTA SECTION ("Ready to Begin...")
   ============================================================ */
.asar-contact-cta {
    background: #ffffff;
    padding: 60px 0 100px;
}

.asar-contact-cta__inner {
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    padding: 64px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.asar-contact-cta__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 27, 43, 0.8) 0%, rgba(3, 27, 43, 0.4) 100%);
    z-index: 1;
}

.asar-contact-cta__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.asar-contact-cta__title {
    font-family: var(--font-subheading);
    font-size: clamp(1.8rem, 3.25vw, 3.25rem) !important; /* 52px Satoshi Bold */
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 12px;
    line-height: 1.2;
}

.asar-contact-cta__desc {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.75vw, 1.75rem) !important; /* 28px Satoshi Regular */
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.asar-contact-cta__action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.asar-contact-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    padding: 0 40px;
    background: #fff8f0 !important; /* soft warm peach background from Figma */
    color: var(--asar-primary) !important;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 1.5rem !important; /* 24px Satoshi Medium/Bold */
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.asar-contact-cta__btn:hover {
    background: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

@media (max-width: 992px) {
    .asar-contact-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 48px;
        gap: 32px;
    }
    
    .asar-contact-cta__btn {
        width: 100%;
    }
}

