/* Contact Page Styles */

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* CONTACT HERO SECTION  */
.contact-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 80px;
    margin: 20px;
    background: linear-gradient(145deg, #e6fff0, #ccffe6);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.1),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 3px 3px 6px rgba(255, 255, 255, 0.7),
        inset -2px -2px 4px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(144, 238, 144, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

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

.contact-hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(145deg, #98fb98, #7cfc00);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #2d5a2d;
    margin-bottom: 20px;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.08),
        -4px -4px 8px rgba(255, 255, 255, 0.9),
        inset 1px 1px 2px rgba(255, 255, 255, 0.8);
    animation: contact-pulse 2s ease-in-out infinite;
}

@keyframes contact-pulse {

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

    50% {
        transform: scale(1.05);
    }
}

.contact-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #4a7a5a;
    line-height: 1.6;
}

.contact-hero-visual {
    position: relative;
    width: 280px;
    height: 280px;
    z-index: 1;
    flex-shrink: 0;
}

.contact-hero-shape {
    position: absolute;
    font-size: 50px;
    padding: 20px;
    background: linear-gradient(145deg, #fff, #f0fff0);
    border-radius: 50%;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8),
        inset -2px -2px 4px rgba(0, 0, 0, 0.03);
    animation: contact-float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-shape-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.contact-hero-shape-2 {
    top: 10%;
    left: 10%;
    animation-delay: 0.5s;
    background: linear-gradient(145deg, #ffe4ec, #ffb6c1);
    width: 70px;
    height: 70px;
    font-size: 36px;
    padding: 14px;
}

.contact-hero-shape-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
    background: linear-gradient(145deg, #fff8e1, #ffe066);
    width: 70px;
    height: 70px;
    font-size: 36px;
    padding: 14px;
}

@keyframes contact-float {

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

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

.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(-15px);
    }
}

/*  SECTION TITLES  */
.contact-section-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.contact-section-subtitle {
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 1.125rem);
    color: #5a7a6a;
    margin-bottom: 40px;
    font-family: 'Outfit', sans-serif;
    padding: 0 20px;
}

/*  CONTACT INFO SECTION  */
.contact-info {
    padding: 60px 40px;
    margin: 20px;
    background: linear-gradient(145deg, #fff5e6, #ffe6cc);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.08),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    padding: 28px 20px;
    background: linear-gradient(145deg, #fff, #fffaf5);
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        14px 14px 28px rgba(0, 0, 0, 0.1),
        -14px -14px 28px rgba(255, 255, 255, 0.95);
}

.contact-info-icon {
    font-size: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(145deg, #fff5e6, #ffe6cc);
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.06),
        -6px -6px 12px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

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

.contact-info-title {
    font-size: clamp(1.1rem, 2vw, 1.375rem);
    font-weight: 600;
    color: #8b5a2b;
    margin-bottom: 14px;
}

.contact-info-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #6b5a4a;
    margin-bottom: 4px;
    line-height: 1.5;
    word-break: break-word;
}

.contact-info-subtext {
    font-size: 13px;
    color: #9a8a7a;
    margin-top: 12px;
    padding: 8px 14px;
    background: linear-gradient(145deg, #fff5e6, #ffe6cc);
    border-radius: 20px;
    display: inline-block;
    box-shadow:
        3px 3px 6px rgba(0, 0, 0, 0.04),
        -3px -3px 6px rgba(255, 255, 255, 0.9);
}

/*  MAIN CONTACT SECTION  */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    padding: 40px;
    margin: 20px;
    font-family: 'Outfit', sans-serif;
}

/*  CONTACT FORM CONTAINER  */
.contact-form-container {
    padding: 48px;
    background: linear-gradient(145deg, #e6f0ff, #cce0ff);
    border-radius: 40px;
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.08),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
}

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

.contact-form-icon {
    font-size: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(145deg, #fff, #e6f0ff);
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
    width: 96px;
    height: 96px;
}

.contact-form-container .contact-section-title {
    color: #2c5282;
}

.contact-form-container .contact-section-subtitle {
    color: #4a6fa5;
    margin-bottom: 0;
}

/*  ALERT MESSAGES  */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 20px;
    margin-bottom: 28px;
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.08),
        -6px -6px 12px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
}

.contact-alert-success {
    background: linear-gradient(145deg, #d4edda, #c3e6cb);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.contact-alert-error {
    background: linear-gradient(145deg, #f8d7da, #f5c6cb);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.contact-alert-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-alert-content {
    flex: 1;
    min-width: 0;
}

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

.contact-alert-success .contact-alert-content strong {
    color: #155724;
}

.contact-alert-error .contact-alert-content strong {
    color: #721c24;
}

.contact-alert-content p {
    font-size: 14px;
    margin: 0;
}

.contact-alert-success .contact-alert-content p {
    color: #1e7e34;
}

.contact-alert-error .contact-alert-content p {
    color: #a71d2a;
}

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

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

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

.contact-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2c5282;
    flex-wrap: wrap;
}

.contact-label-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    padding: 16px 20px;
    border: none;
    border-radius: 18px;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(145deg, #fff, #f0f5ff);
    color: #2c5282;
    box-shadow:
        inset 4px 4px 8px rgba(0, 0, 0, 0.06),
        inset -4px -4px 8px rgba(255, 255, 255, 0.9),
        4px 4px 8px rgba(0, 0, 0, 0.04);
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

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

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    box-shadow:
        inset 4px 4px 8px rgba(0, 0, 0, 0.08),
        inset -4px -4px 8px rgba(255, 255, 255, 0.9),
        0 0 0 4px rgba(66, 153, 225, 0.2);
}

.contact-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232c5282' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
    padding-right: 48px;
}

.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: 12px;
    flex-wrap: wrap;
}

.contact-form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b8ab0;
    flex-wrap: wrap;
}

.contact-note-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(145deg, #6bcb77, #4caf50);
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.12),
        -8px -8px 16px rgba(255, 255, 255, 0.5),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3),
        inset -2px -2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.15),
        -12px -12px 24px rgba(255, 255, 255, 0.6);
}

.contact-submit-btn:active {
    transform: translateY(-2px) scale(1);
}

.contact-btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-submit-btn:hover .contact-btn-icon {
    transform: translateX(4px);
}

/*  SIDEBAR  */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-sidebar-card {
    padding: 26px;
    border-radius: 28px;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.contact-sidebar-card:hover {
    transform: translateY(-6px);
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.1),
        -12px -12px 24px rgba(255, 255, 255, 0.95);
}

.contact-faq-card {
    background: linear-gradient(145deg, #f5e6ff, #e6d4ff);
}

.contact-hours-card {
    background: linear-gradient(145deg, #fff5e6, #ffe6cc);
}

.contact-social-card {
    background: linear-gradient(145deg, #e6f7ff, #cceeff);
}

.contact-sidebar-icon {
    font-size: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(145deg, #fff, #f5f0ff);
    border-radius: 50%;
    margin-bottom: 14px;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.06),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.contact-sidebar-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #5a3d7a;
    margin-bottom: 18px;
}

.contact-hours-card .contact-sidebar-title {
    color: #8b5a2b;
}

.contact-social-card .contact-sidebar-title {
    color: #1565c0;
}

/*  FAQ LIST  */
.contact-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-faq-item {
    padding: 14px;
    background: linear-gradient(145deg, #fff, #faf5ff);
    border-radius: 14px;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.04),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.contact-faq-q {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #5a3d7a;
    margin-bottom: 6px;
}

.contact-faq-a {
    display: block;
    font-size: 12px;
    color: #7a6b8a;
    line-height: 1.5;
}

.contact-sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #7c5bad;
    text-decoration: none;
    padding: 10px 18px;
    background: linear-gradient(145deg, #fff, #f5e6ff);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.06),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.contact-sidebar-link:hover {
    transform: translateX(6px);
    background: linear-gradient(145deg, #7c5bad, #6b4c9a);
    color: white;
}

/*  HOURS LIST  */
.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: linear-gradient(145deg, #fff, #fffaf5);
    border-radius: 12px;
    font-size: 13px;
    box-shadow:
        3px 3px 6px rgba(0, 0, 0, 0.04),
        -3px -3px 6px rgba(255, 255, 255, 0.9);
    gap: 10px;
    flex-wrap: wrap;
}

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

.contact-hours-item span:last-child {
    color: #8b5a2b;
    font-weight: 600;
    text-align: right;
}

.contact-hours-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #9a8a7a;
    padding: 10px;
    background: linear-gradient(145deg, #fff5e6, #ffe6cc);
    border-radius: 12px;
    box-shadow:
        3px 3px 6px rgba(0, 0, 0, 0.04),
        -3px -3px 6px rgba(255, 255, 255, 0.9);
}

/*  SOCIAL LINKS  */
.contact-social-text {
    font-size: 14px;
    color: #4a7a9a;
    margin-bottom: 18px;
    line-height: 1.5;
}

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

.contact-social-link {
    color: #4a7a9a;
    padding: 12px;
    background: linear-gradient(145deg, #fff, #e6f7ff);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.06),
        -4px -4px 8px rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
}

.contact-social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.contact-social-link:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.95);
}

.contact-social-link:hover svg {
    transform: scale(1.1);
}

.facebook-link:hover {
    color: #1877f2;
}

.instagram-link:hover {
    color: #e4405f;
}

.whatsapp-link:hover {
    color: #25d366;
}

/*  TRUST SECTION  */
.contact-trust {
    padding: 48px 40px;
    margin: 20px;
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    border-radius: 32px;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.06),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8);
    font-family: 'Outfit', sans-serif;
}

.contact-trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(145deg, #fff, #f5fff5);
    border-radius: 20px;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.05),
        -4px -4px 8px rgba(255, 255, 255, 0.9),
        inset 1px 1px 2px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-trust-item:hover {
    transform: translateY(-4px);
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.07),
        -8px -8px 16px rgba(255, 255, 255, 0.95);
}

.contact-trust-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-trust-text {
    font-size: 15px;
    font-weight: 600;
    color: #2d5a3d;
    white-space: nowrap;
}

/*  RESPONSIVE DESIGN  */

/* Large Desktop */
@media (max-width: 1280px) {
    .contact-main {
        grid-template-columns: 1fr 340px;
        gap: 32px;
        padding: 32px;
    }

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

/* Desktop to Tablet */
@media (max-width: 1200px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        position: static;
    }

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

/* Tablet Landscape */
@media (max-width: 1024px) {
    .contact-hero {
        flex-direction: column;
        text-align: center;
        padding: 48px 36px;
        gap: 32px;
    }

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

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

    .contact-hero-shape-1 {
        width: 100px;
        height: 100px;
        font-size: 56px;
    }

    .contact-hero-shape-2,
    .contact-hero-shape-3 {
        width: 60px;
        height: 60px;
        font-size: 30px;
        padding: 12px;
    }

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

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

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

    .contact-sidebar-card:last-child {
        grid-column: 1 / -1;
    }

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

/* Tablet Portrait */
@media (max-width: 768px) {
    .contact-hero {
        padding: 36px 24px;
        margin: 12px;
        border-radius: 28px;
    }

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

    .contact-hero-shape-1 {
        width: 90px;
        height: 90px;
        font-size: 48px;
    }

    .contact-hero-shape-2,
    .contact-hero-shape-3 {
        width: 52px;
        height: 52px;
        font-size: 26px;
        padding: 10px;
    }

    .contact-info,
    .contact-main,
    .contact-trust {
        padding: 36px 20px;
        margin: 12px;
        border-radius: 28px;
    }

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

    .contact-info-card {
        padding: 24px 18px;
    }

    .contact-info-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
        padding: 14px;
    }

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

    .contact-form-icon {
        width: 80px;
        height: 80px;
        font-size: 44px;
        padding: 14px;
    }

    .contact-form-header {
        margin-bottom: 28px;
    }

    .contact-form {
        gap: 20px;
    }

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

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

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

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

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

    .contact-sidebar {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-sidebar-card {
        padding: 24px 20px;
    }

    .contact-sidebar-card:last-child {
        grid-column: auto;
    }

    .contact-sidebar-icon {
        width: 56px;
        height: 56px;
        font-size: 30px;
        padding: 10px;
    }

    .contact-social-links {
        justify-content: flex-start;
    }

    .contact-social-link {
        width: 48px;
        height: 48px;
        font-size: 22px;
        padding: 10px;
    }

    .contact-trust-grid {
        gap: 16px;
    }

    .contact-trust-item {
        padding: 14px 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .contact-hero {
        padding: 28px 16px;
        margin: 8px;
        border-radius: 24px;
    }

    .contact-hero-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

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

    .contact-hero-shape-1 {
        width: 80px;
        height: 80px;
        font-size: 42px;
    }

    .contact-hero-shape-2,
    .contact-hero-shape-3 {
        width: 46px;
        height: 46px;
        font-size: 22px;
        padding: 8px;
    }

    .contact-info,
    .contact-main,
    .contact-trust {
        padding: 28px 16px;
        margin: 8px;
        border-radius: 24px;
    }

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

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

    .contact-info-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
        padding: 12px;
        margin-bottom: 14px;
    }

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

    .contact-form-icon {
        width: 72px;
        height: 72px;
        font-size: 38px;
        padding: 12px;
    }

    .contact-form-label {
        font-size: 14px;
    }

    .contact-form-input,
    .contact-form-select,
    .contact-form-textarea {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 14px;
    }

    .contact-form-textarea {
        min-height: 120px;
    }

    .contact-form-note {
        font-size: 12px;
    }

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

    .contact-btn-icon {
        font-size: 18px;
    }

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

    .contact-sidebar-icon {
        width: 52px;
        height: 52px;
        font-size: 26px;
        margin-bottom: 12px;
    }

    .contact-sidebar-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .contact-faq-list {
        gap: 12px;
        margin-bottom: 14px;
    }

    .contact-faq-item {
        padding: 12px;
        border-radius: 12px;
    }

    .contact-faq-q {
        font-size: 12px;
    }

    .contact-faq-a {
        font-size: 11px;
    }

    .contact-hours-item {
        padding: 10px 12px;
        font-size: 12px;
    }

    .contact-social-link {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .contact-trust-grid {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .contact-trust-item {
        justify-content: center;
        padding: 14px 18px;
    }

    .contact-trust-icon {
        font-size: 22px;
    }

    .contact-trust-text {
        font-size: 14px;
    }

    .contact-alert {
        padding: 16px;
        gap: 12px;
        border-radius: 16px;
    }

    .contact-alert-icon {
        font-size: 24px;
    }

    .contact-alert-content strong {
        font-size: 14px;
    }

    .contact-alert-content p {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .contact-hero {
        padding: 24px 12px;
        margin: 6px;
    }

    .contact-hero-visual {
        width: 150px;
        height: 150px;
    }

    .contact-hero-shape-1 {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }

    .contact-hero-shape-2,
    .contact-hero-shape-3 {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .contact-info,
    .contact-main,
    .contact-trust {
        padding: 24px 12px;
        margin: 6px;
    }

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

    .contact-info-icon {
        width: 58px;
        height: 58px;
        font-size: 28px;
    }

    .contact-form-container {
        padding: 20px 12px;
    }

    .contact-form-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }

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

    .contact-submit-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .contact-sidebar-card {
        padding: 18px 14px;
    }

    .contact-sidebar-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .contact-social-link {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .contact-sidebar-link {
        padding: 8px 16px;
        font-size: 13px;
    }

    .contact-trust-item {
        padding: 12px 16px;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .contact-hero {
        padding: 20px 10px;
        margin: 4px;
        border-radius: 20px;
    }

    .contact-hero-visual {
        width: 130px;
        height: 130px;
    }

    .contact-hero-shape-1 {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .contact-hero-shape-2,
    .contact-hero-shape-3 {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .contact-info,
    .contact-main,
    .contact-trust {
        padding: 20px 10px;
        margin: 4px;
        border-radius: 20px;
    }

    .contact-info-icon {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

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

    .contact-form-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .contact-form-input,
    .contact-form-select,
    .contact-form-textarea {
        padding: 12px;
        font-size: 14px;
    }

    .contact-sidebar-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .contact-social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/*  TOUCH DEVICE ADJUSTMENTS  */
@media (hover: none) {

    .contact-info-card:hover,
    .contact-sidebar-card:hover,
    .contact-trust-item:hover,
    .contact-social-link:hover {
        transform: none;
    }

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

    .contact-submit-btn:hover {
        transform: none;
    }

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

    .contact-submit-btn:hover .contact-btn-icon {
        transform: none;
    }

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

    .contact-sidebar-link:hover {
        transform: none;
    }

    .contact-sidebar-link:active {
        transform: scale(0.97);
        background: linear-gradient(145deg, #7c5bad, #6b4c9a);
        color: white;
    }

    .contact-social-link:active {
        transform: scale(0.95);
    }
}

/*  LANDSCAPE MOBILE  */
@media (max-width: 768px) and (orientation: landscape) {
    .contact-hero {
        flex-direction: row;
        text-align: left;
        padding: 32px;
        gap: 32px;
    }

    .contact-hero-visual {
        width: 180px;
        height: 180px;
    }

    .contact-hero-shape-1 {
        width: 80px;
        height: 80px;
        font-size: 42px;
    }

    .contact-hero-shape-2,
    .contact-hero-shape-3 {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

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

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

    .contact-info-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

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

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

    .contact-sidebar-card:last-child {
        grid-column: auto;
    }

    .contact-trust-grid {
        flex-direction: row;
    }
}

/*  ACCESSIBILITY  */
.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus,
.contact-submit-btn:focus,
.contact-sidebar-link:focus,
.contact-social-link:focus {
    outline: 3px solid #2c5282;
    outline-offset: 2px;
}

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

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

    .contact-info-card,
    .contact-sidebar-card,
    .contact-trust-item,
    .contact-submit-btn,
    .contact-social-link,
    .contact-sidebar-link,
    .contact-btn-icon {
        transition: none;
    }
}

/*  PRINT STYLES  */
@media print {

    .contact-hero,
    .contact-info,
    .contact-main,
    .contact-trust {
        box-shadow: none;
        border: 1px solid #ccc;
        margin: 10px 0;
        page-break-inside: avoid;
    }

    .contact-hero-visual {
        display: none;
    }

    .contact-sidebar {
        display: none;
    }

    .contact-submit-btn {
        display: none;
    }

    .contact-social-links {
        display: none;
    }
}