/* Modern Design Variables */
:root {
    --primary-color: #E31E24;
    --primary-light: #ff6b6b;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-medium: 0 15px 40px rgba(0,0,0,0.12);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.header {
    border-radius: 0px !important;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Modern Section Styling */
.modern-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.2), transparent);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 120px 0 100px;
    margin-top: 80px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
}

/* Feature Cards */
.feature-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: var(--transition);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    opacity: 0.9;
}

/* Content Cards */
.content-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Section Headers */
.section-header {
    text-align: center;
    /* margin-bottom: 4rem; */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
} */

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    /* max-width: 600px; */
    margin: 0 auto;
}

/* Service Items */
.service-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-light);
    transition: var(--transition);
}

.service-item:hover::before {
    height: 100%;
}

.service-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Chef Features */
.chef-feature {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.chef-feature:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.chef-feature i {
    margin-left: 1rem;
    font-size: 1.2rem;
}

/* Modern Membership Benefits */
.modern-benefit-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(227,30,36,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.modern-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.modern-benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(227,30,36,0.15);
    border-color: #E31E24;
    background: linear-gradient(135deg, #E31E24 0%, #ff6b6b 100%);
}

.modern-benefit-card:hover::before {
    left: 100%;
}

.modern-benefit-card:hover .benefit-icon {
    background: white;
    color: #E31E24;
    transform: scale(1.1) rotate(5deg);
}

.modern-benefit-card:hover .benefit-content h5,
.modern-benefit-card:hover .benefit-content p {
    color: white;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E31E24, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(227,30,36,0.3);
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-content h5 {
    color: #E31E24;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.benefit-content p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
    transition: color 0.3s ease;
}

.featured-benefit {
    background: linear-gradient(135deg, rgba(227,30,36,0.1) 0%, rgba(255,107,107,0.05) 100%);
    border: 2px solid rgba(227,30,36,0.2);
}

.featured-benefit:hover {
    background: linear-gradient(135deg, #E31E24 0%, #ff6b6b 100%);
    border-color: #E31E24;
}

/* Responsive Design for Benefits */
@media (max-width: 768px) {
    .modern-benefit-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .benefit-content h5 {
        font-size: 1.1rem;
    }

    .benefit-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .modern-benefit-card {
        padding: 1.2rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .benefit-content h5 {
        font-size: 1rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }
}

/* Benefits Content Wrapper - CKEditor Styling */
.benefits-content-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefits-content-wrapper ul {
    display: contents;
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-content-wrapper li {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(227,30,36,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    min-height: 120px;
}

.benefits-content-wrapper li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.benefits-content-wrapper li::after {
    content: '✨';
    font-size: 2rem;
    margin-left: 1rem;
    flex-shrink: 0;
    opacity: 0.8;
}

.benefits-content-wrapper li:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(227,30,36,0.15);
    border-color: #E31E24;
    background: linear-gradient(135deg, #E31E24 0%, #ff6b6b 100%);
    color: white;
}

.benefits-content-wrapper li:hover::before {
    left: 100%;
}

.benefits-content-wrapper li:hover::after {
    content: '⭐';
    color: #FFD700;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .benefits-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefits-content-wrapper li {
        padding: 1.5rem;
        /* flex-direction: column; */
        text-align: center;
        min-height: auto;
        font-size: 1rem;
    }

    .benefits-content-wrapper li::after {
        font-size: 1.5rem;
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .benefits-content-wrapper li {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .benefits-content-wrapper li::after {
        font-size: 1.3rem;
    }
}

/* Blog Examples */
.blog-example {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

.blog-example:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Contact Methods */
.contact-method {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.contact-method i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Footer Quote */
.footer-quote {
    background: var(--secondary-color);
    padding: 3rem 0;
    position: relative;
}

.footer-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.quote-text {
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-card {
        padding: 2rem;
    }

    .modern-section {
        padding: 60px 0;
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Banner Styles */
.hero-banner-section {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
}

.banner--fixed {
    position: relative;
    width: 100%;
    aspect-ratio: 1920/800;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.hero-banner-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition);
}

.hero-banner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 15px;
}

/* Overlay Text Styles */
.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.4); */
    display: flex;
    align-items: center;
    justify-content: justify;
    z-index: 2;
    border-radius: 15px;
}

.hero-banner-text {
    text-align: center;
    color: white;
    max-width: 90%;
    padding: 2rem;
}

.hero-banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: justify;
}

.hero-banner-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.85;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Text */
@media (max-width: 768px) {
    .hero-banner-title {
        font-size: 2.5rem;
    }
    .hero-banner-subtitle {
        font-size: 1.2rem;
    }
    .hero-banner-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    .hero-banner-subtitle {
        font-size: 1rem;
    }
    .hero-banner-description {
        font-size: 0.9rem;
    }
    .hero-banner-text {
        padding: 1rem;
        max-width: 98%;
    }
}

@media (max-width: 480px) {
    .hero-banner-title {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    .hero-banner-subtitle {
        font-size: 0.9rem;
    }
    .hero-banner-description {
        font-size: 0.85rem;
    }
    .hero-banner-text {
        padding: 0.8rem;
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .hero-banner-title {
        font-size: 1.3rem;
        line-height: 1.5;
        margin-bottom: 0.6rem;
    }
    .hero-banner-subtitle {
        font-size: 0.8rem;
    }
    .hero-banner-description {
        font-size: 0.8rem;
    }
    .hero-banner-text {
        padding: 0.6rem;
    }
}

@media (max-width: 320px) {
    .hero-banner-title {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
        word-break: break-word;
    }
    .hero-banner-subtitle {
        font-size: 0.75rem;
    }
    .hero-banner-description {
        font-size: 0.75rem;
    }
    .hero-banner-text {
        padding: 0.5rem;
        max-width: 100%;
    }
}

@media (max-width: 280px) {
    .hero-banner-title {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 0.4rem;
    }
    .hero-banner-subtitle {
        font-size: 0.7rem;
    }
    .hero-banner-description {
        font-size: 0.7rem;
    }
    .hero-banner-text {
        padding: 0.4rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-banner-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    .hero-banner-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .hero-banner-description {
        font-size: 0.9rem;
    }
    .hero-banner-text {
        padding: 1rem;
        max-width: 95%;
    }
}

.hero-banner-image:hover {
    transform: scale(1.02);
}

.hero-banner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.banner-section {
    margin-bottom: 10rem !important;
}


/* Responsive Banner - Using aspect-ratio for consistent sizing */
@media (max-width: 768px) {
    .hero-banner-section {
        margin-top: 0;
    }
}

/* Features List Styles */
.features-list {
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover {
    padding-right: 1rem;
    background: rgba(227, 30, 36, 0.05);
    border-radius: 8px;
    margin: 0 -1rem;
    padding-left: 1rem;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    transition: var(--transition);
}

.feature-item:hover .feature-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* Creative About Section Styles */
.creative-about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.creative-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.creative-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.creative-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.creative-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.creative-image:hover {
    transform: scale(1.05);
}

.creative-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.placeholder-content {
    text-align: center;
    color: white;
}

.creative-content {
    padding: 2rem;
}

.creative-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
}

.creative-features {
    margin-top: 2rem;
}

.creative-feature-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.creative-feature-item:last-child {
    border-bottom: none;
}

.creative-feature-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.creative-feature-item:hover {
    padding-right: 1.5rem;
    background: rgba(227, 30, 36, 0.05);
    border-radius: 12px;
    margin: 0 -1rem;
    padding-left: 1rem;
}

.creative-feature-item:hover::before {
    opacity: 1;
}

.creative-feature-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    transition: var(--transition);
}

.creative-feature-item:hover .creative-feature-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Creative Section */
@media (max-width: 768px) {
    .creative-image,
    .creative-placeholder {
        height: 300px;
    }
    .creative-text {
        font-size: 1.1rem;
    }
    .creative-feature-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .creative-image,
    .creative-placeholder {
        height: 250px;
    }
    .creative-text {
        font-size: 1rem;
    }
    .creative-feature-text {
        font-size: 0.95rem;
    }
    .creative-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .creative-image,
    .creative-placeholder {
        height: 200px;
    }
    .creative-text {
        font-size: 0.95rem;
    }
    .creative-feature-text {
        font-size: 0.9rem;
    }
    .creative-content {
        padding: 1rem;
    }
}

/* Responsive Features List */
@media (max-width: 768px) {
    .feature-text {
        font-size: 1rem;
    }
    .feature-item {
        padding: 1.2rem 0;
    }
}

@media (max-width: 576px) {
    .feature-text {
        font-size: 0.95rem;
    }
    .feature-item {
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .feature-text {
        font-size: 0.9rem;
    }
    .feature-item {
        padding: 0.8rem 0;
    }
}

/* Modern Buttons */
.btn-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    color: white;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

/* Vision & Mission Section Styles */
.vision-mission-section {
    position: relative;
    overflow: hidden;
}

.banner-wrapper {
    position: relative;
}

/* .banner-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    max-width: 1334px;
    margin: 0 auto;
} */

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* .banner-container:hover .banner-image {
    transform: scale(1.05);
} */

/* .banner-overlay {
    background: linear-gradient(135deg, rgb(210 28 28 / 60%) 0%, rgb(255 255 255 / 52%) 50%, rgb(0 0 0 / 0%) 100%) !important;
} */

.vision-mission-cards {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
    max-width: 1200px;
}

.cards-vision-mission {
    justify-content: center;
}

.vision-card,
.mission-card {
    position: relative;
}

.card-content {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    border: none;
    transition: var(--transition);
}

.card-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.card-header {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E31E24, #ff6b6b);
}

.icon-wrapper i {
    color: white;
    font-size: 1.5rem;
}

.card-title {
    font-weight: bold;
    margin-bottom: 0;
    color: #E31E24;
    font-size: 1.5rem;
}

.card-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 1rem;
}

/* Responsive Vision & Mission Section */
@media (max-width: 992px) {
    .banner-container {
        max-width: 1000px;
    }
    .card-content {
        padding: 1.2rem;
    }
    .card-title {
        font-size: 1.3rem;
    }
    .card-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .banner-container {
        max-width: 800px;
    }
    .vision-mission-cards {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        margin-top: 2rem;
    }
    .card-content {
        padding: 1rem;
    }
    .card-title {
        font-size: 1.2rem;
    }
    .card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .banner-container {
        max-width: 600px;
    }
    .card-content {
        padding: 0.8rem;
    }
    .card-title {
        font-size: 1.1rem;
    }
    .card-text {
        font-size: 0.85rem;
    }
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    .icon-wrapper i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .banner-container {
        max-width: 500px;
    }
    .card-content {
        padding: 0.6rem;
    }
    .card-title {
        font-size: 1rem;
    }
    .card-text {
        font-size: 0.8rem;
    }
}

.services-list-section {
/* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%); */
padding: 4rem 0 3rem 0;
position: relative;
}
.services-list-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
/* background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.3), transparent); */
}
.services-section-image {
width: 100%;
border-radius: 20px;
box-shadow: 0 20px 50px rgba(0,0,0,0.12);
display: block;
margin: 0 auto;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-section-image:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}
.services-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 1.5rem;
counter-reset: service-counter;
}
.services-list li {
font-size: 1.2rem;
color: #2c3e50;
background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.8) 100%);
border-radius: 16px;
padding: 1.5rem 3.8rem 1.5rem 4rem;
position: relative;
font-weight: 600;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(227,30,36,0.1);
counter-increment: service-counter;
overflow: hidden;
}
.services-list li::before {
content: counter(service-counter, decimal-leading-zero);
position: absolute;
top: 50%;
right: 1.5rem;
transform: translateY(-50%);
background: linear-gradient(135deg, #E31E24, #ff6b6b);
color: white;
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
font-weight: 700;
box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}
.services-list li::after {
content: '';
position: absolute;
top: 0;
right: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: right 0.6s ease;
}
.services-list li:hover {
background: linear-gradient(135deg, #E31E24 0%, #ff6b6b 100%);
color: white;
transform: translateX(10px) translateY(-5px);
box-shadow: 0 15px 40px rgba(227, 30, 36, 0.25);
border-color: transparent;
}
.services-list li:hover::before {
background: white;
color: #E31E24;
transform: translateY(-50%) scale(1.1);
}
.services-list li:hover::after {
right: 100%;
}
.service-bullet {
display: inline-block;
width: 16px;
height: 16px;
background: linear-gradient(135deg, #E31E24, #ff6b6b);
border-radius: 50%;
margin-left: 1rem;
vertical-align: middle;
box-shadow: 0 3px 10px rgba(227,30,36,0.3);
position: relative;
}
.service-bullet::before {
content: '✦';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 0.7rem;
font-weight: bold;
}
@media (max-width: 992px) {
.services-list-section {
padding: 3rem 0 2rem 0;
}
.services-list li {
font-size: 1.1rem;
padding: 1.3rem 3.5rem 1.3rem 3.5rem;
}
.services-list li::before {
width: 30px;
height: 30px;
font-size: 0.8rem;
}
}
@media (max-width: 768px) {
.services-list-section {
padding: 2rem 0 1.5rem 0;
}
.services-section-image {
margin-bottom: 1.5rem;
}
.services-list li {
font-size: 1rem;
padding: 1.2rem 3.3rem 1.2rem 3rem;
border-radius: 12px;
}
.services-list li::before {
width: 28px;
height: 28px;
font-size: 0.75rem;
right: 1.2rem;
}
.services-list {
gap: 1.2rem;
}
}
@media (max-width: 576px) {
.services-list-section {
padding: 1.5rem 0 1rem 0;
}
.services-section-image {
margin-bottom: 1rem;
}
.services-list li {
font-size: 0.95rem;
padding: 1rem 3.1rem 1rem 2.5rem;
border-radius: 10px;
}
.services-list li::before {
width: 25px;
height: 25px;
font-size: 0.7rem;
right: 1rem;
}
.services-list {
gap: 1rem;
}
.service-bullet {
width: 14px;
height: 14px;
margin-left: 0.8rem;
}
}

/* شراكات - تصميم بسيط */
.partnerships-section {
    background: #fff;
    padding: 3rem 0;
}
.partnership-image-container {
    width: 100%;
    margin: 0 auto 2rem auto;
}
.partnership-image {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}
.partnership-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #E31E24;
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}
.title-icon-partnership {
    font-size: 1.5rem;
}
.partnership-description {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
}
.partnership-cta {
    background: #E31E24;
    color: #fff !important;
    border-radius: 30px;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    text-align: center;
    margin: 0 auto;
    transition: background 0.2s;
}
.partnership-cta:hover {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.cta-icon {
    font-size: 1.3rem;
    margin-left: 0.5rem;
}
@media (max-width: 768px) {
    .partnership-image-container {
        max-width: 100%;
    }
    .partnership-title {
        font-size: 1.5rem;
    }
    .partnership-description {
        font-size: 1rem;
    }
    .partnership-cta {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}
