/* ====================================
   Contact Section - Split Layout Modern
   Info Side + Form/Map Side
   ==================================== */

/* Main Container */
.contact-modern-split {
    position: relative;
    background: #ffffff;
}

/* Left Side - Contact Info */
.contact-info-side {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #c42636 0%, #28668f 100%);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.info-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.info-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Info Header */
.info-header-modern {
    margin-bottom: 50px;
}

.header-badge-split {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-dot-split {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse-split 2s ease-in-out infinite;
}

@keyframes pulse-split {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.badge-text-split {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-title-modern {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.info-subtitle-modern {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* Contact Items */
.contact-items-modern {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item-split {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item-split:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(-10px);
}

[dir="rtl"] .contact-item-split:hover {
    transform: translateX(10px);
}

.item-icon-split {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.item-icon-split svg {
    width: 26px;
    height: 26px;
}

.item-content-split {
    flex: 1;
}

.item-title-split {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-details-split {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-link-split {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link-split:hover {
    color: #ffffff;
    transform: translateX(-3px);
}

[dir="rtl"] .contact-link-split:hover {
    transform: translateX(3px);
}

.address-text-split {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Decorative Circles */
.decorative-circles-split {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.circle-split {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.circle-split.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float-circle-1 20s ease-in-out infinite;
}

.circle-split.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation: float-circle-2 15s ease-in-out infinite;
}

@keyframes float-circle-1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

@keyframes float-circle-2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
}

/* Right Side - Form & Map */
.contact-form-side {
    background: #ffffff;
    min-height: 100vh;
}

.form-map-wrapper {
    padding: 80px 60px;
}

/* Form Section */
.form-section-modern {
    margin-bottom: 60px;
}

.form-header-split {
    margin-bottom: 32px;
}

.form-title-split {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 12px 0;
}

.form-desc-split {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.form-body-split {
    /* Form styles inherited from contact-form component */
}

/* Map Section */
.map-section-modern {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-wrapper-split {
    position: relative;
    height: 450px;
}

.map-wrapper-split iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-info-side {
        min-height: auto;
        padding: 60px 40px;
    }

    .form-map-wrapper {
        padding: 60px 40px;
    }

    .info-title-modern {
        font-size: 36px;
    }

    .form-title-split {
        font-size: 28px;
    }

    .contact-item-split:hover {
        transform: translateX(0);
    }

    [dir="rtl"] .contact-item-split:hover {
        transform: translateX(0);
    }
}

@media (max-width: 767px) {
    .contact-info-side {
        padding: 50px 30px;
    }

    .form-map-wrapper {
        padding: 50px 30px;
    }

    .info-title-modern {
        font-size: 28px;
    }

    .info-subtitle-modern {
        font-size: 16px;
    }

    .contact-items-modern {
        gap: 20px;
    }

    .contact-item-split {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .item-icon-split {
        margin: 0 auto;
    }

    .form-title-split {
        font-size: 24px;
    }

    .map-wrapper-split {
        height: 350px;
    }

    .circle-split {
        display: none;
    }
}

/* Print Styles */
@media print {
    .contact-info-side {
        background: #f7fafc;
        color: #000000;
        min-height: auto;
    }

    .info-title-modern,
    .info-subtitle-modern,
    .item-title-split,
    .contact-link-split {
        color: #000000;
    }

    .decorative-circles-split,
    .info-bg-gradient {
        display: none;
    }
}
