/* ===== VARIABLES & RESET ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --dark: #1e293b;
    --light: #f8fafc;
    --text: #334155;
    --text-light: #64748b;
    --white: #ffffff;

    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--accent), #ef4444);

    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;

    --font-primary: 'Tajawal', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== IMPROVED HERO SECTION ===== */
.main-body {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.swiper-container {
    width: 100%;
    height: 100vh;
    min-height: 700px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.newHome-hero {
    height: 100%;
    position: relative;
    background: var(--gradient-primary);
}

.newHome-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.1"><path fill="%23ffffff" d="M0,0Q0,400,600,400Q1200,400,1200,800L0,800Z"/></svg>');
    background-size: cover;
}

.newHome-hero__container {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.newHome-hero__container--second {
    flex-direction: row-reverse;
}

.newHome-hero__text-box {
    flex: 1;
    padding: 2rem;
    color: var(--white);
}

.newHome-hero__text-box h1,
.newHome-hero__text-box h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.newHome-hero__text-box h1 span,
.newHome-hero__text-box h2 span {
    display: block;
    margin-bottom: 0.5rem;
}

.newHome-hero__text-box p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newHome-hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success {
    background: var(--white);
    color: var(--primary);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-light--custom {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-light--custom:hover {
    background: var(--white);
    color: var(--primary);
}

.hashtag {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 500;
}

.newHome-hero__imgBx {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.newHome-hero__imgBx img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== IMPROVED SUBJECTS SECTION ===== */
.m-top {
    margin-top: 4rem;
}

.newSubjects {
    padding: 6rem 0;
    background: var(--white);
}

.custom-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
}

.custom-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

.subjects_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.subject_box {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.subject_box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.subject_box .img-box {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.subject_box .img-box img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.subject_box p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.absolute-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.link-box {
    text-align: center;
    margin-top: 3rem;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.mobile-btn {
    display: inline-flex;
}

.m-center {
    margin: 0 auto;
}

/* ===== IMPROVED STUDENTS SECTION ===== */
.offers {
    padding: 6rem 0;
    background: var(--light);
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offer-card header {
    margin-bottom: 1.5rem;
}

.offer-card header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}

.offer-card__title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.offer-card__title span {
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.play-btn {
    background: var(--gradient-accent);
    color: var(--white);
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    max-width: 800px;
    width: 100%;
}

.modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    z-index: 2;
}

.modal-close:hover {
    color: var(--dark);
}

#video-iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
}

/* ===== FOOTER STYLES ===== */
.footer-container {
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    color: white;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1C8A44;
    display: inline-block;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(-5px);
}

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1C8A44;
}

.footer-section ul li a i {
    margin-left: 8px;
    font-size: 0.9rem;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    width: 100%;
}

.logo-img {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    padding: 10px;
}

.logo-img img {
    max-width: 100%;
    max-height: 100%;
    filter: brightness(0) saturate(100%) invert(23%) sepia(98%) saturate(1234%) hue-rotate(195deg) brightness(93%) contrast(101%);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.logo-sub {
    font-size: 1rem;
    color: #1C8A44;
    font-weight: 600;
    margin-top: 5px;
}

.description {
    color: #cbd5e1;
    margin-bottom: 25px;
    max-width: 300px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: #1C8A44;
    transform: translateY(-5px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    text-align: center;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #1C8A44;
    text-decoration: none;
    font-weight: bold;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .newHome-hero__container {
        flex-direction: column;
        text-align: center;
    }

    .newHome-hero__text-box h1,
    .newHome-hero__text-box h2 {
        font-size: 2.5rem;
    }

    .newHome-hero__actions {
        justify-content: center;
    }

    .custom-title {
        font-size: 2.2rem;
    }

    .subjects_container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .swiper-container {
        height: auto;
        min-height: 600px;
    }

    .footer-content {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .footer-section {
        min-width: 100%;
    }
    
    .logo-section {
        align-items: center;
        text-align: center;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .newHome-hero__text-box h1,
    .newHome-hero__text-box h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .subjects_container {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.m-center {
    margin: 0 auto;
}

.m-top {
    margin-top: 0;
}

.mobile-btn {
    display: inline-flex;
}


/* ===== قسم لماذا تختارنا ===== */
.new-why {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.new-why::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(28, 138, 68, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.new-why__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* الجانب الأيسر - الصورة */
.new-why__img-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-why__img-box img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

/* العناصر العائمة */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1C8A44, #22c55e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(28, 138, 68, 0.3);
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 70%;
    right: 10%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    animation-delay: 2s;
}

/* الجانب الأيمن - المحتوى */
.why__reasons-box {
    position: relative;
}

.custom-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.custom-title .highlight {
    background: linear-gradient(45deg, #1C8A44, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 400;
}

/* أسباب الاختيار */
.reasons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.reason-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: start;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.reason-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #1C8A44, #22c55e);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reason-box:hover {
    transform: translateX(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(28, 138, 68, 0.3);
}

.reason-box:hover::before {
    opacity: 1;
}

/* أيقونة السبب */
.reason-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1C8A44, #22c55e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.reason-box:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(28, 138, 68, 0.4);
}

/* محتوى السبب */
.reason-content {
    flex: 1;
}

.sub-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.sub-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* رقم السبب */
.reason-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
    transition: color 0.4s ease;
}

.reason-box:hover .reason-number {
    color: #1C8A44;
}

/* أزرار القسم */
.why-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(45deg, #1C8A44, #22c55e);
    color: white;
    box-shadow: 0 8px 25px rgba(28, 138, 68, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(28, 138, 68, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #1e3a8a;
    border: 2px solid #e2e8f0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    border-color: #1C8A44;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* قسم الإحصائيات */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(28, 138, 68, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* تأثيرات دخول */
.reason-box {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease forwards;
}

.reason-box:nth-child(1) { animation-delay: 0.1s; }
.reason-box:nth-child(2) { animation-delay: 0.2s; }
.reason-box:nth-child(3) { animation-delay: 0.3s; }
.reason-box:nth-child(4) { animation-delay: 0.4s; }
.reason-box:nth-child(5) { animation-delay: 0.5s; }
.reason-box:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .new-why__container {
        gap: 60px;
    }
    
    .custom-title {
        font-size: 2.5rem;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .new-why {
        padding: 60px 0;
    }
    
    .new-why__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .custom-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .section-intro {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .reason-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .reason-number {
        order: -1;
        font-size: 2rem;
    }
    
    .why-actions {
        justify-content: center;
    }
    
    .btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .custom-title {
        font-size: 1.8rem;
    }
    
    .section-intro {
        font-size: 1.1rem;
    }
    
    .reason-box {
        padding: 15px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .sub-title {
        font-size: 1.1rem;
    }
    
    .why-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}


/* ===== قسم خطوات النجاح ===== */
.success-steps {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.success-steps::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(28, 138, 68, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.success-steps__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

/* الجانب الأيسر - النصوص */
.success-steps__text-box {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.custom-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #1C8A44, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.head-para {
    font-size: 1.4rem;
    color: #64748b;
    margin-bottom: 30px;
    font-weight: 500;
}

.highlight {
    color: #1C8A44;
    font-weight: 700;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.decoration-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #1C8A44, #22c55e);
    border-radius: 2px;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: #1C8A44;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* الخطوات */
.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 138, 68, 0.02), rgba(59, 130, 246, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover {
    transform: translateX(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(28, 138, 68, 0.3);
}

.step-card:hover::before {
    opacity: 1;
}

/* الجزء البصري للخطوة */
.step-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(45deg, #1C8A44, #22c55e);
    margin-bottom: 20px;
    opacity: 0.5;
}

.step-card:last-child .step-connector {
    display: none;
}

.step-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1C8A44, #22c55e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(28, 138, 68, 0.3);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(28, 138, 68, 0.4);
}

.step-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(28, 138, 68, 0.2);
    border-radius: 25px;
    animation: pulse 2s infinite;
    z-index: 1;
}

/* محتوى الخطوة */
.step-content {
    flex: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.header-num {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    background: #64748b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.num-1 { background: linear-gradient(45deg, #1C8A44, #22c55e); }
.num-2 { background: linear-gradient(45deg, #3b82f6, #60a5fa); }
.num-3 { background: linear-gradient(45deg, #8b5cf6, #a78bfa); }

.step-card:hover .header-num {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
}

.step-para {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-tag {
    display: inline-block;
    background: rgba(28, 138, 68, 0.1);
    color: #1C8A44;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 5px 5px 0;
    border: 1px solid rgba(28, 138, 68, 0.2);
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #1C8A44;
    font-weight: 500;
}

.feature i {
    color: #1C8A44;
    font-size: 0.9rem;
}

/* زر الدعوة للعمل */
.steps-cta {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
}

.steps-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(28, 138, 68, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.cta-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.success-steps_link {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #1C8A44, #22c55e) !important;
    color: white !important;
    padding: 18px 40px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 50px !important;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease !important;
    box-shadow: 0 8px 25px rgba(28, 138, 68, 0.4) !important;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.success-steps_link:hover .btn-shine {
    right: 100%;
}

.success-steps_link:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(28, 138, 68, 0.5) !important;
}

/* الجانب الأيمن - الصورة */
.success-steps__img-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

/* الشارات العائمة */
.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1e3a8a;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.floating-badge i {
    color: #1C8A44;
    font-size: 1.2rem;
}

.badge-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
    background: linear-gradient(135deg, #1C8A44, #22c55e);
    color: white;
}

.badge-2 i {
    color: white;
}

.badge-3 {
    bottom: 20%;
    left: -10px;
    animation-delay: 2s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* تأثيرات دخول */
.step-card {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .success-steps__container {
        gap: 60px;
    }
    
    .custom-title {
        font-size: 2.5rem;
    }
    
    .step-card {
        gap: 25px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .success-steps {
        padding: 60px 0;
    }
    
    .success-steps__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .custom-title {
        font-size: 2.2rem;
    }
    
    .head-para {
        font-size: 1.2rem;
    }
    
    .step-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .step-visual {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .step-connector {
        width: 40px;
        height: 2px;
        margin-bottom: 0;
    }
    
    .step-header {
        justify-content: center;
    }
    
    .steps-cta {
        padding: 30px;
    }
    
    .cta-content h4 {
        font-size: 1.5rem;
    }
    
    .floating-badge {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .badge-1, .badge-2, .badge-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 10px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .custom-title {
        font-size: 1.8rem;
    }
    
    .head-para {
        font-size: 1.1rem;
    }
    
    .step-card {
        padding: 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-para {
        font-size: 1rem;
    }
    
    .step-features {
        justify-content: center;
    }
    
    .steps-cta {
        padding: 25px 20px;
    }
    
    .cta-content h4 {
        font-size: 1.3rem;
    }
    
    .success-steps_link {
        padding: 15px 30px !important;
        font-size: 1.1rem !important;
    }
}


/* ===== قسم آراء العملاء ===== */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(28, 138, 68, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* رأس القسم */
.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.review__title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.review__title .highlight {
    background: linear-gradient(45deg, #1C8A44, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review__subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 30px;
    font-weight: 400;
}

/* التقييم العام */
.rating-overview {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.overall-rating {
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.rating-stars {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 10px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.rating-count {
    font-size: 1rem;
    color: #64748b;
}

/* Swiper Container */
.reviews-swiper {
    width: 100%;
    padding: 20px 10px 60px;
    position: relative;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    padding: 10px;
}

/* كارت التقييم */
.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 138, 68, 0.02), rgba(59, 130, 246, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(28, 138, 68, 0.3);
}

.review-card:hover::before {
    opacity: 1;
}

/* رأس التقييم */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.reviewer-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.reviewer-avatar {
    position: relative;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.review-card:hover .reviewer-avatar img {
    border-color: #1C8A44;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1C8A44, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border: 3px solid #e2e8f0;
}

.verified-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #1C8A44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    border: 2px solid white;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
    line-height: 1.2;
}

.reviewer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    color: #64748b;
}

.review-date {
    background: rgba(100, 116, 139, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.review-location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-location i {
    font-size: 0.8rem;
    color: #1C8A44;
}

.review-rating {
    text-align: left;
    flex-shrink: 0;
}

.review-rating .stars {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.review-rating .stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e3a8a;
}

/* محتوى التقييم */
.review-content {
    flex: 1;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 15px;
}

.review-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(28, 138, 68, 0.1);
    color: #1C8A44;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(28, 138, 68, 0.2);
}

/* تذييل التقييم */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.course-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.course-info i {
    color: #1C8A44;
}

.helpful-btn {
    background: rgba(100, 116, 139, 0.1);
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.helpful-btn:hover {
    background: rgba(28, 138, 68, 0.1);
    color: #1C8A44;
}

.helpful-btn.active {
    background: #1C8A44;
    color: white;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #1C8A44;
    background: rgba(255, 255, 255, 0.95);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-top: -25px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 1.2rem;
}

.swiper-button-next {
    left: 20px;
    right: auto;
}

.swiper-button-prev {
    right: 20px;
    left: auto;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    background: rgba(30, 58, 138, 0.5);
    opacity: 0.6;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #1C8A44;
    opacity: 1;
    transform: scale(1.2);
}

/* إحصائيات التقييمات */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.reviews-stats::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(28, 138, 68, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* قسم الدعوة للعمل */
.reviews-cta {
    background: linear-gradient(135deg, #1C8A44, #22c55e);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(28, 138, 68, 0.4);
}

.reviews-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.wtp-btn {
    position: relative;
    z-index: 2;
    background: white !important;
    color: #1C8A44 !important;
    padding: 18px 40px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 50px !important;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3) !important;
}

.wtp-btn:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تأثيرات دخول */
.review-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.swiper-slide-active .review-card {
    animation-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .review__title {
        font-size: 2.5rem;
    }
    
    .reviews-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 30px;
    }
    
    .reviews-cta {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 60px 0;
    }
    
    .review__title {
        font-size: 2.2rem;
    }
    
    .review__subtitle {
        font-size: 1.1rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-rating {
        align-self: flex-start;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }
    
    .reviews-cta {
        padding: 30px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .wtp-btn {
        padding: 16px 35px !important;
        font-size: 1.1rem !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 480px) {
    .review__title {
        font-size: 1.8rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .reviewer-details {
        text-align: center;
    }
    
    .reviewer-meta {
        justify-content: center;
    }
    
    .rating-overview {
        margin-top: 20px;
    }
    
    .overall-rating {
        padding: 20px 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .reviews-cta {
        padding: 25px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .wtp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== NAVBAR STYLES ===== */
.about-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img img {
    max-width: 100%;
    height: auto;
}

.logo-text span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
    background: linear-gradient(45deg, #1e3a8a, #1C8A44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a:hover {
    color: #1C8A44;
    background: rgba(28, 138, 68, 0.1);
}

.nav-links li a.active {
    color: #1C8A44;
    background: rgba(28, 138, 68, 0.1);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 50%;
    transform: translateX(50%);
    width: 6px;
    height: 6px;
    background: #1C8A44;
    border-radius: 50%;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1e3a8a;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn span:nth-child(1) {
    margin-bottom: 5px;
}

.mobile-menu-btn span:nth-child(3) {
    margin-top: 5px;
}

/* Mobile Menu Active State */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.2rem;
        border-radius: 0;
    }

    .nav-links li a.active::after {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    /* Overlay when menu is open */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active::before {
        opacity: 1;
        pointer-events: all;
    }
}

@media (max-width: 480px) {
    .logo-text span {
        font-size: 1.3rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-links {
        width: 85%;
    }

    .nav-links li a {
        font-size: 1.1rem;
        padding: 0.875rem 0;
    }
}

