/* مبادرة مهاد - التصميم الفاتح المبدع */

:root {
    /* ألوان فاتحة مقتبسة من الشعار */
    --emerald-primary: #10b981;
    --emerald-light: #6ee7b7;
    --emerald-whisper: #d1fae5;
    --emerald-ghost: #ecfdf5;
    --gold-primary: #f59e0b;
    --gold-light: #fbbf24;
    --gold-whisper: #fef3c7;
    --gold-ghost: #fffbeb;
    --white-pure: #ffffff;
    --white-cream: #fefefe;
    --white-pearl: #fafafa;
    --white-cloud: #f8fafc;
    --gray-light: #f1f5f9;
    --gray-medium: #e2e8f0;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    
    /* تدرجات فاتحة إبداعية */
    --gradient-emerald: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #6ee7b7 100%);
    --gradient-gold: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fbbf24 100%);
    --gradient-hero: radial-gradient(ellipse at center, #ffffff 0%, #fafafa 30%, #ecfdf5 70%, #fffbeb 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    
    /* ظلال ناعمة فاتحة */
    --shadow-whisper: 0 1px 3px rgba(16, 185, 129, 0.08);
    --shadow-soft: 0 4px 15px rgba(16, 185, 129, 0.12);
    --shadow-medium: 0 10px 25px rgba(16, 185, 129, 0.15);
    --shadow-strong: 0 20px 40px rgba(16, 185, 129, 0.18);
    --shadow-gold: 0 8px 25px rgba(245, 158, 11, 0.15);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    background: var(--white-pure);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============= HEADER ============= */
.luxury-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    padding: 15px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid var(--gray-medium);
    box-shadow: var(--shadow-whisper);
}

.luxury-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.luxury-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.logo-emblem {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--gradient-emerald);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: rotate(-2deg);
    overflow: hidden;
}

.logo-emblem::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(16, 185, 129, 0.1), transparent, rgba(245, 158, 11, 0.1), transparent);
    animation: logoSpin 15s linear infinite;
}

.logo-emblem::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: var(--gradient-gold);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.6;
}

.logo-emblem:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--shadow-strong);
}

.logo-image, .image-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    border: 3px solid white;
    z-index: 2;
    position: relative;
}

.logo-image {
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-placeholder {
    background: var(--emerald-whisper);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-primary);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.crown-emblem {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-dark);
    border: 2px solid white;
    box-shadow: var(--shadow-soft);
    z-index: 3;
}

.logo-content {
    text-align: right;
}

.logo-content h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--emerald-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 400;
}

.luxury-nav {
    display: flex;
    list-style: none;
    gap: 8px;
    background: var(--white-cloud);
    padding: 8px;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid var(--gray-medium);
    box-shadow: var(--shadow-soft);
}

.luxury-nav li {
    position: relative;
}

.luxury-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.luxury-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-emerald);
    border-radius: 50px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.luxury-nav a:hover::before,
.luxury-nav a.active::before {
    transform: scale(1);
}

.luxury-nav a:hover,
.luxury-nav a.active {
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    font-weight: 700;
}

.nav-icon {
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.luxury-nav a:hover .nav-icon {
    opacity: 1;
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    background: var(--gradient-emerald);
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-medium);
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

/* ============= SCROLL PROGRESS ============= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-emerald);
    z-index: 10001;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* ============= HERO SECTION ============= */
.magnificent-hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><pattern id="pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(16,185,129,0.05)"/></pattern><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    opacity: 0.5;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--gradient-emerald);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 10s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 100;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--emerald-whisper);
    border: 2px solid var(--emerald-light);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--emerald-primary) 50%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0,0,0,0.05);
    animation: titleSlide 1.2s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--text-medium);
    animation: fadeInLeft 1.5s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 2;
    color: var(--text-light);
    animation: fadeInRight 1.8s ease-out 0.9s both;
}

.royal-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    animation: bounceIn 2s ease-out 1.2s both;
}

.royal-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.royal-cta.primary {
    background: var(--gradient-emerald);
    color: var(--text-dark);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--emerald-light);
}

.royal-cta.secondary {
    background: var(--white-pure);
    color: var(--text-dark);
    border: 2px solid var(--emerald-light);
    box-shadow: var(--shadow-soft);
}

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

.royal-cta:hover::before {
    left: 100%;
}

.royal-cta:hover {
    transform: translateY(-5px) scale(1.05);
}

.royal-cta.primary:hover {
    background: var(--gradient-gold);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-strong);
}

.royal-cta.secondary:hover {
    background: var(--emerald-whisper);
    border-color: var(--emerald-primary);
}

/* ============= SECTIONS ============= */
.royal-introduction,
.luxury-services,
.goals-palace,
.partners-empire,
.royal-contact {
    padding: 120px 0;
    position: relative;
}

.royal-introduction {
    background: var(--white-pure);
}

.luxury-services {
    background: var(--white-pearl);
}

.goals-palace {
    background: var(--white-pure);
}

.partners-empire {
    background: var(--white-cloud);
}

.royal-contact {
    background: var(--white-pure);
}

.leadership-palace {
    padding: 120px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.vision-mission-palace {
    padding: 120px 0;
    background: var(--emerald-ghost);
    position: relative;
    overflow: hidden;
}

.values-crown {
    padding: 120px 0;
	 background: var(--emerald-ghost);
    color: var(--text-dark);
}

.vision-2030 {
    padding: 120px 0;
    background: var(--gold-ghost);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.intro-content,
.dreamy-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    background: var(--emerald-whisper);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--emerald-light);
    box-shadow: var(--shadow-whisper);
}

.royal-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    background: linear-gradient(135deg, var(--text-dark), var(--emerald-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.royal-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-emerald);
    border-radius: 2px;
}

.royal-description {
    font-size: 1.3rem;
    line-height: 2.2;
    color: var(--text-medium);
}

/* ============= LEADERSHIP SECTION ============= */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.leadership-card {
    background: var(--white-pure);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--emerald-whisper);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-gold);
    border-radius: 25px 25px 0 0;
}

.leadership-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--gold-light);
}

.leadership-frame {
    text-align: center;
}

.leadership-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--gradient-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-medium);
    transition: all 0.5s ease;
}

.leadership-image::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--emerald-light);
    border-radius: 50%;
    opacity: 0.4;
    animation: rotate 20s linear infinite;
}

.leadership-card:hover .leadership-image {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.leader-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold-light);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.leadership-title {
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.leadership-name {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-dark), var(--emerald-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leadership-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

.leadership-quote {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-medium);
    margin: 20px 0;
    padding: 25px;
    background: var(--white-pearl);
    border-radius: 15px;
    border-right: 4px solid var(--gold-light);
    position: relative;
    transition: all 0.3s ease;
}

.leadership-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--gold-primary);
    position: absolute;
    top: -5px;
    right: 15px;
    font-family: serif;
    opacity: 0.3;
}

.leadership-quote:hover {
    background: var(--emerald-whisper);
    transform: translateX(-5px);
    border-right-color: var(--emerald-primary);
}

.leadership-badge {
    display: inline-block;
    background: var(--gradient-emerald);
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 20px;
    box-shadow: var(--shadow-soft);
}

.prince-badge {
    background: var(--gradient-gold);
}

.vision-statement {
    margin-top: 100px;
    text-align: center;
}

.vision-frame {
    background: var(--white-pure);
    padding: 60px;
    border-radius: 30px;
    border: 2px solid var(--emerald-whisper);
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: var(--shadow-medium);
}

.vision-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-emerald);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
}

.vision-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.vision-frame h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--text-dark), var(--emerald-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.saudi-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--emerald-primary);
    margin-top: 30px;
}

.emblem-circle {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.emblem-circle:hover {
    transform: scale(1.1) rotate(10deg);
}

/* ============= CARDS GRID ============= */
.importance-grid,
.services-grid,
.goals-grid,
.values-grid,
.partners-grid,
.vision-2030-grid,
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.importance-card,
.luxury-service-card,
.goal-jewel,
.value-gem,
.partner-category,
.vision-item,
.vision-palace,
.mission-palace {
    background: var(--white-pure);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gray-medium);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.importance-card::before,
.luxury-service-card::before,
.goal-jewel::before,
.partner-category::before,
.vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-emerald);
    border-radius: 20px 20px 0 0;
}

.goal-jewel:nth-child(even)::before,
.partner-category:nth-child(even)::before {
    background: var(--gradient-gold);
}

.importance-card:hover,
.luxury-service-card:hover,
.goal-jewel:hover,
.value-gem:hover,
.partner-category:hover,
.vision-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--emerald-light);
}

.importance-icon,
.service-icon-luxury,
.partner-icon,
.vision-item-icon {
    width: 80px;
    height: 80px;
    background: var(--emerald-whisper);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--emerald-primary);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.importance-card:hover .importance-icon,
.luxury-service-card:hover .service-icon-luxury,
.partner-category:hover .partner-icon,
.vision-item:hover .vision-item-icon {
    background: var(--gradient-emerald);
    color: var(--text-dark);
    transform: scale(1.1) rotate(5deg);
}

.value-icon {
    font-size: 3rem;
    color: var(--emerald-primary);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.value-gem:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
    color: var(--gold-primary);
}

.goal-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.service-card-title,
.goal-title,
.value-name,
.partner-title,
.vision-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card-description,
.goal-jewel p,
.value-description,
.vision-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.partner-list {
    list-style: none;
    text-align: right;
}

.partner-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-medium);
    color: var(--text-medium);
}

.partner-list li:last-child {
    border-bottom: none;
}

/* ============= VISION MISSION ============= */
.vision-mission-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.vision-palace,
.mission-palace {
    background: var(--white-pure);
    border: 2px solid var(--emerald-whisper);
    position: relative;
    overflow: hidden;
}

.palace-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(16,185,129,0.05)"/></svg>');
    opacity: 0.3;
}

.palace-icon {
    font-size: 3rem;
    color: var(--emerald-primary);
    margin-bottom: 25px;
}

.palace-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--emerald-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.palace-text {
    font-size: 1.2rem;
    line-height: 2.2;
    color: var(--text-medium);
}

.highlight-text {
    background: linear-gradient(135deg, var(--emerald-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ============= CONTACT SECTION ============= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
}

.contact-info {
    background: var(--emerald-whisper);
    padding: 50px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--emerald-light);
}

.contact-info h3 {
    color: var(--emerald-primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white-pure);
    border-radius: 15px;
    box-shadow: var(--shadow-whisper);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
}

.contact-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--emerald-light);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
    background: var(--gradient-gold);
    transform: scale(1.1);
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-medium);
}

.luxury-form {
    background: var(--white-pure);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--gray-medium);
    position: relative;
}

.luxury-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-emerald);
    border-radius: 25px 25px 0 0;
}

.luxury-form h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white-pearl);
}

.form-input:focus {
    outline: none;
    border-color: var(--emerald-primary);
    background: var(--white-pure);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.royal-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-emerald);
    color: var(--text-dark);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--emerald-light);
}

.royal-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.5s ease;
}

.royal-submit:hover::before {
    left: 0;
}

.royal-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.royal-submit span {
    position: relative;
    z-index: 2;
}

/* ============= FOOTER ============= */
.imperial-footer {
    background: var(--text-dark);
    color: var(--white-pure);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.imperial-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(16,185,129,0.03)"/><circle cx="75" cy="75" r="2" fill="rgba(245,158,11,0.03)"/></svg>');
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-emerald);
    border-radius: 2px;
}

.footer-section p {
    color: var(--emerald-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.social-icon:hover {
    background: var(--gradient-gold);
    transform: scale(1.1) rotate(10deg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--emerald-light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-links a:hover::before {
    width: 25px;
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(-8px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    position: relative;
    z-index: 10;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-bottom-content p {
    margin: 0;
    color: var(--emerald-light);
}

.footer-vision {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-vision p {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* ============= SCROLL TO TOP ============= */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-emerald);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--emerald-light);
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--gradient-gold);
    box-shadow: var(--shadow-strong);
}

/* ============= ANIMATIONS ============= */
@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleSlide {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
    .royal-title { font-size: 2.5rem; }
    .container { padding: 0 20px; }
}

@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .luxury-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.5rem; }
    
    .royal-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .importance-grid,
    .services-grid,
    .goals-grid,
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .luxury-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white-pure);
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: var(--shadow-strong);
        border: 1px solid var(--gray-medium);
        z-index: 1000;
    }
    
    .luxury-nav.mobile-open {
        display: flex;
    }
    
    .luxury-nav a {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
        background: var(--white-pearl);
        justify-content: center;
        border: 1px solid var(--gray-medium);
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .royal-title { font-size: 2rem; }
    
    .royal-introduction,
    .luxury-services,
    .goals-palace,
    .partners-empire,
    .royal-contact,
    .leadership-palace,
    .vision-mission-palace,
    .values-crown,
    .vision-2030 {
        padding: 80px 0;
    }
    
    .importance-card,
    .luxury-service-card,
    .goal-jewel,
    .partner-category,
    .contact-info,
    .luxury-form {
        padding: 30px 20px;
    }
    
    .vision-frame {
        padding: 40px 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .royal-title { font-size: 1.8rem; }
}
	.watermark-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjAzIi8+CjxwYXRoIGQ9Ik0xMDAgNDBDMTIwIDQwIDEzNSA1NSAxMzUgNzVWMTI1QzEzNSAxNDUgMTIwIDE2MCAxMDAgMTYwSDc1QzU1IDE2MCA0MCAxNDUgNDAgMTI1Vjc1QzQwIDU1IDU1IDQwIDc1IDQwSDEwMFoiIGZpbGw9IiM0QTkwRTIiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPgo8Y2lyY2xlIGN4PSIxMDAiIGN5PSI4NSIgcj0iMTUiIGZpbGw9IiNGNTlFMEIiIGZpbGwtb3BhY2l0eT0iMC4wOCIvPgo8cGF0aCBkPSJNODUgMTEwQzg1IDEwNSA5MCAxMDAgOTUgMTAwSDEwNUMxMTAgMTAwIDExNSAxMDUgMTE1IDExMFYxMjVDMTE1IDEzNSAxMDUgMTQ1IDk1IDE0NUgxMDVDOTUgMTQ1IDg1IDEzNSA4NSAxMjVWMTEwWiIgZmlsbD0iI0Y1OUUwQiIgZmlsbC1vcGFjaXR5PSIwLjA4Ii8+Cjx0ZXh0IHg9IjEwMCIgeT0iMTgwIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSIjMTA5ODgxIiBmaWxsLW9wYWNpdHk9IjAuMDUiIGZvbnQtZmFtaWx5PSJBcmFiaWMiIGZvbnQtc2l6ZT0iMjQiIGZvbnQtd2VpZ2h0PSJib2xkIj7ZhdmH2KfYrjwvdGV4dD4KPHN2Zz4=');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* Alternative: Use actual logo image */
.watermark-logo-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background-image: url('image/ls.png'); /* استخدم الشعار الفعلي */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
    filter: grayscale(100%) contrast(0.3);
}

/* ============= BOARD SECTION ============= */
.board-section {
    padding:  20px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.board-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.02) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(245, 158, 11, 0.02) 100%);
    z-index: 1;
}

.board-content {
    position: relative;
    z-index: 10;
    max-width: 100%;
    margin: 0 auto;
}

.board-header {
    text-align: center;
    margin-bottom: 60px;
}

.board-header .section-badge {
    background: var(--emerald-whisper);
    color: var(--emerald-primary);
    border: 2px solid var(--emerald-light);
    font-size: 1.1rem;
    padding: 15px 35px;
    margin-bottom: 25px;
}

.board-header .royal-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0;
}

.board-header .royal-title::after {
    width: 150px;
    height: 5px;
    background: var(--gradient-emerald);
}

.board-message {
    background: var(--white-pure);
    padding: 10px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--emerald-whisper);
    position: relative;
    overflow: hidden;
}

.board-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-emerald);
    border-radius: 25px 25px 0 0;
}

.message-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--emerald-ghost);
    border-radius: 20px;
    border-right: 5px solid var(--emerald-primary);
    position: relative;
}

.message-intro::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    color: var(--emerald-light);
    font-family: serif;
    opacity: 0.3;
}

.message-intro p {
    font-size: 1.3rem;
    line-height: 2.2;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.message-body {
    margin-bottom: 40px;
}

.message-paragraph {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--white-pearl);
    border-radius: 15px;
    border: 1px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.message-paragraph:hover {
    background: var(--emerald-ghost);
    border-color: var(--emerald-light);
    transform: translateX(-5px);
}

.paragraph-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-dark);
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.message-paragraph p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-medium);
    margin: 0;
}

.highlight-brand {
    background: linear-gradient(135deg, var(--emerald-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.highlight-vision {
    background: linear-gradient(135deg, var(--gold-primary), var(--emerald-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.message-closing {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--gray-medium);
}

.closing-text {
    margin-bottom: 40px;
}

.closing-text p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.islamic-closing {
    text-align: center;
    font-size: 1.3rem !important;
    color: var(--emerald-primary) !important;
    background: var(--emerald-whisper);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid var(--emerald-light);
}

.signature-area {
    text-align: left;
    margin-top: 40px;
}

.signature-line {
    width: 250px;
    height: 2px;
    background: var(--gradient-emerald);
    margin-bottom: 15px;
    border-radius: 1px;
}

.signature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* ============= RESPONSIVE FOR BOARD SECTION ============= */
@media (max-width: 768px) {
    .board-section {
        padding: 10px 0;
    }
    
    .board-header .royal-title {
        font-size: 2.2rem;
    }
    
    .board-message {
        padding: 10px 10px;
    }
    
    .message-intro,
    .message-paragraph {
        padding: 20px;
    }
    
    .message-paragraph {
        flex-direction: column;
        text-align: center;
    }
    
    .paragraph-icon {
        margin: 0 auto 15px;
    }
    
    .watermark-logo,
    .watermark-logo-image {
        width: 150px;
        height: 150px;
        opacity: 0.02;
    }
}

@media (max-width: 480px) {
    .board-header .royal-title {
        font-size: 1.8rem;
    }
    
    .message-intro p,
    .message-paragraph p,
    .closing-text p {
        font-size: 1.1rem;
    }
    
    .signature-area {
        text-align: center;
    }
    
    .signature-line {
        margin: 0 auto 15px;
    }
}
/* ============= HERO SLIDER ============= */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-pure);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
    transform: scale(1.01);
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(236, 253, 245, 0.15) 30%, 
        rgba(255, 251, 235, 0.1) 70%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(0.5px);
    z-index: 2;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    transform: translateY(-50%);
}

.slider-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--emerald-light);
    border-radius: 50%;
    color: var(--emerald-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gradient-emerald);
    color: var(--text-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-strong);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--emerald-light);
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.dot.active,
.dot:hover {
    background: var(--emerald-primary);
    border-color: var(--emerald-primary);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-nav {
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 30px;
        gap: 12px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .slider-nav {
        padding: 0 15px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .slider-dots {
        bottom: 25px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* ============= HERO SECTION ============= */

.chairman-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    background: var(--white-pure);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--emerald-whisper);
    position: relative;
    overflow: hidden;
}

.chairman-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-emerald);
    border-radius: 25px 25px 0 0;
}

.chairman-image-container {
    flex-shrink: 0;
    position: relative;
}

.chairman-frame {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: var(--gradient-emerald);
    padding: 8px;
    transition: all 0.4s ease;
}

.chairman-frame:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.image-border-decoration {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--gold-light);
    border-radius: 50%;
    opacity: 0.7;
    animation: rotate 20s linear infinite;
}

.chairman-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white-pure);
    display: block;
}

.chairman-title-overlay {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--white-pure);
}

.chairman-intro {
    flex: 1;
    text-align: center;
}

.intro-icon {
    font-size: 3rem;
    color: var(--emerald-primary);
    margin-bottom: 20px;
    opacity: 0.7;
}

.chairman-intro h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--emerald-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chairman-intro p {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-style: italic;
}

.board-message {
    background: var(--white-pure);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--emerald-whisper);
    position: relative;
    overflow: hidden;
}

/* ============= RESPONSIVE FOR CHAIRMAN SECTION ============= */
@media (max-width: 768px) {
    .chairman-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .chairman-frame {
        width: 150px;
        height: 150px;
    }
    
    .chairman-intro h3 {
        font-size: 1.5rem;
    }
    
    .chairman-intro p {
        font-size: 1rem;
    }
}