.contact-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
    text-align: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.contact-hero__title {
    font-family: 'Amiri', serif;
    font-size: clamp(40px, 8vw, 70px);
    color: var(--primary-dark);
    margin-bottom: 20px;
    animation: fadeUp 1s var(--ease-out-expo) both;
}

.contact-hero__subtitle {
    font-family: 'Aref Ruqaa', serif;
    font-size: 24px;
    color: var(--secondary);
    letter-spacing: 2px;
    animation: fadeUp 1s var(--ease-out-expo) 0.2s both;
}

.contact-section {
    padding: 100px 0;
    background: var(--beige);
    position: relative;
}

.contact-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    direction: rtl;
}

.contact-form-card {
    background: #fff;
    padding: 60px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(201, 164, 108, 0.2);
}

.contact-form-card::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--secondary-light);
    opacity: 0.3;
    pointer-events: none;
    clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-label {
    display: block;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--beige);
    border: 1.5px solid transparent;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background: #fff;
    box-shadow: 0 0 15px rgba(201, 164, 108, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    animation: fadeUp 0.8s var(--ease-out-expo) both;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-out-back);
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-content h3 {
    font-family: 'Amiri', serif;
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.info-content p, 
.info-content a {
    font-family: 'Cairo', sans-serif;
    font-size: 17px;
    color: var(--primary);
    line-height: 1.6;
    text-decoration: none;
}

.info-content a:hover {
    color: var(--secondary);
}

.btn-royal,
.btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-weight: 800;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    background: transparent;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-royal::before,
.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.btn-royal::after,
.btn-outline::after {
    content: '';
    position: absolute;
    inset: 5px;
    z-index: -1;
    border: 1px solid transparent;
    transition: all 0.5s ease;
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.btn-royal {
    color: #fff;
}

.btn-royal::before {
    background: var(--primary);
}

.btn-royal::after {
    border-color: rgba(212, 185, 142, 0.4);
}

.btn-royal:hover::before {
    background: var(--primary-dark);
    transform: scale(0.96);
}

.btn-royal:hover::after {
    border-color: var(--secondary-light);
    inset: 3px;
}

@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 575px) {
    .contact-hero {
        padding: 120px 0 60px;
    }
    .contact-form-card {
        padding: 40px 25px;
    }
    .contact-hero__title {
        font-size: 36px;
    }
}
