/* ==========================================
   Contact Page Foundation
========================================== */

.totoland-contact-page {
    background: #F8FAFC;
    color: #111827;
}

.totoland-information-container {
    width: min(100% - 32px, 1240px);
    margin-right: auto;
    margin-left: auto;
}

.totoland-information-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    background: #F2FBFF;
    color: #007FAF;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1.2;
    text-transform: uppercase;
}

.totoland-information-section-heading {
    max-width: 720px;
    margin-bottom: 26px;
}

.totoland-information-section-heading h2 {
    margin: 10px 0 8px;
    color: #111827;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    line-height: 1.15;
}

.totoland-information-section-heading p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.totoland-information-button {
    min-height: 48px;
    padding: 11px 18px;
    border: 2px solid transparent;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.totoland-information-button:hover {
    transform: translateY(-2px);
}

.totoland-information-button--primary {
    background: #00AEEF;
    color: #FFFFFF;
}

.totoland-information-button--secondary {
    background: #FF5AA5;
    color: #FFFFFF;
}

.totoland-information-button--whatsapp {
    background: #25D366;
    color: #FFFFFF;
}

.totoland-information-button--outline {
    border-color: #111827;
    background: #FFFFFF;
    color: #111827;
}

/* ==========================================
   Contact Hero
========================================== */

.totoland-contact-hero {
    padding: 72px 0;
    background:
        linear-gradient(
            135deg,
            rgba(0, 174, 239, .13),
            rgba(255, 90, 165, .12)
        );
}

.totoland-contact-hero-inner {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.totoland-contact-hero-content {
    flex: 1 1 620px;
    max-width: 720px;
}

.totoland-contact-hero-content h1 {
    margin: 14px 0 18px;
    color: #111827;
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.03;
}

.totoland-contact-hero-intro {
    max-width: 660px;
    margin: 0;
    color: #475467;
    font-size: 17px;
    line-height: 1.75;
}

.totoland-contact-hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.totoland-contact-hero-visual {
    flex: 0 1 370px;
    min-height: 300px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 30px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 24px 55px rgba(17, 24, 39, .1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.totoland-contact-hero-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 8px;
    border-radius: 26px;
    background: #00AEEF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.totoland-contact-hero-bubble {
    padding: 12px 15px;
    border-radius: 14px;
    background: #FFFFFF;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .06);
}

/* ==========================================
   Contact Cards
========================================== */

.totoland-contact-methods {
    padding: 70px 0 28px;
}

.totoland-contact-method-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.totoland-contact-method-card {
    flex: 1 1 calc(25% - 18px);
    min-width: 245px;
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .06);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.totoland-contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(17, 24, 39, .1);
}

.totoland-contact-method-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 16px;
    background: #F2FBFF;
    color: #00AEEF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.totoland-contact-method-content h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
}

.totoland-contact-method-content p {
    margin: 0 0 10px;
    color: #667085;
    font-size: 13px;
    line-height: 1.55;
}

.totoland-contact-method-content a {
    color: #007FAF;
    font-size: 13px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

/* ==========================================
   Location and Business Hours
========================================== */

.totoland-contact-support-grid {
    padding: 36px 0;
    display: flex;
    align-items: stretch;
    gap: 22px;
}

.totoland-contact-location,
.totoland-contact-hours {
    flex: 1 1 50%;
    min-width: 0;
    padding: 28px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .06);
}

.totoland-contact-address {
    margin: 0 0 20px;
    padding: 18px;
    border-radius: 15px;
    background: #F8FAFC;
    font-style: normal;
}

.totoland-contact-address strong,
.totoland-contact-address span {
    display: block;
}

.totoland-contact-address strong {
    margin-bottom: 7px;
    color: #111827;
    font-size: 16px;
}

.totoland-contact-address span {
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
}

.totoland-contact-map-placeholder {
    margin-bottom: 18px;
    padding: 18px;
    border: 1px dashed #CBD5E1;
    border-radius: 15px;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    gap: 14px;
}

.totoland-contact-map-placeholder > i {
    color: #00AEEF;
    font-size: 26px;
}

.totoland-contact-map-placeholder strong {
    color: #111827;
}

.totoland-contact-map-placeholder p {
    margin: 4px 0 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
}

.totoland-contact-hours-header {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.totoland-contact-hours-header h2 {
    margin: 9px 0 0;
    color: #111827;
    font-size: 28px;
    font-weight: 900;
}

.totoland-contact-hours-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 17px;
    background: #FFF9E8;
    color: #B77900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.totoland-contact-store-status {
    margin-bottom: 16px;
    padding: 11px 14px;
    border-radius: 12px;
    background: #F8FAFC;
    color: #667085;
    display: flex;
    align-items: center;
    gap: 9px;
}

.totoland-contact-store-status.is-open {
    background: #F4FFF1;
    color: #377B25;
}

.totoland-contact-store-status.is-closed {
    background: #FFF5FA;
    color: #B42365;
}

.totoland-contact-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
}

.totoland-contact-hours-list {
    margin: 0;
}

.totoland-contact-hours-list > div {
    padding: 13px 0;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.totoland-contact-hours-list dt {
    color: #111827;
    font-weight: 800;
}

.totoland-contact-hours-list dd {
    margin: 0;
    color: #667085;
    text-align: right;
}

.totoland-contact-hours-note {
    margin: 16px 0 0;
    color: #667085;
    font-size: 12px;
    line-height: 1.55;
}

/* ==========================================
   WhatsApp Section
========================================== */

.totoland-contact-whatsapp {
    margin: 36px 0;
    padding: 34px;
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            #ECFFF3,
            #FFFFFF
        );
    display: flex;
    align-items: center;
    gap: 26px;
}

.totoland-contact-whatsapp-icon {
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
    border-radius: 28px;
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.totoland-contact-whatsapp-content h2 {
    margin: 10px 0;
    color: #111827;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
}

.totoland-contact-whatsapp-content > p {
    color: #667085;
    line-height: 1.7;
}

.totoland-contact-whatsapp-benefits {
    margin: 18px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.totoland-contact-whatsapp-benefits li {
    flex: 1 1 calc(50% - 20px);
    color: #475467;
    font-size: 13px;
}

.totoland-contact-whatsapp-benefits i {
    margin-right: 7px;
    color: #25D366;
}

/* ==========================================
   FAQ Accordion
========================================== */

.totoland-contact-faq {
    padding: 60px 0;
}

.totoland-contact-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.totoland-contact-faq-item {
    overflow: hidden;
    border: 1px solid #E5E7EB;
    border-radius: 15px;
    background: #FFFFFF;
}

.totoland-contact-faq-item h3 {
    margin: 0;
}

.totoland-contact-faq-toggle {
    width: 100%;
    min-height: 58px;
    padding: 15px 18px;
    border: 0;
    background: #FFFFFF;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.totoland-contact-faq-toggle i {
    color: #00AEEF;
    transition: transform .2s ease;
}

.totoland-contact-faq-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.totoland-contact-faq-panel {
    padding: 0 18px 18px;
}

.totoland-contact-faq-panel p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

/* ==========================================
   CTA Section
========================================== */

.totoland-contact-cta {
    margin: 20px 0 70px;
    padding: 42px;
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            #00AEEF,
            #FF5AA5
        );
    color: #FFFFFF;
    text-align: center;
}

.totoland-contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.totoland-contact-cta .totoland-information-eyebrow {
    background: rgba(255, 255, 255, .18);
    color: #FFFFFF;
}

.totoland-contact-cta h2 {
    margin: 14px 0;
    color: #FFFFFF;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
}

.totoland-contact-cta p {
    margin: 0 auto;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 1.7;
}

.totoland-contact-cta-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ==========================================
   Accessibility
========================================== */

.totoland-contact-page a:focus-visible,
.totoland-contact-page button:focus-visible {
    outline: 3px solid #FFC83D;
    outline-offset: 4px;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 991px) {
    .totoland-contact-hero-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .totoland-contact-hero-visual {
        flex-basis: auto;
    }

    .totoland-contact-method-card {
        flex-basis: calc(50% - 18px);
    }

    .totoland-contact-support-grid {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .totoland-information-container {
        width: min(100% - 24px, 1240px);
    }

    .totoland-contact-hero {
        padding: 46px 0;
    }

    .totoland-contact-hero-inner {
        min-height: 0;
        gap: 28px;
    }

    .totoland-contact-hero-actions,
    .totoland-contact-cta-actions {
        flex-direction: column;
    }

    .totoland-information-button {
        width: 100%;
    }

    .totoland-contact-method-card {
        flex-basis: 100%;
        min-width: 0;
    }

    .totoland-contact-location,
    .totoland-contact-hours,
    .totoland-contact-whatsapp,
    .totoland-contact-cta {
        padding: 22px;
        border-radius: 19px;
    }

    .totoland-contact-whatsapp {
        align-items: flex-start;
        flex-direction: column;
    }

    .totoland-contact-whatsapp-benefits {
        flex-direction: column;
    }

    .totoland-contact-whatsapp-benefits li {
        flex-basis: 100%;
    }

    .totoland-contact-hours-list > div {
        flex-direction: column;
        gap: 4px;
    }

    .totoland-contact-hours-list dd {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .totoland-information-button,
    .totoland-contact-method-card,
    .totoland-contact-faq-toggle i {
        transition: none;
    }
}
/* ==========================================
   Contact Form
========================================== */

.totoland-contact-form-section {
    margin: 42px 0;
    padding: 32px;
    border: 1px solid #E5E7EB;
    border-radius: 22px;
    background: #FFFFFF;
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 34px;
}

.totoland-contact-form-intro {
    flex: 0 1 38%;
    min-width: 0;
}

.totoland-contact-form-intro h2 {
    margin: 12px 0;
    color: #111827;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    line-height: 1.15;
}

.totoland-contact-form-intro > p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

.totoland-contact-form-benefits {
    margin: 20px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.totoland-contact-form-benefits li {
    color: #475467;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    line-height: 1.5;
}

.totoland-contact-form-benefits i {
    margin-top: 3px;
    color: #58C63A;
}

.totoland-contact-form-container {
    flex: 1 1 62%;
    min-width: 0;
    padding: 24px;
    border-radius: 17px;
    background: #F8FAFC;
}

/* WPForms fields */

.totoland-contact-form-container
.wpforms-container {
    margin: 0;
}

.totoland-contact-form-container
.wpforms-field {
    padding-top: 0;
    padding-bottom: 16px;
}

.totoland-contact-form-container
.wpforms-field-label {
    margin-bottom: 7px;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.totoland-contact-form-container
input[type="text"],
.totoland-contact-form-container
input[type="email"],
.totoland-contact-form-container
input[type="tel"],
.totoland-contact-form-container
select,
.totoland-contact-form-container
textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #D9E0E7;
    border-radius: 11px;
    background: #FFFFFF;
    color: #111827;
    font-family: inherit;
    font-size: 16px;
}

.totoland-contact-form-container textarea {
    min-height: 130px;
    resize: vertical;
}

.totoland-contact-form-container
input:focus,
.totoland-contact-form-container
select:focus,
.totoland-contact-form-container
textarea:focus {
    border-color: #00AEEF;
    outline: 3px solid rgba(0, 174, 239, 0.14);
    outline-offset: 0;
}

.totoland-contact-form-container
.wpforms-error {
    color: #B42365;
}

.totoland-contact-form-container
input.wpforms-error,
.totoland-contact-form-container
select.wpforms-error,
.totoland-contact-form-container
textarea.wpforms-error {
    border-color: #FF5AA5;
    background: #FFF5FA;
}

.totoland-contact-form-container
button[type="submit"] {
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    border: 0;
    border-radius: 12px;
    background: #00AEEF;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.totoland-contact-form-container
button[type="submit"]:hover {
    background: #111827;
    transform: translateY(-2px);
}

.totoland-contact-form-admin-notice,
.totoland-contact-form-fallback {
    padding: 22px;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    background: #FFFFFF;
}

.totoland-contact-form-admin-notice strong,
.totoland-contact-form-fallback h3 {
    color: #111827;
    font-weight: 900;
}

.totoland-contact-form-admin-notice p,
.totoland-contact-form-fallback p {
    color: #667085;
    line-height: 1.6;
}

.totoland-contact-form-fallback > i {
    color: #00AEEF;
    font-size: 28px;
}

.totoland-contact-form-fallback a {
    color: #007FAF;
    font-weight: 900;
}

/* Contact-page trust component */

.totoland-contact-page .totoland-trust-badges {
    margin: 38px 0;
}

/* Contact-form responsive layout */

@media (max-width: 900px) {
    .totoland-contact-form-section {
        flex-direction: column;
    }

    .totoland-contact-form-intro,
    .totoland-contact-form-container {
        width: 100%;
        flex-basis: auto;
    }
}

@media (max-width: 767px) {
    .totoland-contact-form-section {
        margin: 30px 0;
        padding: 20px;
        border-radius: 18px;
    }

    .totoland-contact-form-container {
        padding: 17px;
        border-radius: 14px;
    }
}