/* ===== Bassmah Landing - Content Styles ===== */

/* ===== BENEFITS ===== */

.benefits-section {
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid transparent;
}

.benefit-card:hover {
    background: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon.bi-1 {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.benefit-icon.bi-2 {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.benefit-icon.bi-3 {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.benefit-icon.bi-4 {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.benefit-icon.bi-5 {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}

.benefit-icon.bi-6 {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}

.benefit-icon img {
    width: 36px;
    height: 36px;
}

.benefit-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== WHY US ===== */

.whyus-section {
    background: var(--light-bg);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.whyus-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.whyus-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.whyus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whyus-icon.w1 {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.whyus-icon.w2 {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.whyus-icon.w3 {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.whyus-icon img {
    width: 40px;
    height: 40px;
}

.whyus-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.whyus-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== FAQ ===== */

.faq-section {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--light-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #e8ecf1;
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(39, 174, 96, 0.03);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--accent);
    transform: rotate(45deg);
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
    color: var(--text-light);
    transition: var(--transition);
}

.faq-item.active .faq-toggle svg {
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 28px 22px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 2;
}

/* ===== OFFER ===== */

.offer-section {
    background: linear-gradient(135deg, var(--accent) 0%, #1a8f4a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.offer-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.offer-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
}

.offer-content h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.4;
}

.offer-content p {
    font-size: 20px;
    line-height: 2;
    opacity: 0.9;
    margin-bottom: 32px;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--accent);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Tajawal', sans-serif;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.offer-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
