/**
 * Contact Us Page
 * V2 Theme - Fortune Academy
 */

/* ============================
   Contact Page Section
   ============================ */
.contact-page-section {
    padding: 0;
}

.contact-form-inner {
    padding: 60px 0 80px;
}

/* ============================
   Section Heading
   ============================ */
.contact-from-wrap .section-heading h5.dash-style {
    font-size: 14px;
    font-weight: 700;
    color: #ff6f00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.contact-from-wrap .section-heading h2 {
    font-size: 32px;
    font-weight: 800;
    color: #173C97;
    line-height: 1.3;
    margin-bottom: 20px;
}

.contact-from-wrap .section-heading p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* ============================
   Contact Form
   ============================ */
.contact-from {
    margin-top: 30px;
}

.contact-from p {
    margin-bottom: 20px;
}

.contact-from input[type="text"],
.contact-from input[type="email"],
.contact-from input[type="tel"],
.contact-from textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-from input[type="text"]:focus,
.contact-from input[type="email"]:focus,
.contact-from input[type="tel"]:focus,
.contact-from textarea:focus {
    outline: none;
    border-color: #173C97;
    box-shadow: 0 0 0 3px rgba(23, 60, 151, 0.1);
}

.contact-from input::placeholder,
.contact-from textarea::placeholder {
    color: #999;
}

.contact-from textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-from input[type="submit"] {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #173C97 0%, #2C75BA 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-from input[type="submit"]:hover {
    background: linear-gradient(135deg, #122d75 0%, #1f5a96 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(23, 60, 151, 0.3);
}

.contact-from input[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Error Messages */
.error-text {
    display: block;
    color: #c1241a;
    font-size: 13px;
    margin-top: 5px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 15px;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert i {
    margin-right: 8px;
}

/* ============================
   Contact Details
   ============================ */
.contact-detail-wrap {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    height: 100%;
}

.contact-detail-wrap h3 {
    font-size: 24px;
    font-weight: 700;
    color: #173C97;
    margin-bottom: 20px;
}

.contact-detail-wrap > p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Details List */
.details-list {
    margin-top: 30px;
    margin-bottom: 30px;
}

.details-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.details-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.details-list li:last-child {
    margin-bottom: 0;
}

.details-list .icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #173C97 0%, #2C75BA 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.details-list .icon i {
    font-size: 22px;
    color: #fff;
}

.details-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #173C97;
    margin-bottom: 5px;
}

.details-content span {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.details-content a {
    color: #173C97;
    text-decoration: none;
    transition: color 0.3s ease;
}

.details-content a:hover {
    color: #ff6f00;
    text-decoration: underline;
}

/* ============================
   Social Links
   ============================ */
.contct-social {
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
}

.contct-social h3 {
    font-size: 18px;
    font-weight: 700;
    color: #173C97;
    margin-bottom: 15px;
}

.social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

.social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    border: 2px solid #173C97;
    border-radius: 8px;
    color: #173C97;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links li a:hover {
    background: linear-gradient(135deg, #173C97 0%, #2C75BA 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(23, 60, 151, 0.3);
}

/* ============================
   Map Section
   ============================ */
.map-section {
    width: 100%;
    margin-top: 0;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ============================
   Breadcrumb
   ============================ */
.breadcrumb-content {
    margin-top: 15px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    background: transparent;
}

.breadcrumb li {
    font-size: 14px;
    color: #fff;
}

.breadcrumb li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb li + li::before {
    content: '/';
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb li.active {
    opacity: 0.8;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 991px) {
    .contact-form-inner {
        padding: 50px 0 60px;
    }

    .contact-from-wrap .section-heading h2 {
        font-size: 28px;
    }

    .contact-detail-wrap {
        margin-top: 40px;
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .contact-form-inner {
        padding: 40px 0 50px;
    }

    .contact-from-wrap .section-heading h2 {
        font-size: 24px;
    }

    .contact-from-wrap .section-heading p {
        font-size: 14px;
    }

    .contact-from input[type="text"],
    .contact-from input[type="email"],
    .contact-from input[type="tel"],
    .contact-from textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .details-list li {
        padding: 15px;
    }

    .details-list .icon {
        min-width: 45px;
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .details-list .icon i {
        font-size: 20px;
    }

    .details-content h4 {
        font-size: 15px;
    }

    .details-content span {
        font-size: 13px;
    }

    .map-section iframe {
        height: 300px;
    }

    .social-links ul {
        gap: 10px;
    }

    .social-links li a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contact-detail-wrap {
        padding: 20px;
    }

    .contact-detail-wrap h3 {
        font-size: 20px;
    }

    .contact-from input[type="submit"] {
        padding: 13px 25px;
        font-size: 15px;
    }
}
