/* =========================================================
   AquaShop İletişim Sayfası
========================================================= */

.aq-contact-hero {
    padding: 30px 0 24px;
    background: #ffffff;
}

.aq-contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7a8491;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.aq-contact-breadcrumb::-webkit-scrollbar {
    display: none;
}

.aq-contact-breadcrumb a:hover {
    color: var(--aq-blue-dark);
}

.aq-contact-breadcrumb i {
    font-size: 11px;
    color: #a2acb8;
}

.aq-contact-hero-box {
    min-height: 172px;
    padding: 26px 28px;
    border-radius: 24px;
    background:
            radial-gradient(circle at right center, rgba(7, 152, 189, 0.13), transparent 34%),
            linear-gradient(90deg, rgba(7, 152, 189, 0.065), rgba(255, 255, 255, 0.96)),
            #f8fbfc;
    border: 1px solid #e5edf3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.aq-contact-hero-box > div:first-child {
    max-width: 760px;
}

.aq-contact-hero-box span {
    color: var(--aq-blue-dark);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.aq-contact-hero-box h1 {
    margin: 8px 0 0;
    color: #111827;
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 780;
    line-height: 1.1;
    letter-spacing: -0.8px;
}

.aq-contact-hero-box p {
    max-width: 660px;
    margin: 10px 0 0;
    color: #667386;
    font-size: 13.5px;
    line-height: 1.62;
}

.aq-contact-hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.aq-contact-hero-actions a {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.aq-contact-hero-actions a:first-child {
    background: #111827;
    color: #ffffff;
}

.aq-contact-hero-actions a:last-child {
    background: #25d366;
    color: #ffffff;
}

/* Bilgi kartları */

.aq-contact-page {
    padding: 28px 0 50px;
    background: #ffffff;
}

.aq-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.aq-contact-info-card {
    min-height: 112px;
    padding: 17px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.aq-contact-info-card > span {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: #eef9fc;
    color: #056f8d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.aq-contact-info-card strong {
    display: block;
    color: #111827;
    font-size: 13.5px;
    font-weight: 850;
}

.aq-contact-info-card p {
    margin: 5px 0 0;
    color: #667386;
    font-size: 12.5px;
    line-height: 1.45;
    font-weight: 650;
}

.aq-contact-info-card a:hover {
    color: var(--aq-blue-dark);
}

/* Form layout */

.aq-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: flex-start;
}

.aq-contact-form-card,
.aq-contact-support-card,
.aq-contact-mini-card {
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.045);
}

.aq-contact-form-card {
    padding: 26px;
}

.aq-contact-form-head span {
    color: var(--aq-blue-dark);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.18px;
    text-transform: uppercase;
}

.aq-contact-form-head h2 {
    margin: 7px 0 0;
    color: #111827;
    font-size: 30px;
    font-weight: 780;
    line-height: 1.12;
    letter-spacing: -0.6px;
}

.aq-contact-form-head p {
    margin: 8px 0 0;
    color: #667386;
    font-size: 13px;
    line-height: 1.6;
}

.aq-contact-form {
    margin-top: 22px;
}

.aq-contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-bottom: 13px;
}

.aq-contact-form label {
    display: grid;
    gap: 7px;
}

.aq-contact-form label span {
    color: #17202b;
    font-size: 12px;
    font-weight: 850;
}

.aq-contact-form input,
.aq-contact-form select,
.aq-contact-form textarea {
    width: 100%;
    border: 1px solid #dfe8ef;
    border-radius: 15px;
    background: #ffffff;
    color: #111827;
    outline: none;
    font-size: 13px;
    font-weight: 600;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.aq-contact-form input,
.aq-contact-form select {
    height: 45px;
    padding: 0 13px;
}

.aq-contact-form select {
    appearance: none;
    background-image:
            linear-gradient(45deg, transparent 50%, #667386 50%),
            linear-gradient(135deg, #667386 50%, transparent 50%);
    background-position:
            calc(100% - 17px) 19px,
            calc(100% - 12px) 19px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.aq-contact-form textarea {
    min-height: 132px;
    resize: vertical;
    padding: 13px;
    line-height: 1.55;
}

.aq-contact-form input:focus,
.aq-contact-form select:focus,
.aq-contact-form textarea:focus {
    border-color: rgba(7, 152, 189, 0.55);
    box-shadow: 0 0 0 4px rgba(7, 152, 189, 0.09);
}

.aq-contact-message {
    margin-bottom: 13px;
}

.aq-contact-policy {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px !important;
    align-items: flex-start;
    margin-top: 4px;
}

.aq-contact-policy input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--aq-blue);
}

.aq-contact-policy span {
    color: #667386 !important;
    font-size: 11.7px !important;
    font-weight: 650 !important;
    line-height: 1.55;
}

.aq-contact-submit {
    margin-top: 17px;
    min-height: 46px;
    padding: 0 19px;
    border: 0;
    border-radius: 15px;
    background: var(--aq-blue);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 12px 24px rgba(7, 152, 189, 0.18);
}

.aq-contact-submit:hover {
    background: #056f8d;
}

.aq-contact-success {
    display: none;
    margin-top: 14px;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 14px;
    background: #eefbf3;
    border: 1px solid #ccefd9;
    color: #16803a;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 800;
}

.aq-contact-success.is-visible {
    display: flex;
}

/* Sağ destek */

.aq-contact-side {
    display: grid;
    gap: 13px;
}

.aq-contact-support-card {
    padding: 22px;
}

.aq-contact-support-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #eef9fc;
    color: #056f8d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.aq-contact-support-card h3 {
    margin: 16px 0 0;
    color: #111827;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.aq-contact-support-card p {
    margin: 9px 0 0;
    color: #667386;
    font-size: 12.8px;
    line-height: 1.65;
}

.aq-contact-support-card a {
    min-height: 42px;
    margin-top: 16px;
    padding: 0 15px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 850;
}

.aq-contact-mini-card {
    padding: 15px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
}

.aq-contact-mini-card i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #f8fbfc;
    color: #056f8d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.aq-contact-mini-card strong {
    display: block;
    color: #111827;
    font-size: 13px;
    font-weight: 850;
}

.aq-contact-mini-card span {
    display: block;
    margin-top: 4px;
    color: #667386;
    font-size: 11.8px;
    line-height: 1.45;
}

/* Harita */

.aq-contact-map-section {
    padding: 50px 0;
    background: #f8fbfc;
    border-top: 1px solid #eef3f6;
    border-bottom: 1px solid #eef3f6;
}

.aq-map-card {
    position: relative;
    min-height: 430px;
    border-radius: 26px;
    border: 1px solid #dfe8ef;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
    background: #ffffff;
}

.aq-map-card iframe {
    width: 100%;
    height: 430px;
    border: 0;
    display: block;
    filter: saturate(0.92);
}

.aq-map-overlay {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: min(310px, calc(100% - 44px));
    padding: 17px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e5edf3;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.13);
    backdrop-filter: blur(12px);
}

.aq-map-overlay strong {
    display: block;
    color: #111827;
    font-size: 18px;
    font-weight: 850;
}

.aq-map-overlay span {
    display: block;
    margin-top: 5px;
    color: #667386;
    font-size: 12px;
    font-weight: 700;
}

.aq-map-overlay a {
    min-height: 36px;
    margin-top: 12px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--aq-blue);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-weight: 850;
}

/* SSS */

.aq-contact-faq {
    padding: 50px 0 64px;
    background: #ffffff;
}

.aq-contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.aq-contact-faq-grid article {
    min-height: 190px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.045);
}

.aq-contact-faq-grid i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #eef9fc;
    color: #056f8d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.aq-contact-faq-grid h3 {
    margin: 16px 0 0;
    color: #111827;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.35;
    letter-spacing: -0.25px;
}

.aq-contact-faq-grid p {
    margin: 9px 0 0;
    color: #667386;
    font-size: 12.8px;
    line-height: 1.62;
}

/* Responsive */

@media (max-width: 1180px) {
    .aq-contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aq-contact-layout {
        grid-template-columns: 1fr;
    }

    .aq-contact-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aq-contact-support-card {
        grid-row: span 3;
    }
}

@media (max-width: 991px) {
    .aq-contact-hero-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .aq-contact-hero {
        padding: 22px 0 18px;
    }

    .aq-contact-hero-box {
        min-height: auto;
        padding: 20px;
        border-radius: 20px;
    }

    .aq-contact-hero-box h1 {
        font-size: 26px;
        font-weight: 740;
    }

    .aq-contact-hero-box p {
        font-size: 12.8px;
    }

    .aq-contact-hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .aq-contact-hero-actions a {
        width: 100%;
        justify-content: center;
    }

    .aq-contact-info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .aq-contact-info-card {
        min-height: 92px;
        border-radius: 19px;
    }

    .aq-contact-form-card {
        padding: 19px;
        border-radius: 20px;
    }

    .aq-contact-form-head h2 {
        font-size: 24px;
    }

    .aq-contact-form-grid {
        grid-template-columns: 1fr;
    }

    .aq-contact-side {
        grid-template-columns: 1fr;
    }

    .aq-contact-support-card,
    .aq-contact-mini-card {
        border-radius: 20px;
    }

    .aq-map-card {
        min-height: 360px;
        border-radius: 20px;
    }

    .aq-map-card iframe {
        height: 360px;
    }

    .aq-map-overlay {
        left: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
        border-radius: 17px;
    }

    .aq-contact-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .aq-contact-page {
        padding-top: 22px;
    }

    .aq-contact-info-card {
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 14px;
    }

    .aq-contact-info-card > span {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 19px;
    }

    .aq-contact-submit {
        width: 100%;
    }
}

/* =========================================================
   Laptop Onarım - İletişim Sayfası Dengeli Yan Boşluk
========================================================= */

.aq-contact-hero .aq-container,
.aq-contact-page .aq-container,
.aq-contact-map-section .aq-container,
.aq-contact-faq .aq-container {
    width: 100%;
    max-width: 1360px;
    padding-left: 34px;
    padding-right: 34px;
    margin-left: auto;
    margin-right: auto;
}

/* Form ve sağ destek alanı geniş kalsın */
.aq-contact-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, .75fr);
    gap: 32px;
}

/* Hero kutusu geniş ama içeriden ferah */
.aq-contact-hero-box {
    padding: 38px 42px;
    border-radius: 30px;
}

/* Üst bilgi kartları çok sıkışmasın */
.aq-contact-info-grid {
    gap: 20px;
    margin-bottom: 34px;
}

/* Büyük ekranlarda çok kenara yapışmasın ama daralmasın */
@media (min-width: 1500px) {
    .aq-contact-hero .aq-container,
    .aq-contact-page .aq-container,
    .aq-contact-map-section .aq-container,
    .aq-contact-faq .aq-container {
        max-width: 1440px;
        padding-left: 44px;
        padding-right: 44px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .aq-contact-hero .aq-container,
    .aq-contact-page .aq-container,
    .aq-contact-map-section .aq-container,
    .aq-contact-faq .aq-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .aq-contact-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .aq-contact-hero-box {
        padding: 30px;
    }
}

/* Mobil */
@media (max-width: 576px) {
    .aq-contact-hero .aq-container,
    .aq-contact-page .aq-container,
    .aq-contact-map-section .aq-container,
    .aq-contact-faq .aq-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .aq-contact-hero-box {
        padding: 22px;
        border-radius: 22px;
    }
}
