:root {
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --bg: #faf8ff;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
}

body {
    background: var(--bg);
}

.hero-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.hero-contact h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-contact p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-info-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-details h6 {
    color: var(--text);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.map-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border);
}

.map-header h5 {
    color: var(--text);
    margin-bottom: 5px;
    font-weight: 600;
}

.map-header p {
    color: var(--muted);
    margin: 0;
}

.map-box {
    height: 500px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.ltr {
    direction: ltr;
    text-align: left;
}