/* ===================================
   CSS Variables
   =================================== */
:root {
    /* Primary Colors - Gold */
    --gold-primary: #C9A961;
    --gold-light: #E5C78B;
    --gold-dark: #A8893F;
    
    /* Secondary Colors - Brown */
    --brown-dark: #3E2723;
    --brown-medium: #6F4E37;
    --brown-light: #8D6E63;
    
    /* Background Colors */
    --bg-cream: #FAF7F2;
    --bg-white: #FFFFFF;
    --bg-black: #1A1A1A;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(62, 39, 35, 0.1);
    --shadow-medium: 0 8px 30px rgba(62, 39, 35, 0.2);
    --shadow-strong: 0 12px 40px rgba(62, 39, 35, 0.3);
    
    /* Border Radius */
    --radius-button: 50px;
    --radius-card: 15px;
    --radius-circle: 50%;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-transform: transform 0.3s ease;
    
    /* Font Sizes */
    --font-hero: 48px;
    --font-section: 40px;
    --font-card: 22px;
    --font-body: 16px;
    --font-small: 14px;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    font-size: var(--font-body);
    line-height: 1.6;
    color: var(--brown-dark);
    background-color: var(--bg-cream);
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--brown-dark);
}

h1 {
    font-size: var(--font-hero);
    font-weight: 900;
}

h2 {
    font-size: var(--font-section);
}

h3 {
    font-size: var(--font-card);
}

p {
    line-height: 1.8;
    color: var(--brown-medium);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: var(--radius-button);
    font-weight: 600;
    font-size: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--brown-dark);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--brown-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 12px 30px;
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--bg-white);
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

/* ===================================
   Header
   =================================== */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--brown-dark);
}

.logo i {
    color: var(--gold-primary);
    font-size: 32px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--brown-medium);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--brown-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    padding: 100px 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero::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 1440 320"><path fill="%23C9A961" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 97, 0.2);
    padding: 10px 25px;
    border-radius: var(--radius-button);
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--gold-light);
}

.hero-title {
    font-size: 56px;
    margin-bottom: 25px;
    color: var(--bg-white);
}

.hero-description {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.hero-feature i {
    color: var(--gold-primary);
    font-size: 24px;
}

/* ===================================
   Stats Section
   =================================== */
.stats {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--bg-cream);
    padding: 40px 30px;
    border-radius: var(--radius-card);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 32px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--brown-medium);
    font-weight: 500;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--brown-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--brown-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Featured Courses Section
   =================================== */
.featured-courses {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.course-card {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.course-image {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--bg-white);
    font-size: 64px;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-white);
    color: var(--gold-primary);
    padding: 5px 15px;
    border-radius: var(--radius-button);
    font-size: var(--font-small);
    font-weight: 600;
}

.course-content {
    padding: 30px;
}

.course-category {
    display: inline-block;
    background: var(--bg-cream);
    color: var(--gold-dark);
    padding: 5px 15px;
    border-radius: var(--radius-button);
    font-size: var(--font-small);
    font-weight: 600;
    margin-bottom: 15px;
}

.course-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--brown-dark);
}

.course-description {
    color: var(--brown-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--font-small);
    color: var(--brown-light);
}

.course-meta i {
    color: var(--gold-primary);
}

.section-cta {
    text-align: center;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-cream);
    padding: 40px 30px;
    border-radius: var(--radius-card);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 32px;
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--brown-dark);
}

.feature-description {
    color: var(--brown-medium);
    line-height: 1.6;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: var(--gold-primary);
    font-size: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--brown-medium);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 24px;
}

.author-name {
    font-size: 18px;
    color: var(--brown-dark);
    margin-bottom: 5px;
}

.author-role {
    font-size: var(--font-small);
    color: var(--brown-light);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--brown-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--gold-primary);
    font-size: 32px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold-primary);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-right: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--gold-primary);
    font-size: 20px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .stats-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --font-hero: 36px;
        --font-section: 32px;
        --font-card: 20px;
    }
    
    .header {
        height: 70px;
    }
    
    .nav-wrapper {
        height: 70px;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 18px;
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .stats-grid,
    .features-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 30px;
    }
    
    .btn-large {
        padding: 15px 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .course-image {
        height: 150px;
        font-size: 48px;
    }
}


/* ===================================
   Page Header (Common for all pages)
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    padding: 80px 0 60px;
    color: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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 1440 320"><path fill="%23C9A961" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 97, 0.2);
    padding: 10px 25px;
    border-radius: var(--radius-button);
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--gold-light);
}

.page-header-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.page-header-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.page-header-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.page-header-breadcrumb a {
    color: var(--gold-light);
    transition: var(--transition);
}

.page-header-breadcrumb a:hover {
    color: var(--gold-primary);
}

/* ===================================
   FAQ Search Section
   =================================== */
.faq-search-section {
    padding: 60px 0 40px;
    background: var(--bg-white);
}

.faq-search-box {
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-cream);
    border-radius: var(--radius-button);
    padding: 5px;
    box-shadow: var(--shadow-light);
}

.faq-search-box i {
    position: absolute;
    right: 25px;
    color: var(--gold-primary);
    font-size: 20px;
}

.faq-search-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 15px 60px 15px 25px;
    font-size: 16px;
    font-family: 'Tajawal', sans-serif;
    color: var(--brown-dark);
    outline: none;
}

.faq-search-input::placeholder {
    color: var(--brown-light);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.faq-category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-cream);
    border: 2px solid transparent;
    border-radius: var(--radius-button);
    color: var(--brown-medium);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
}

.faq-category-btn:hover {
    background: var(--gold-light);
    color: var(--brown-dark);
}

.faq-category-btn.active {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--brown-dark);
    border-color: var(--gold-primary);
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 60px 0;
    background: var(--bg-cream);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    margin-bottom: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-item.active {
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--gold-primary);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-cream);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.faq-question-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 20px;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--brown-dark);
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    color: var(--gold-primary);
    font-size: 18px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 30px 30px 95px;
    color: var(--brown-medium);
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 15px;
    color: var(--brown-medium);
}

.faq-answer-content ul {
    margin: 15px 0;
    padding-right: 20px;
}

.faq-answer-content ul li {
    margin-bottom: 10px;
    position: relative;
    color: var(--brown-medium);
}

.faq-answer-content ul li strong {
    color: var(--brown-dark);
    font-weight: 600;
}

.faq-answer-content a {
    color: var(--gold-dark);
    font-weight: 600;
    transition: var(--transition);
}

.faq-answer-content a:hover {
    color: var(--gold-primary);
}

/* ===================================
   Still Have Questions Section
   =================================== */
.still-questions {
    padding: 80px 0;
    background: var(--bg-white);
}

.questions-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    padding: 60px 40px;
    border-radius: var(--radius-card);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.questions-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.questions-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--brown-dark);
    position: relative;
    z-index: 1;
}

.questions-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--bg-white);
    position: relative;
    z-index: 1;
}

.questions-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.questions-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: var(--radius-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    background: rgba(201, 169, 97, 0.2);
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
    font-size: 24px;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--bg-white);
}

.contact-icon.email {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
    color: var(--bg-white);
}

.contact-icon.form {
    background: linear-gradient(135deg, #4285F4 0%, #1967D2 100%);
    color: var(--bg-white);
}

.contact-info h3 {
    font-size: 18px;
    color: var(--bg-white);
    margin-bottom: 5px;
}

.contact-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===================================
   Intro Section (Common)
   =================================== */
.intro-section,
.services-intro {
    padding: 80px 0;
    background: var(--bg-white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--brown-dark);
}

.intro-text {
    font-size: 18px;
    color: var(--brown-medium);
    line-height: 1.8;
    margin-bottom: 40px;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.intro-feature {
    padding: 30px 20px;
    background: var(--bg-cream);
    border-radius: var(--radius-card);
    transition: var(--transition);
}

.intro-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.intro-feature i {
    font-size: 40px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.intro-feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--brown-dark);
}

.intro-feature p {
    color: var(--brown-medium);
    margin: 0;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.intro-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: var(--radius-card);
}

.intro-stat i {
    font-size: 36px;
    color: var(--gold-primary);
}

.intro-stat h3 {
    font-size: 28px;
    color: var(--brown-dark);
    margin-bottom: 5px;
}

.intro-stat p {
    color: var(--brown-medium);
    margin: 0;
    font-size: 14px;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 24px;
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--bg-white);
}

.service-content {
    padding: 40px 30px 30px;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--brown-dark);
}

.service-description {
    color: var(--brown-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--brown-medium);
}

.service-features li i {
    color: var(--gold-primary);
    margin-top: 5px;
    flex-shrink: 0;
}

.service-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.service-footer .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
}

/* ===================================
   Why Services Section
   =================================== */
.why-services {
    padding: 80px 0;
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-cream);
    border-radius: var(--radius-card);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--bg-white);
    font-size: 32px;
}

.why-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--brown-dark);
}

.why-description {
    color: var(--brown-medium);
    line-height: 1.6;
}

/* ===================================
   Services CTA
   =================================== */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ===================================
   Workshops Section
   =================================== */
.workshops-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.workshop-card {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.workshop-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.1);
}

.workshop-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-white);
    color: var(--gold-dark);
    padding: 5px 15px;
    border-radius: var(--radius-button);
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.workshop-content {
    padding: 25px;
}

.workshop-category {
    display: inline-block;
    background: var(--bg-cream);
    color: var(--gold-dark);
    padding: 5px 15px;
    border-radius: var(--radius-button);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.workshop-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--brown-dark);
}

.workshop-description {
    color: var(--brown-medium);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 14px;
}

.workshop-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: var(--bg-cream);
    border-radius: 10px;
}

.workshop-price .price-label {
    color: var(--brown-medium);
    font-size: 14px;
}

.workshop-price .price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-dark);
}

.workshop-price .price-currency {
    color: var(--brown-medium);
    font-size: 14px;
}

.workshop-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--brown-light);
}

.workshop-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.workshop-meta i {
    color: var(--gold-primary);
}

/* ===================================
   Courses Page Section
   =================================== */
.courses-page-section {
    padding: 60px 0 80px;
    background: var(--bg-cream);
}

.courses-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.course-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: var(--bg-cream);
    border-radius: 10px;
}

.course-price .price-label {
    color: var(--brown-medium);
    font-size: 14px;
}

.course-price .price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-dark);
}

.course-price .price-currency {
    color: var(--brown-medium);
    font-size: 14px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Filter Section
   =================================== */
.filter-section {
    padding: 40px 0;
    background: var(--bg-white);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: var(--brown-dark);
    margin: 0;
}

.filter-title i {
    color: var(--gold-primary);
}

.filter-count {
    background: var(--bg-cream);
    padding: 8px 20px;
    border-radius: var(--radius-button);
    color: var(--brown-medium);
    font-weight: 600;
}

.filter-count span {
    color: var(--gold-dark);
    font-weight: 700;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-cream);
    border: 2px solid transparent;
    border-radius: var(--radius-button);
    color: var(--brown-medium);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
}

.filter-btn:hover {
    background: var(--gold-light);
    color: var(--brown-dark);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--brown-dark);
    border-color: var(--gold-primary);
}

/* ===================================
   Modal (Common for courses and workshops)
   =================================== */
.course-modal,
.workshop-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.course-modal.active,
.workshop-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-card);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-strong);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border: none;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    color: var(--brown-dark);
    font-size: 18px;
}

.modal-close:hover {
    background: var(--gold-primary);
    color: var(--bg-white);
    transform: rotate(90deg);
}

.modal-content {
    display: flex;
    flex-direction: column;
}

.modal-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 30px;
}

.modal-category {
    display: inline-block;
    background: var(--bg-cream);
    color: var(--gold-dark);
    padding: 5px 15px;
    border-radius: var(--radius-button);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--brown-dark);
}

.modal-price-section {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 15px 20px;
    background: var(--bg-cream);
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-price-label {
    color: var(--brown-medium);
    font-size: 16px;
}

.modal-price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-dark);
}

.modal-price-currency {
    color: var(--brown-medium);
    font-size: 14px;
}

.modal-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-cream);
    border-radius: 10px;
    color: var(--brown-medium);
    font-size: 14px;
}

.modal-meta-item i {
    color: var(--gold-primary);
    font-size: 18px;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--brown-dark);
}

.modal-section h3 i {
    color: var(--gold-primary);
}

.modal-section p {
    color: var(--brown-medium);
    line-height: 1.8;
    margin: 0;
}

.modal-list {
    list-style: none;
    padding: 0;
}

.modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    color: var(--brown-medium);
}

.modal-list li:last-child {
    border-bottom: none;
}

.modal-list li::before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: 700;
    flex-shrink: 0;
}

.modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.modal-actions .btn {
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

/* ===================================
   Responsive Design for New Sections
   =================================== */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header-title {
        font-size: 32px;
    }
    
    .page-header-description {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-question-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }
    
    .questions-box {
        padding: 40px 20px;
    }
    
    .questions-title {
        font-size: 24px;
    }
    
    .questions-description {
        font-size: 16px;
    }
    
    .questions-contacts {
        grid-template-columns: 1fr;
    }
    
    .intro-title {
        font-size: 28px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .modal-price-value {
        font-size: 24px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
    
    .filter-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-buttons {
        width: 100%;
    }
    
    .filter-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .faq-category-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .service-footer {
        flex-direction: column;
    }
    
    .service-footer .btn {
        width: 100%;
    }
}

/* ===================================
   Section Badge (Common)
   =================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold-dark);
    padding: 8px 20px;
    border-radius: var(--radius-button);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===================================
   About Story Section
   =================================== */
.about-story {
    padding: 100px 0;
    background: var(--bg-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.story-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    padding: 25px 35px;
    border-radius: var(--radius-card);
    text-align: center;
    box-shadow: var(--shadow-strong);
}

.experience-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--brown-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.experience-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--brown-dark);
}

.story-content {
    padding: 20px 0;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold-dark);
    padding: 8px 20px;
    border-radius: var(--radius-button);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-title {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--brown-dark);
    line-height: 1.3;
}

.story-text {
    color: var(--brown-medium);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 2px solid rgba(201, 169, 97, 0.2);
}

.story-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-stat i {
    font-size: 32px;
    color: var(--gold-primary);
}

.story-stat h3 {
    font-size: 28px;
    color: var(--brown-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.story-stat p {
    color: var(--brown-medium);
    margin: 0;
    font-size: 14px;
}

/* ===================================
   Vision & Mission Section
   =================================== */
.vision-mission {
    padding: 100px 0;
    background: var(--bg-cream);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 32px;
    margin-bottom: 25px;
}

.vm-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--brown-dark);
}

.vm-text {
    color: var(--brown-medium);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 16px;
}

.vm-list {
    list-style: none;
    padding: 0;
}

.vm-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--brown-medium);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.vm-list li:last-child {
    border-bottom: none;
}

.vm-list li i {
    color: var(--gold-primary);
    font-size: 18px;
    flex-shrink: 0;
}

/* ===================================
   Values Section
   =================================== */
.values-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-cream);
    padding: 40px 30px;
    border-radius: var(--radius-card);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    transition: var(--transition);
    z-index: 0;
}

.value-card:hover::before {
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.value-card:hover * {
    color: var(--bg-white) !important;
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    background: var(--bg-white);
    color: var(--gold-dark) !important;
}

.value-card:hover .value-features li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 36px;
    margin: 0 auto 25px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.value-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--brown-dark);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.value-description {
    color: var(--brown-medium);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.value-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.value-features li {
    padding: 8px 0;
    color: var(--brown-medium);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

/* ===================================
   Team Section
   =================================== */
.team-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(to top, rgba(62, 39, 35, 0.9), transparent);
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    transition: var(--transition);
}

.team-social-link:hover {
    background: var(--gold-primary);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.team-content {
    padding: 30px;
    text-align: center;
}

.team-name {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--brown-dark);
}

.team-role {
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.team-description {
    color: var(--brown-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.team-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brown-medium);
    font-size: 13px;
    font-weight: 500;
}

.team-stat i {
    color: var(--gold-primary);
}

/* ===================================
   Achievements Section
   =================================== */
.achievements-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.achievement-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-cream);
    border-radius: var(--radius-card);
    transition: var(--transition);
    border-right: 4px solid var(--gold-primary);
}

.achievement-card:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--bg-white);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 28px;
    flex-shrink: 0;
}

.achievement-content {
    flex: 1;
}

.achievement-title {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--brown-dark);
}

.achievement-year {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.achievement-description {
    color: var(--brown-medium);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

/* ===================================
   Timeline Section
   =================================== */
.timeline-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold-primary), var(--gold-dark));
    transform: translateX(50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.timeline-item:nth-child(odd) {
    right: 0;
    text-align: left;
}

.timeline-item:nth-child(even) {
    right: 50%;
    text-align: right;
}

.timeline-year {
    position: absolute;
    top: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
    font-weight: 900;
    font-size: 20px;
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -40px;
}

.timeline-content {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--brown-dark);
}

.timeline-content p {
    color: var(--brown-medium);
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/* ===================================
   About CTA Section
   =================================== */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    color: var(--bg-white);
    text-align: center;
}

.about-cta .cta-title {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.about-cta .cta-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ===================================
   Responsive Design for About Page
   =================================== */
@media (max-width: 992px) {
    .story-grid,
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-image img {
        height: 400px;
    }
    
    .timeline::before {
        right: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        right: 0;
        text-align: right;
        padding-right: 80px;
        padding-left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        right: -10px;
        left: auto;
    }
}

@media (max-width: 768px) {
    .about-story,
    .vision-mission,
    .values-section,
    .team-section,
    .achievements-section,
    .timeline-section,
    .about-cta {
        padding: 60px 0;
    }
    
    .story-title {
        font-size: 28px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vm-card {
        padding: 30px 25px;
    }
    
    .vm-title {
        font-size: 24px;
    }
    
    .team-image {
        height: 250px;
    }
    
    .achievement-card {
        flex-direction: column;
        text-align: center;
    }
    
    .achievement-icon {
        margin: 0 auto;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
    
    .timeline-item {
        padding-right: 70px;
    }
    
    .about-cta .cta-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .story-experience {
        padding: 15px 20px;
    }
    
    .experience-number {
        font-size: 36px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}


/* ===================================
   Contact Info Section
   =================================== */
.contact-info-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: var(--bg-cream);
    padding: 40px 30px;
    border-radius: var(--radius-card);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    transition: var(--transition);
    z-index: 0;
}

.contact-info-card:hover::before {
    height: 100%;
}

.contact-info-card:hover * {
    color: var(--bg-white) !important;
    position: relative;
    z-index: 1;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--bg-white);
    color: var(--gold-dark) !important;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-info-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--brown-dark);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.contact-info-text {
    color: var(--brown-medium);
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.contact-info-text a {
    color: var(--brown-medium);
    transition: var(--transition);
}

.contact-info-text a:hover {
    color: var(--gold-dark);
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-info-link:hover {
    color: var(--gold-primary);
    gap: 12px;
}

/* ===================================
   Contact Form Section
   =================================== */
.contact-form-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-container,
.contact-map-container {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.form-header,
.map-header {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    color: var(--bg-white);
}

.form-title,
.map-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--bg-white);
}

.form-description,
.map-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.contact-form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-label i {
    color: var(--gold-primary);
    font-size: 16px;
}

.required {
    color: #e74c3c;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    color: var(--brown-dark);
    background: var(--bg-cream);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-input::placeholder {
    color: var(--brown-light);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--gold-primary);
}

.form-checkbox label {
    color: var(--brown-medium);
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--gold-dark);
    font-weight: 600;
    transition: var(--transition);
}

.form-checkbox label a:hover {
    color: var(--gold-primary);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Map Section
   =================================== */
.map-wrapper {
    height: 400px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.map-info {
    padding: 30px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.map-info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 20px;
    flex-shrink: 0;
}

.map-info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--brown-dark);
}

.map-info-item p {
    color: var(--brown-medium);
    margin: 0;
    font-size: 14px;
}

/* ===================================
   Social Media Section
   =================================== */
.social-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-cream);
    border-radius: var(--radius-card);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.social-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 24px;
    flex-shrink: 0;
}

.social-card.facebook .social-card-icon {
    background: linear-gradient(135deg, #1877F2 0%, #0D5BC4 100%);
}

.social-card.twitter .social-card-icon {
    background: linear-gradient(135deg, #1DA1F2 0%, #0D8BD9 100%);
}

.social-card.instagram .social-card-icon {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
}

.social-card.linkedin .social-card-icon {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
}

.social-card.youtube .social-card-icon {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.social-card.whatsapp .social-card-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-card-content {
    flex: 1;
}

.social-card-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--brown-dark);
}

.social-card-content p {
    color: var(--brown-medium);
    margin: 0;
    font-size: 14px;
}

.social-card-follow {
    color: var(--gold-primary);
    font-size: 18px;
    transition: var(--transition);
}

.social-card:hover .social-card-follow {
    transform: translateX(-5px);
}

/* ===================================
   Quick Contact Section
   =================================== */
.quick-contact {
    padding: 80px 0;
    background: var(--bg-cream);
}

.quick-contact-box {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    padding: 60px;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: var(--bg-white);
}

.quick-contact-content {
    flex: 1;
}

.quick-contact-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.quick-contact-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===================================
   Form Validation Styles
   =================================== */
.input-error {
    border-color: #e74c3c !important;
    background: #fff5f5 !important;
}

.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message::before {
    content: '⚠';
    font-size: 14px;
}

.success-message {
    text-align: center;
    padding: 40px;
    background: var(--bg-cream);
    border-radius: var(--radius-card);
    margin-top: 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Responsive Design for Contact Page
   =================================== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-box {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-contact-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-info-section,
    .contact-form-section,
    .social-section,
    .quick-contact {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-header,
    .map-header {
        padding: 30px 25px 20px;
    }
    
    .form-title,
    .map-title {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-box {
        padding: 40px 30px;
    }
    
    .quick-contact-title {
        font-size: 24px;
    }
    
    .quick-contact-description {
        font-size: 16px;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .quick-contact-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .contact-info-title {
        font-size: 18px;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .social-card {
        padding: 20px;
    }
    
    .social-card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .social-card-content h3 {
        font-size: 16px;
    }
}






/* ===================================
   Carousel - Simple Scroll Solution
   =================================== */
.courses-carousel,
.testimonials-carousel {
    padding: 40px 0;
    background: var(--bg-cream);
    position: relative;
    width: 100%;
}

/* Track - Simple horizontal scroll */
.courses-carousel-track,
.testimonials-carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 50px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Hide scrollbar for Chrome/Safari */
.courses-carousel-track::-webkit-scrollbar,
.testimonials-carousel-track::-webkit-scrollbar {
    display: none;
}

/* Card sizes - IMPORTANT: flex-shrink: 0 */
.courses-carousel-track .course-card {
    flex: 0 0 auto;
    width: 350px;
    margin: 0;
}

.testimonials-carousel-track .testimonial-card {
    flex: 0 0 auto;
    width: 400px;
    margin: 0;
}

/* Fade edges */
.courses-carousel::before,
.courses-carousel::after,
.testimonials-carousel::before,
.testimonials-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.courses-carousel::before,
.testimonials-carousel::before {
    right: 0;
    background: linear-gradient(to left, var(--bg-cream), transparent);
}

.courses-carousel::after,
.testimonials-carousel::after {
    left: 0;
    background: linear-gradient(to right, var(--bg-cream), transparent);
}

/* Navigation Arrows */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-circle);
    background: var(--bg-white);
    border: 2px solid var(--gold-primary);
    color: var(--gold-dark);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--bg-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .courses-carousel-track .course-card {
        width: 300px;
    }
    
    .testimonials-carousel-track .testimonial-card {
        width: 320px;
    }
    
    .courses-carousel::before,
    .courses-carousel::after,
    .testimonials-carousel::before,
    .testimonials-carousel::after {
        width: 40px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .courses-carousel-track,
    .testimonials-carousel-track {
        padding: 20px 30px;
    }
}

@media (max-width: 480px) {
    .courses-carousel-track .course-card {
        width: 280px;
    }
    
    .testimonials-carousel-track .testimonial-card {
        width: 300px;
    }
}


.logo img {
    width: 65px;
    height:65px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}


/* ===================================
   Success Message
   =================================== */

.success-message {
    text-align: center;
    padding: 45px 30px;
    margin-top: 20px;
    background: var(--bg-cream);
    border: 1px solid rgba(39, 174, 96, 0.15);
    border-radius: var(--radius-card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    transform: translateY(20px) scale(0.98);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* Success Icon */

.success-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #27ae60;

    border-radius: 50%;

    box-shadow:
        0 8px 20px rgba(39, 174, 96, 0.25);

    animation: successPop 0.5s ease;
}

.success-icon i {
    color: #ffffff;
    font-size: 34px;
}


/* Title */

.success-title {
    margin: 0 0 12px;

    color: #27ae60;

    font-size: 24px;
    font-weight: 700;
}


/* Main Text */

.success-text {
    margin: 0 0 8px;

    color: var(--brown-medium);

    font-size: 17px;
    line-height: 1.7;
}

.success-text strong {
    font-weight: 700;
}


/* Description */

.success-subtext {
    max-width: 500px;

    margin: 0 auto 25px;

    color: var(--text-muted);

    font-size: 14px;
    line-height: 1.8;
}


/* New Message Button */

.success-close {
    border: none;

    padding: 12px 25px;

    border-radius: 8px;

    background: var(--brown-medium);

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.success-close:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* Success Animation */

@keyframes successPop {

    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}