/* ==========================================================================
   IECLATE INOVATE CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */

/* ================= CONTACT HERO SECTION ================= */
.contact-hero-section {
    position: relative;
    padding: 180px 0 80px 0;
    text-align: center;
    overflow: hidden;
}

.contact-hero-content {
    position: relative;
    z-index: 5;
    max-width: 750px;
    margin: 0 auto;
}

.contact-hero-content .sub-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    display: block;
    margin-bottom: 12px;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 1.15rem;
}

.orb-contact-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -20%;
    left: 25%;
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
}


/* ================= CONTACT GRID ================= */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-intro p {
    font-size: 1rem;
    line-height: 1.7;
}

.info-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-glow);
    border: 1px solid rgba(0, 198, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
    color: var(--secondary);
}

.info-text h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--white);
}

.info-text p {
    font-size: 0.9rem;
    line-height: 1.5;
}


/* ================= CONTACT FORM ================= */
.contact-form-card {
    padding: 40px;
}

.contact-form-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-card p {
    font-size: 0.95rem;
    margin-bottom: 30px;
}

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

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--gray-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.input-wrapper textarea {
    padding: 16px 16px 16px 44px;
    resize: none;
}

.input-wrapper textarea-wrapper i {
    top: 18px;
}

/* Focus and Active States */
.input-wrapper input:focus,
.input-wrapper textarea:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.15);
}

.input-wrapper input:focus + i,
.input-wrapper textarea:focus + i {
    color: var(--secondary);
}

/* Error validation classes */
.form-group.error .input-wrapper input,
.form-group.error .input-wrapper textarea {
    border-color: #FF5F56;
    box-shadow: 0 0 10px rgba(255, 95, 86, 0.15);
}

.form-group.error .input-wrapper i {
    color: #FF5F56;
}

.error-msg {
    font-size: 0.8rem;
    color: #FF5F56;
    display: none;
    margin-top: 4px;
}

.form-group.error .error-msg {
    display: block;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* Success / Error Form Submissions Alert box */
.form-message-box {
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
    margin-bottom: 10px;
}

.form-message-box.success {
    display: block;
    background: rgba(39, 201, 63, 0.1);
    border: 1px solid rgba(39, 201, 63, 0.3);
    color: #27C93F;
}

.form-message-box.error {
    display: block;
    background: rgba(255, 95, 86, 0.1);
    border: 1px solid rgba(255, 95, 86, 0.3);
    color: #FF5F56;
}


/* ================= MAP SECTION ================= */
.map-wrapper {
    overflow: hidden;
    padding: 10px;
    border-radius: 24px;
    margin: 40px auto 100px auto;
}

.map-placeholder {
    height: 400px;
    width: 100%;
    border-radius: 16px;
    background: radial-gradient(circle at 70% 40%, #0c2754 0%, #05142f 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated radar beacon at location point */
.map-glow-dot {
    position: absolute;
    top: 40%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: var(--secondary);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 20px var(--secondary);
}

.map-glow-ring {
    position: absolute;
    top: 40%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    z-index: 9;
    animation: radarRipple 3s ease-out infinite;
}

@keyframes radarRipple {
    0% {
        width: 16px;
        height: 16px;
        opacity: 1;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
}

/* Glass map popover badge overlay */
.map-info-popup {
    position: absolute;
    top: 25%;
    left: 48%;
    padding: 16px 20px;
    z-index: 12;
    max-width: 240px;
    animation: hoverFloating 4s ease-in-out infinite alternate;
}

.map-info-popup h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--white);
}

.map-info-popup p {
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.map-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

@keyframes hoverFloating {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

.map-overlay-text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
    max-width: 320px;
}

.map-overlay-text i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.map-overlay-text h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.map-overlay-text p {
    font-size: 0.8rem;
    line-height: 1.4;
}


/* ================= FAQ SECTION ================= */
.faq-accordion-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(21, 101, 255, 0.25);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    font-family: inherit;
}

.faq-question i {
    font-size: 0.95rem;
    color: var(--secondary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Accordion expand collapse animation */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}
