﻿/* ============================================
   CONTACT PAGE — LIGHT THEME
   Primary: rgb(0, 160, 232) = #00A0E8
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */

.contact-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 160deg, #edf4ff 0%, #e0eefa 30%, #d2e8fc 60%, #c5e0fa 100% );
    overflow: hidden;
    margin-top: -76px;
    padding-top: 76px;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 35%, rgba(0, 160, 232, 0.07) 0%, transparent 60%), radial-gradient(ellipse at 75% 65%, rgba(0, 100, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Floating shapes */
.contact-hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.contact-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 160, 232, 0.08) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    animation: contactShapeFloat 8s ease-in-out infinite;
}

.contact-shape-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 130, 200, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -40px;
    animation: contactShapeFloat 10s ease-in-out infinite reverse;
}

.contact-shape-3 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 160, 232, 0.05) 0%, transparent 70%);
    top: 40%;
    left: 55%;
    animation: contactShapeFloat 12s ease-in-out infinite;
}

.contact-shape-4 {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(0, 100, 170, 0.04) 0%, transparent 70%);
    top: 20%;
    left: 8%;
    animation: contactShapeFloat 9s ease-in-out infinite reverse;
}

@keyframes contactShapeFloat {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

/* Hero Badge */
.contact-hero-badge {
    display: inline-block;
    background: rgba(0, 160, 232, 0.1);
    border: 1px solid rgba(0, 160, 232, 0.22);
    color: rgb(0, 120, 190);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    animation: contactFadeInDown 0.7s ease;
}

/* Hero Title */
.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2b42;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    animation: contactFadeInUp 0.7s ease 0.15s both;
}

/* Hero Description */
.contact-hero-description {
    font-size: 1.1rem;
    color: #4a5e78;
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: contactFadeInUp 0.7s ease 0.3s both;
}

/* Hero CTA */
.contact-hero-cta {
    animation: contactFadeInUp 0.7s ease 0.45s both;
}

.btn-contact-primary {
    background: linear-gradient(135deg, rgb(0, 160, 232), rgb(0, 130, 200));
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.02rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 160, 232, 0.28);
}

    .btn-contact-primary:hover {
        background: linear-gradient(135deg, rgb(0, 130, 200), rgb(0, 100, 170));
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(0, 160, 232, 0.38);
    }

/* Shared animations */
@keyframes contactFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactFadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */

.contact-badge {
    display: inline-block;
    background: rgba(0, 160, 232, 0.08);
    border: 1px solid rgba(0, 160, 232, 0.18);
    color: rgb(0, 120, 190);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.38rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a2b42;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.contact-section-subtitle {
    font-size: 1.02rem;
    color: #5a6e84;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   CONTACT METHODS SECTION
   ============================================ */

.contact-methods-section {
    background: #ffffff;
    padding: 6rem 0;
}

.method-card {
    background: #f9fbfd;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: center;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .method-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, rgb(0, 160, 232), #5ac8fa);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .method-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        border-color: #dce4ec;
    }

        .method-card:hover::after {
            transform: scaleX(1);
        }

.method-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.25rem;
    transition: transform 0.3s ease;
}

.method-card:hover .method-icon {
    transform: scale(1.1);
}

.method-icon-blue {
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
}

.method-icon-purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.method-icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.method-icon-orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.method-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 0.5rem;
}

.method-text {
    font-size: 0.92rem;
    color: #5a6e84;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.method-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgb(0, 160, 232);
    transition: all 0.25s ease;
    gap: 0.4rem;
}

    .method-link:hover {
        color: rgb(0, 130, 200);
        transform: translateX(3px);
    }

    .method-link i {
        font-size: 0.8rem;
        transition: transform 0.25s ease;
    }

    .method-link:hover i {
        transform: translateX(3px);
    }

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-form-section {
    background: linear-gradient(160deg, #f5f9ff 0%, #eaf2fc 50%, #e2edfa 100%);
    padding: 6rem 0;
}

.contact-form-wrapper {
    position: relative;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .contact-form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, rgb(0, 160, 232), #5ac8fa, rgb(0, 130, 200));
        border-radius: 20px 20px 0 0;
    }

    .contact-form-card:hover {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    }

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #eef2f7;
}

.contact-form-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-form-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2b42;
    margin: 0;
}

.contact-form-header p {
    font-size: 0.88rem;
    color: #5a6e84;
    margin: 0.15rem 0 0;
}

/* Form Controls */
.contact-form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: #1a2b42;
    margin-bottom: 0.4rem;
}

.contact-form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background-color: #f9fbfd;
    color: #1a2b42;
}

    .contact-form-control:focus {
        border-color: rgb(0, 160, 232);
        box-shadow: 0 0 0 4px rgba(0, 160, 232, 0.1);
        background-color: #ffffff;
    }

    .contact-form-control::placeholder {
        color: #a8b5c5;
    }

textarea.contact-form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background-color: #f9fbfd;
    color: #1a2b42;
    cursor: pointer;
}

    .contact-form-select:focus {
        border-color: rgb(0, 160, 232);
        box-shadow: 0 0 0 4px rgba(0, 160, 232, 0.1);
        background-color: #ffffff;
    }

/* Submit Button */
.btn-contact-submit {
    background: linear-gradient(135deg, rgb(0, 160, 232), rgb(0, 130, 200));
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-contact-submit:hover {
        background: linear-gradient(135deg, rgb(0, 130, 200), rgb(0, 100, 170));
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 160, 232, 0.3);
    }

    .btn-contact-submit:active {
        transform: translateY(0);
        box-shadow: none;
    }

    .btn-contact-submit .btn-loading {
        display: none;
    }

    .btn-contact-submit.is-loading .btn-text {
        display: none;
    }

    .btn-contact-submit.is-loading .btn-loading {
        display: inline-flex !important;
        align-items: center;
    }

/* Contact Info Sidebar */
.contact-sidebar-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 160, 232, 0.12);
}

    .contact-sidebar-header i {
        font-size: 1.5rem;
        color: rgb(0, 160, 232);
    }

    .contact-sidebar-header h5 {
        font-weight: 700;
        margin: 0;
        color: #1a2b42;
    }

.contact-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.contact-sidebar-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.contact-sidebar-icon-blue {
    background: rgba(0, 160, 232, 0.08);
    color: rgb(0, 160, 232);
}

.contact-sidebar-icon-green {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.contact-sidebar-icon-purple {
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
}

.contact-sidebar-icon-orange {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.contact-sidebar-item:hover .contact-sidebar-icon {
    transform: scale(1.05);
}

.contact-sidebar-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 0.2rem;
}

.contact-sidebar-item p {
    font-size: 0.9rem;
    color: #5a6e84;
    margin: 0;
    line-height: 1.5;
}

.contact-sidebar-item a {
    color: rgb(0, 160, 232);
    font-weight: 500;
    transition: color 0.2s ease;
}

    .contact-sidebar-item a:hover {
        color: rgb(0, 130, 200);
    }

.contact-sidebar-divider {
    height: 1px;
    background: #e8edf3;
    margin: 1rem 0;
}

/* Social Links */
.contact-sidebar-social {
    margin-top: auto;
}

.contact-social-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5a6e84;
    margin-bottom: 0.75rem;
}

.contact-social-links {
    display: flex;
    gap: 0.65rem;
}

.contact-social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(0, 160, 232, 0.06);
    border: 1px solid rgba(0, 160, 232, 0.12);
    color: rgb(0, 160, 232);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.25s ease;
}

    .contact-social-link:hover {
        background: rgb(0, 160, 232);
        border-color: rgb(0, 160, 232);
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 160, 232, 0.25);
    }

/* ============================================
   MAP / LOCATION SECTION
   ============================================ */

.contact-location-section {
    background: #ffffff;
    padding: 6rem 0;
}

.location-card {
    background: #f9fbfd;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

    .location-card:hover {
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
        transform: translateY(-4px);
    }

.location-map-wrapper {
    position: relative;
    height: 300px;
    background: #eef3f8;
    overflow: hidden;
}

    .location-map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.location-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    background: linear-gradient(135deg, #eef3f8, #e5eef6);
    color: #5a6e84;
}

    .location-map-placeholder i {
        font-size: 2.5rem;
        color: rgb(0, 160, 232);
        opacity: 0.6;
    }

    .location-map-placeholder span {
        font-size: 0.9rem;
        font-weight: 600;
    }

.location-info {
    padding: 2rem;
}

.location-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

    .location-info-row:last-child {
        margin-bottom: 0;
    }

.location-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: rgba(0, 160, 232, 0.08);
    color: rgb(0, 160, 232);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.location-info-row:hover .location-info-icon {
    transform: scale(1.05);
}

.location-info-row strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 0.15rem;
}

.location-info-row p {
    font-size: 0.9rem;
    color: #5a6e84;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   CTA SECTION
   ============================================ */

.contact-cta-section {
    background: linear-gradient(160deg, #f5f9ff 0%, #eaf2fc 50%, #e2edfa 100%);
    padding: 6rem 0;
}

.contact-cta-wrapper {
    position: relative;
}

.contact-cta-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .contact-cta-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, rgb(0, 160, 232), #5ac8fa, rgb(0, 130, 200));
    }

    .contact-cta-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
        border-color: #d0dae6;
    }

.contact-cta-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.contact-cta-card:hover .contact-cta-icon {
    transform: scale(1.1);
}

.contact-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 0.75rem;
}

.contact-cta-text {
    font-size: 1rem;
    color: #5a6e84;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.contact-cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact-cta {
    background: linear-gradient(135deg, rgb(0, 160, 232), rgb(0, 130, 200));
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 160, 232, 0.25);
}

    .btn-contact-cta:hover {
        background: linear-gradient(135deg, rgb(0, 130, 200), rgb(0, 100, 170));
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 160, 232, 0.35);
    }

.btn-contact-outline {
    background: transparent;
    color: rgb(0, 160, 232);
    border: 2px solid rgba(0, 160, 232, 0.3);
    padding: 0.7rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-contact-outline:hover {
        background: rgba(0, 160, 232, 0.08);
        border-color: rgb(0, 160, 232);
        color: rgb(0, 130, 200);
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(0, 160, 232, 0.15);
    }

/* ============================================
   ALERT STYLES
   ============================================ */

.contact-alert {
    border-radius: 12px;
    border: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-alert-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #059669;
}

.contact-alert-danger {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199.98px) {
    .contact-hero-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 991.98px) {
    .contact-hero {
        margin-top: -62px;
        padding-top: 62px;
        min-height: 60vh;
    }

    .contact-hero-title {
        font-size: 2.2rem;
    }

    .contact-methods-section,
    .contact-form-section,
    .contact-location-section,
    .contact-cta-section {
        padding: 4rem 0;
    }

    .contact-section-title {
        font-size: 1.8rem;
    }

    .location-map-wrapper {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero-title {
        font-size: 1.85rem;
    }

    .contact-hero-description {
        font-size: 0.98rem;
        padding: 0 0.5rem;
    }

    .contact-hero-content {
        padding: 2.5rem 0;
    }

    .contact-section-title {
        font-size: 1.55rem;
    }

    .method-card {
        padding: 1.5rem 1.25rem;
    }

    .contact-form-card {
        padding: 1.75rem;
        border-radius: 16px;
    }

    .contact-sidebar-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-cta-card {
        padding: 2.5rem 1.5rem;
    }

    .location-info {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .contact-hero-title {
        font-size: 1.55rem;
    }

    .contact-hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }

    .btn-contact-primary {
        width: 100%;
        max-width: 280px;
    }

    .btn-contact-cta,
    .btn-contact-outline {
        width: 100%;
        max-width: 280px;
    }

    .contact-form-card {
        padding: 1.25rem;
    }

    .location-map-wrapper {
        height: 200px;
    }
}
