/* Contact Page Redesign - Floating Split Card */

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Hero Section Adjustments */
.contact-page-hero {
    height: 500px !important;
    margin-bottom: 0;
}

/* Floating Card Section */
.floating-contact-card-section {
    position: relative;
    margin-top: -120px;
    /* Overlap the hero */
    padding-bottom: 80px;
    z-index: 10;
}

.floating-contact-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 60px;
    animation: fadeInUp 0.8s ease-out;
}

/* Left Column - Contact Info */
.contact-info-col {
    padding-right: 40px;
}

.info-title {
    font-size: 32px;
    color: var(--main-color-two);
    font-weight: 700;
    margin-bottom: 10px;
}

.info-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--main-color-one);
    /* Gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* White icon on gold */
    font-size: 20px;
    flex-shrink: 0;
    margin-right: 20px;
}

.detail-content h5 {
    font-size: 16px;
    color: var(--main-color-two);
    font-weight: 600;
    margin-bottom: 5px;
}

.detail-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.detail-content a {
    color: var(--main-color-one);
    text-decoration: none;
    transition: color 0.3s;
}

.detail-content a:hover {
    color: var(--main-color-two);
}

/* Email Item Structure */
.email-item {
    margin-bottom: 12px;
}

.email-item:last-child {
    margin-bottom: 0;
}

.email-label {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    margin-top: 0;
}

/* Social Media */
.social-media-section {
    margin-top: 40px;
}

.social-media-section h5 {
    font-size: 16px;
    color: var(--main-color-two);
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--main-color-one);
    /* Gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* White icon on gold */
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--main-color-two);
    /* Blue on hover */
    color: #fff;
    transform: translateY(-3px);
}

/* Right Column - Form */
.contact-form-col {
    padding-left: 40px;
    border-left: 1px solid #eee;
}

.form-title {
    font-size: 28px;
    color: var(--main-color-two);
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-simple-form .form-group {
    margin-bottom: 20px;
}

.contact-simple-form label {
    display: block;
    font-size: 14px;
    color: var(--main-color-two);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-simple-form input,
.contact-simple-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--body-font);
    transition: border-color 0.3s;
}

.contact-simple-form input:focus,
.contact-simple-form textarea:focus {
    outline: none;
    border-color: var(--main-color-one);
}

.contact-simple-form textarea {
    resize: vertical;
}

.btn-submit {
    background: var(--main-color-one);
    /* Gold */
    color: #000;
    /* Dark text on gold */
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--main-color-two);
    /* Blue on hover */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .floating-contact-card {
        padding: 40px 30px;
    }

    .contact-info-col,
    .contact-form-col {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-form-col {
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 40px;
        margin-top: 40px;
    }

    .floating-contact-card-section {
        margin-top: 0;
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .contact-page-hero {
        height: 350px !important;
    }

    .floating-contact-card {
        padding: 30px 20px;
    }

    .info-title,
    .form-title {
        font-size: 24px;
    }
}