/* Shuraa Hero Section Styles */
.shuraa-hero-section {
    background-color: #031525;
    color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.shuraa-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.shuraa-hero-content {
    flex: 1;
}

.shuraa-tagline {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.shuraa-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.shuraa-benefits {
    margin-bottom: 40px;
}

.shuraa-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.shuraa-benefit-icon {
    font-size: 18px;
    color: #ffffff;
}

.shuraa-benefit-text {
    font-size: 16px;
    font-weight: 500;
}

.shuraa-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.shuraa-btn-primary {
    background-color: #FF2D20;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}

.shuraa-btn-secondary {
    background-color: #FF2D20;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}

.shuraa-btn-primary:hover, .shuraa-btn-secondary:hover {
    background-color: #e0261b;
}

.shuraa-trust-signals {
    display: flex;
    gap: 30px;
}

.shuraa-google-review, .shuraa-trustpilot {
    display: flex;
    flex-direction: column;
}

.shuraa-review-text {
    font-size: 12px;
    opacity: 0.8;
}

.shuraa-hero-visual {
    flex: 1;
    position: relative;
}

.shuraa-arch-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
}

.shuraa-arch-bg {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 80%;
    height: 90%;
    background-size: cover;
    background-position: center;
    clip-path: ellipse(50% 100% at 50% 100%); /* Simple arch-like clip */
    border: 5px solid rgba(255,255,255,0.1);
    border-radius: 200px 200px 0 0;
}

.shuraa-arch-portrait {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
}

.shuraa-arch-portrait img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 991px) {
    .shuraa-hero-container {
        flex-direction: column;
        text-align: center;
    }
    .shuraa-buttons {
        justify-content: center;
    }
    .shuraa-trust-signals {
        justify-content: center;
    }
    .shuraa-arch-bg {
        width: 100%;
        left: 0;
    }
}
