/* ========================================
   LIGHT & ELEGANT CONTACT PAGE
   Burgundy & Cream Theme - Heena Boutique
   ======================================== */

/* === CONTACT SECTION === */
.rt-contact-wrap {
    background: #F7F4F3;
    padding: 80px 0;
}

.rt-contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}

/* === CONTACT INFO SECTION === */
.rt-contact-info {
    background: #FFFFFF;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(91, 35, 51, 0.08);
    border: 1px solid #E8E3E1;
}

.rt-contact-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #5B2333;
    position: relative;
    padding-bottom: 12px;
}

.rt-contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #C4969E;
    border-radius: 2px;
}

.rt-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    padding: 20px;
    background: #F7F4F3;
    border-radius: 12px;
    border-left: 3px solid #C4969E;
    transition: all 0.3s ease;
}

.rt-info-item:hover {
    background: #FBF9F8;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(91, 35, 51, 0.08);
}

.rt-info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #5B2333, #7d3349);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.rt-info-item:hover .rt-info-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(91, 35, 51, 0.3);
}

.rt-info-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #5B2333;
}

.rt-info-item p {
    font-size: 15px;
    margin: 0;
    color: #7d3349;
    line-height: 1.6;
}

/* === CONTACT FORM SECTION === */
.rt-contact-form {
    background: #FFFFFF;
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(91, 35, 51, 0.08);
    border: 1px solid #E8E3E1;
}

.rt-contact-form .rt-contact-title {
    color: #5B2333;
    font-size: 28px;
    margin-bottom: 30px;
}

.rt-field {
    margin-bottom: 22px;
}

.rt-field input,
.rt-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E8E3E1;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Times New Roman', Georgia, serif;
    color: #5B2333;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.rt-field input:focus,
.rt-field textarea:focus {
    outline: none;
    border-color: #C4969E;
    background: #FBF9F8;
    box-shadow: 0 0 0 3px rgba(196, 150, 158, 0.1);
}

.rt-field textarea {
    min-height: 130px;
    resize: vertical;
}

.rt-field input::placeholder,
.rt-field textarea::placeholder {
    color: #9e4460;
    opacity: 0.6;
}

.rt-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #5B2333 0%, #7d3349 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(91, 35, 51, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rt-submit-btn:hover {
    background: linear-gradient(135deg, #7d3349 0%, #5B2333 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 35, 51, 0.35);
}

.rt-submit-btn i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.rt-submit-btn:hover i {
    transform: translateX(3px);
}

.rt-form-success {
    display: none;
    margin-top: 18px;
    padding: 14px 18px;
    background: rgba(196, 150, 158, 0.1);
    border-left: 3px solid #C4969E;
    border-radius: 8px;
    color: #5B2333;
    font-weight: 500;
}

.rt-form-success.show {
    display: block;
}

/* === MAP SECTION === */
.rt-contact-map {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(91, 35, 51, 0.12);
    border: 3px solid #FFFFFF;
}

.rt-contact-map iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .rt-contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .rt-contact-info,
    .rt-contact-form {
        padding: 38px 30px;
    }
}

@media (max-width: 768px) {
    .rt-contact-wrap {
        padding: 60px 0;
    }

    .rt-contact-info,
    .rt-contact-form {
        padding: 32px 25px;
    }

    .rt-contact-title {
        font-size: 24px;
    }

    .rt-info-item {
        padding: 18px;
    }

    .rt-contact-map iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .rt-contact-wrap {
        padding: 40px 0;
    }

    .rt-contact-grid {
        padding: 0 15px;
    }

    .rt-contact-title {
        font-size: 22px;
    }

    .rt-info-item {
        flex-direction: row;
        gap: 15px;
    }

    .rt-info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .rt-contact-map iframe {
        height: 300px;
    }
}

/* === SUBTLE ANIMATIONS === */
.rt-contact-info,
.rt-contact-form {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}