/* Contact Us page — loaded directly from contactus.blade.php */
.contact-studio {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 110px);
    background: linear-gradient(165deg, #f4f6fa 0%, #fff 42%, #faf8f3 100%);
    font-family: 'Source Sans Pro', sans-serif !important;
}
.contact-studio__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 18%, rgba(228, 173, 64, 0.09) 0%, transparent 42%),
        radial-gradient(circle at 92% 72%, rgba(28, 69, 135, 0.07) 0%, transparent 38%);
}
.contact-studio__decor::before,
.contact-studio__decor::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(28, 69, 135, 0.06);
}
.contact-studio__decor::before {
    width: 320px;
    height: 320px;
    top: -80px;
    inset-inline-end: -100px;
}
.contact-studio__decor::after {
    width: 220px;
    height: 220px;
    bottom: 60px;
    inset-inline-start: -70px;
}
.contact-studio .container {
    position: relative;
    z-index: 1;
}
.contact-studio__alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto 32px;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
}
.contact-studio__alert--success {
    background: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #a5d6a7;
}
.contact-studio__alert--error {
    background: #ffebee;
    color: #b71c1c;
    border: 1px solid #ef9a9a;
}
.contact-studio__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 420px);
    gap: clamp(36px, 5vw, 72px);
    align-items: start;
}
.contact-studio__tag {
    display: block;
    color: #e4ad40 !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.contact-studio__tag-line {
    display: block;
    width: 56px;
    height: 3px;
    background: #e4ad40;
    margin-bottom: 22px;
    border-radius: 2px;
}
.contact-studio__title {
    margin: 0 0 16px !important;
    color: #1c4587 !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: clamp(30px, 3.8vw, 44px) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    max-width: 560px;
}
.contact-studio__title-accent {
    display: block;
    margin-top: 6px;
    color: #1c4587 !important;
}
.contact-studio__lead {
    margin: 0 0 clamp(28px, 4vw, 36px) !important;
    max-width: 520px;
    color: #555 !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
}
.contact-studio__form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-studio__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.contact-studio__field label {
    display: block !important;
    margin-bottom: 8px;
    color: #1c4587 !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.contact-studio__field input,
.contact-studio__field textarea,
.contact-studio__field select {
    display: block !important;
    width: 100% !important;
    min-height: 54px;
    padding: 14px 18px !important;
    border: 1px solid #dfe3ea !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #000 !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    box-shadow: 0 2px 8px rgba(28, 69, 135, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-studio__field textarea {
    min-height: 170px;
    resize: vertical;
}
.contact-studio__field input::placeholder,
.contact-studio__field textarea::placeholder {
    color: #aaa !important;
}
.contact-studio__field input:focus,
.contact-studio__field textarea:focus,
.contact-studio__field select:focus {
    outline: none !important;
    border-color: #e4ad40 !important;
    box-shadow: 0 0 0 4px rgba(228, 173, 64, 0.14) !important;
}
.contact-studio__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231c4587' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    padding-right: 44px !important;
    cursor: pointer;
}
html[dir='rtl'] .contact-studio__field select {
    background-position: left 18px center !important;
    padding-right: 18px !important;
    padding-left: 44px !important;
}
.contact-studio__submit {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    align-self: flex-start;
    margin-top: 4px;
    padding: 16px 36px !important;
    border: none !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #e4ad40 0%, #d49a2a 100%) !important;
    color: #1a1a1a !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(228, 173, 64, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-studio__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(228, 173, 64, 0.42);
}
.contact-studio__submit span,
.contact-studio__submit i {
    color: #1a1a1a !important;
}
.contact-studio__aside {
    position: relative;
}
.contact-studio__panel {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px 32px;
    box-shadow:
        0 4px 6px rgba(28, 69, 135, 0.04),
        0 24px 64px rgba(28, 69, 135, 0.14);
}
.contact-studio__panel-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1c4587 0%, #e4ad40 100%);
}
.contact-studio__panel::after {
    content: '';
    position: absolute;
    bottom: -50px;
    inset-inline-end: -50px;
    width: 180px;
    height: 180px;
    border: 36px solid rgba(28, 69, 135, 0.05);
    border-radius: 50%;
    pointer-events: none;
}
.contact-studio__info {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #eef1f5;
}
.contact-studio__info:first-of-type {
    padding-top: 8px;
}
.contact-studio__info:last-of-type {
    border-bottom: none;
    padding-bottom: 8px;
}
.contact-studio__info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(228, 173, 64, 0.12);
    color: #e4ad40 !important;
    font-size: 24px;
}
.contact-studio__info-icon i {
    display: block !important;
    color: #e4ad40 !important;
}
.contact-studio__info-text h3 {
    margin: 0 0 8px !important;
    color: #1c4587 !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
}
.contact-studio__info-text p {
    margin: 0 0 4px !important;
    color: #555 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}
.contact-studio__info-text p:last-child {
    margin-bottom: 0 !important;
}
.contact-studio__info-text a {
    display: inline !important;
    color: #555 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.contact-studio__info-text a:hover {
    color: #e4ad40 !important;
}
.contact-studio__quick {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eef1f5;
}
.contact-studio__quick-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #1c4587 !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-studio__quick-btn i,
.contact-studio__quick-btn span {
    color: #fff !important;
}
.contact-studio__quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 69, 135, 0.25);
    color: #fff !important;
}
.contact-studio__quick-btn--wa {
    background: #25d366 !important;
}
.contact-studio__quick-btn--wa:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.contact-studio__map-section {
    padding: 0 0 clamp(48px, 6vw, 72px);
    background: #fff;
}
.contact-studio__map-inner {
    width: 100%;
    max-width: 100%;
    line-height: 0;
    overflow: hidden;
    box-shadow: 0 -8px 40px rgba(28, 69, 135, 0.06);
}
.contact-studio__map-inner iframe {
    display: block !important;
    width: 100% !important;
    height: clamp(380px, 48vw, 540px) !important;
    border: 0 !important;
}
@media (max-width: 991.98px) {
    .contact-studio__layout {
        grid-template-columns: 1fr;
    }
    .contact-studio__panel {
        max-width: 520px;
    }
}
@media (max-width: 575.98px) {
    .contact-studio__row {
        grid-template-columns: 1fr;
    }
    .contact-studio__submit {
        width: 100%;
    }
    .contact-studio__quick {
        grid-template-columns: 1fr;
    }
    .contact-studio__panel {
        padding: 28px 22px 24px;
    }
}
