/* contact.css - Toy Universe — Light Modern Contact Page */

* {
    box-sizing: border-box;
}

/* ============================================
   HERO
   ============================================ */
.contact-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 72px 80px;
    margin: 0;
    background: #fefefe;
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    min-height: 400px;
    border-bottom: 1px solid #edf0f4;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(72, 219, 251, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

.contact-hero-content {
    z-index: 1;
    max-width: 520px;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fff0e6, #ffe4cc);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #e0722b;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}

.contact-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: contact-pulse 2s ease-in-out infinite;
}

@keyframes contact-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

.contact-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.contact-hero-title-accent {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: #6b7b8d;
    line-height: 1.75;
    max-width: 440px;
}

/* HERO VISUAL */
.contact-hero-visual {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    z-index: 1;
    justify-self: center;
}

.contact-hero-visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82%;
    height: 82%;
    background: linear-gradient(160deg, #fff0e6, #e8f4fd);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 50%;
}

.contact-hero-visual-ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58%;
    height: 58%;
    background: linear-gradient(160deg, #ffe4cc, #d0ecf9);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 50%;
}

.contact-hero-shape {
    position: absolute;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: contact-float 6s ease-in-out infinite;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-hero-shape:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-hero-shape-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-shape-icon svg {
    width: 100%;
    height: 100%;
}

.contact-hero-shape-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 26px;
    border-radius: 22px;
    background: linear-gradient(145deg, #fff7f0, #ffffff);
    border-color: rgba(255, 107, 107, 0.15);
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.12);
}

.contact-hero-shape-1 .contact-hero-shape-icon {
    width: 52px;
    height: 52px;
}

.contact-hero-shape-2 {
    top: 10%;
    left: 10%;
    animation-delay: 1s;
    background: linear-gradient(145deg, #eefbf9, #ffffff);
    border-color: rgba(46, 196, 182, 0.15);
}

.contact-hero-shape-3 {
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
    background: linear-gradient(145deg, #fffcf0, #ffffff);
    border-color: rgba(253, 203, 110, 0.2);
}

@keyframes contact-float {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-14px);
    }
}

.contact-hero-shape-2,
.contact-hero-shape-3 {
    animation-name: contact-float-small;
}

@keyframes contact-float-small {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   INFO CARDS
   ============================================ */
.contact-info {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 24px;
    font-family: 'Outfit', sans-serif;
}

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

.contact-info-card {
    padding: 32px 24px;
    background: #ffffff;
    border: 1px solid #edf0f4;
    border-radius: 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0 0 20px 20px;
}

.contact-info-card:nth-child(1)::after {
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.contact-info-card:nth-child(2)::after {
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
}

.contact-info-card:nth-child(3)::after {
    background: linear-gradient(90deg, #1565c0, #42a5f5);
}

.contact-info-card:nth-child(4)::after {
    background: linear-gradient(90deg, #7b1fa2, #ba68c8);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 56px rgba(26, 35, 50, 0.08);
}

.contact-info-card:hover::after {
    transform: scaleX(1);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 18px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
}

.contact-info-icon-location {
    background: linear-gradient(145deg, #fff0e6, #ffe4cc);
    color: #e0722b;
}

.contact-info-icon-phone {
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

.contact-info-icon-email {
    background: linear-gradient(145deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.contact-info-icon-chat {
    background: linear-gradient(145deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.12) rotate(-3deg);
}

.contact-info-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #1a1a2e;
}

.contact-info-text {
    color: #6b7b8d;
    font-size: 0.92rem;
    line-height: 1.55;
}

.contact-info-subtext {
    font-size: 0.82rem;
    color: #b0b8c4;
    margin-top: 10px;
    font-weight: 500;
}

/* ============================================
   MAIN SECTION
   ============================================ */
.contact-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 64px;
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 28px;
    font-family: 'Outfit', sans-serif;
}

/* ============================================
   FORM CONTAINER
   ============================================ */
.contact-form-container {
    background: #ffffff;
    padding: 44px;
    border-radius: 24px;
    border: 1px solid #edf0f4;
    box-shadow: 0 12px 40px rgba(26, 35, 50, 0.04);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 36px;
}

.contact-form-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    background: linear-gradient(145deg, #fff0e6, #ffe4cc);
    border-radius: 22px;
    margin-bottom: 20px;
    color: #e0722b;
}

.contact-form-icon svg {
    width: 34px;
    height: 34px;
}

.contact-section-title {
    font-size: 1.85rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.contact-section-subtitle {
    text-align: center;
    color: #8e99a9;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   ALERTS
   ============================================ */
.contact-alert {
    padding: 18px 22px;
    border-radius: 16px;
    margin-bottom: 28px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-alert-success {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.contact-alert-error {
    background: linear-gradient(135deg, #ffebee, #fce4ec);
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.contact-alert-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-alert-content strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-alert-content p {
    margin: 0;
    font-size: 0.92rem;
    opacity: 0.85;
}

/* ============================================
   FORM
   ============================================ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-label {
    font-weight: 650;
    color: #1a1a2e;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f7f8fb;
    border: 1.5px solid #e8ecf1;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    color: #1a1a2e;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 0.98rem;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #b0b8c4;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    border-color: #ee5a24;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(238, 90, 36, 0.08);
}

.contact-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%238e99a9'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 44px;
    cursor: pointer;
}

.contact-form-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* ============================================
   FORM FOOTER
   ============================================ */
.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.contact-form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #8e99a9;
}

.contact-form-note svg {
    flex-shrink: 0;
    color: #b0b8c4;
}

.contact-submit-btn {
    padding: 15px 36px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.02rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.3);
    letter-spacing: 0.01em;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(255, 107, 107, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

/* ============================================
   SIDEBAR
   ============================================ */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-sidebar-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid #edf0f4;
    box-shadow: 0 8px 28px rgba(26, 35, 50, 0.03);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-sidebar-card:hover {
    box-shadow: 0 12px 40px rgba(26, 35, 50, 0.06);
    transform: translateY(-3px);
}

.contact-sidebar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, #fff0e6, #ffe4cc);
    border-radius: 16px;
    margin-bottom: 16px;
    color: #e0722b;
}

.contact-sidebar-icon svg {
    width: 24px;
    height: 24px;
}

.contact-sidebar-title {
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 1.12rem;
    color: #1a1a2e;
}

/* ============================================
   FAQ
   ============================================ */
.contact-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-faq-item {
    padding: 16px 18px;
    background: #f7f8fb;
    border-radius: 14px;
    border: 1px solid #edf0f4;
    transition: all 0.3s ease;
}

.contact-faq-item:hover {
    border-color: #dde2e8;
    box-shadow: 0 2px 8px rgba(26, 35, 50, 0.04);
}

.contact-faq-q {
    font-weight: 650;
    margin-bottom: 6px;
    color: #1a1a2e;
    display: block;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-faq-a {
    color: #8e99a9;
    font-size: 0.88rem;
    line-height: 1.5;
    display: block;
}

/* ============================================
   HOURS
   ============================================ */
.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #f7f8fb;
    border-radius: 14px;
    border: 1px solid #edf0f4;
    overflow: hidden;
}

.contact-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    align-items: center;
    font-size: 0.92rem;
    transition: background 0.2s ease;
}

.contact-hours-item:not(:last-child) {
    border-bottom: 1px solid #edf0f4;
}

.contact-hours-item:hover {
    background: rgba(255, 255, 255, 0.6);
}

.contact-hours-item span:first-child {
    color: #6b7b8d;
    font-weight: 500;
}

.contact-hours-item span:last-child {
    color: #1a1a2e;
    font-weight: 650;
}

.contact-hours-closed span:last-child {
    color: #c62828;
    font-weight: 700;
}

.contact-hours-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #f7f8fb;
    border-radius: 12px;
    font-size: 0.82rem;
    color: #8e99a9;
    margin-top: 14px;
    border: 1px solid #edf0f4;
}

/* ============================================
   SOCIAL
   ============================================ */
.contact-social-text {
    color: #8e99a9;
    margin-bottom: 18px;
    font-size: 0.92rem;
    line-height: 1.55;
}

.contact-social-links {
    display: flex;
    gap: 10px;
}

.contact-social-link {
    width: 46px;
    height: 46px;
    background: #f7f8fb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a6578;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid #edf0f4;
}

.contact-social-facebook:hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.25);
}

.contact-social-instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.25);
}

.contact-social-whatsapp:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

/* ============================================
   TRUST
   ============================================ */
.contact-trust {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 64px;
    font-family: 'Outfit', sans-serif;
}

.contact-trust-grid {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 48px 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.contact-trust-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            #ff6b6b 0%,
            #feca57 25%,
            #48dbfb 50%,
            #ff9ff3 75%,
            #ff6b6b 100%);
    background-size: 200% 100%;
    animation: trustRainbow 6s linear infinite;
    border-radius: 24px 24px 0 0;
}

@keyframes trustRainbow {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-trust-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(72, 219, 251, 0.12);
    border-radius: 50%;
    color: #48dbfb;
    flex-shrink: 0;
}

.contact-trust-text {
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* ============================================
   RESPONSIVE — 1100px
   ============================================ */
@media (max-width: 1100px) {
    .contact-main {
        grid-template-columns: 1fr 340px;
        gap: 24px;
    }

    .contact-form-container {
        padding: 36px;
    }
}

/* ============================================
   RESPONSIVE — 900px
   ============================================ */
@media (max-width: 900px) {
    .contact-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 56px 36px;
        gap: 32px;
        min-height: auto;
    }

    .contact-hero-content {
        max-width: 100%;
    }

    .contact-hero-subtitle {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-visual {
        max-width: 280px;
        justify-self: center;
    }

    .contact-main {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
    .contact-hero {
        padding: 44px 24px;
    }

    .contact-hero-visual {
        max-width: 240px;
    }

    .contact-info {
        padding: 48px 16px;
    }

    .contact-info-grid {
        gap: 12px;
    }

    .contact-main {
        padding: 0 16px 48px;
    }

    .contact-form-container {
        padding: 28px;
        border-radius: 20px;
    }

    .contact-sidebar-card {
        padding: 24px;
        border-radius: 18px;
    }

    .contact-trust {
        padding: 0 16px 48px;
    }

    .contact-trust-grid {
        padding: 36px 24px;
        border-radius: 20px;
        gap: 10px;
    }
}

/* ============================================
   RESPONSIVE — 576px
   ============================================ */
@media (max-width: 576px) {
    .contact-hero {
        padding: 36px 20px;
    }

    .contact-hero-visual {
        max-width: 200px;
    }

    .contact-info {
        padding: 40px 12px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-info-card {
        flex-direction: row;
        text-align: left;
        gap: 18px;
        padding: 24px 22px;
    }

    .contact-info-card::after {
        height: 100%;
        width: 3px;
        top: 0;
        bottom: 0;
        right: auto;
        left: 0;
        border-radius: 20px 0 0 20px;
    }

    .contact-info-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    .contact-main {
        padding: 0 12px 40px;
    }

    .contact-form-container {
        padding: 22px;
        border-radius: 18px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form-note {
        justify-content: center;
    }

    .contact-sidebar-card {
        padding: 22px;
        border-radius: 16px;
    }

    .contact-trust {
        padding: 0 12px 40px;
    }

    .contact-trust-grid {
        flex-direction: column;
        padding: 28px 20px;
        border-radius: 18px;
        gap: 8px;
    }

    .contact-trust-item {
        justify-content: center;
        border-radius: 14px;
    }
}

/* ============================================
   RESPONSIVE — 400px
   ============================================ */
@media (max-width: 400px) {
    .contact-hero {
        padding: 28px 16px;
    }

    .contact-hero-visual {
        max-width: 170px;
    }

    .contact-info-card {
        padding: 20px 18px;
        gap: 14px;
    }

    .contact-info-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .contact-info-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-form-container {
        padding: 18px;
        border-radius: 16px;
    }

    .contact-form-input,
    .contact-form-select,
    .contact-form-textarea {
        padding: 12px 16px;
        border-radius: 12px;
    }

    .contact-submit-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        border-radius: 14px;
    }

    .contact-social-link {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
}

/* ============================================
   TOUCH DEVICES
   ============================================ */
@media (hover: none) {
    .contact-info-card:hover {
        transform: none;
        box-shadow: none;
    }

    .contact-info-card:hover::after {
        transform: scaleX(0);
    }

    .contact-info-card:hover .contact-info-icon {
        transform: none;
    }

    .contact-sidebar-card:hover {
        transform: none;
        box-shadow: 0 8px 28px rgba(26, 35, 50, 0.03);
    }

    .contact-submit-btn:hover {
        transform: none;
        box-shadow: 0 6px 24px rgba(255, 107, 107, 0.3);
    }

    .contact-social-link:hover {
        transform: none;
        box-shadow: none;
    }

    .contact-trust-item:hover {
        transform: none;
        box-shadow: none;
    }

    .contact-info-card:active {
        transform: scale(0.98);
    }

    .contact-submit-btn:active {
        transform: scale(0.98);
    }

    .contact-faq-item:hover {
        box-shadow: none;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.contact-submit-btn:focus-visible {
    outline: 2px solid #48dbfb;
    outline-offset: 3px;
}

.contact-form-input:focus-visible,
.contact-form-select:focus-visible,
.contact-form-textarea:focus-visible {
    outline: none;
}

.contact-social-link:focus-visible {
    outline: 2px solid #48dbfb;
    outline-offset: 3px;
}

.contact-submit-btn:focus:not(:focus-visible),
.contact-social-link:focus:not(:focus-visible) {
    outline: none;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    .contact-hero-shape,
    .contact-hero-badge-dot {
        animation: none;
    }

    .contact-info-card,
    .contact-sidebar-card,
    .contact-submit-btn,
    .contact-social-link,
    .contact-trust-item,
    .contact-form-input,
    .contact-form-select,
    .contact-form-textarea {
        transition: none;
    }
}

/* ============================================
   PRINT
   ============================================ */
@media print {

    .contact-hero-visual,
    .contact-social-links,
    .contact-trust {
        display: none;
    }

    .contact-hero,
    .contact-info,
    .contact-form-container,
    .contact-sidebar-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .contact-hero {
        background: #f8f8f8 !important;
    }

    .contact-hero-title {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
    }
}