/* ===== خطوط فخمة عربية ===== */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&family=Amiri:wght@400;700&family=Cairo:wght@200;300;400;600;700;900&display=swap');

/* ===== متغيرات الألوان الفخمة ===== */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4E8C1;
    --gold-dark: #B8941E;
    --olive-dark: #1A3C34;
    --olive-deeper: #0F241E;
    --olive-light: #2A5C4F;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --cream: #F8F6F0;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --shadow-luxury: 0 20px 60px rgba(26, 60, 52, 0.12);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.25);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E8C1 100%);
    --gradient-olive: linear-gradient(135deg, #1A3C34 0%, #2A5C4F 100%);
}

/* ===== الإعدادات الأساسية ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    direction: rtl;
    line-height: 1.8;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* ===== شريط التقدم ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 10000;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* ===== لوحة الوصول المتقدمة ===== */
.accessibility-panel {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.acc-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: 3px solid var(--white);
    color: var(--olive-dark);
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-luxury);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acc-toggle:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: var(--shadow-gold);
}

.acc-tools {
    position: absolute;
    right: 75px;
    top: 0;
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-luxury);
    border: 2px solid var(--gold-light);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.acc-tools.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.acc-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gold-light);
}

.acc-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.acc-section h4 {
    font-size: 14px;
    color: var(--olive-dark);
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.acc-section button {
    padding: 10px 15px;
    margin: 5px 3px;
    background: var(--cream);
    border: 2px solid var(--gold-light);
    border-radius: 8px;
    color: var(--olive-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 13px;
}

.acc-section button:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ===== النافبار الفخم ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9998;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-luxury);
    background: rgba(255, 255, 255, 0.95);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-wrapper {
    padding: 12px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 45px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 900;
    color: var(--olive-dark);
    font-family: 'Amiri', serif;
    margin: 0;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-size: 12px;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a i {
    font-size: 14px;
    opacity: 0.7;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--cream);
    border: 2px solid var(--gold-light);
    color: var(--olive-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.search-btn:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--olive-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* نافذة البحث */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 36, 30, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    position: relative;
    width: 90%;
    max-width: 700px;
}

.search-input {
    width: 100%;
    padding: 25px 70px 25px 25px;
    background: var(--white);
    border: 3px solid var(--gold-primary);
    border-radius: 20px;
    font-size: 20px;
    font-family: 'Cairo', sans-serif;
    color: var(--olive-dark);
    box-shadow: var(--shadow-gold);
}

.search-close {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: var(--gold-dark);
    transform: translateY(-50%) scale(1.1);
}

/* ===== Hero Section الفخم ===== */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-olive);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-light);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gold-light);
}

.hero-badge i {
    color: var(--gold-primary);
    font-size: 18px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Amiri', serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.typewriter {
    border-left: 3px solid var(--gold-primary);
    padding-left: 15px;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-family: 'Cairo', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-gold);
    color: var(--olive-dark);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    border: none;
}

.btn-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.hero-visual {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.floating-card {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 3px solid var(--gold-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--gold-primary);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(50%) translateY(0); }
    50% { transform: translateX(50%) translateY(-10px); }
}

/* ===== قسم المميزات ===== */
.features-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    margin-top: -80px;
    z-index: 3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card.luxury {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid var(--gold-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card.luxury:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--gold-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--olive-dark);
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.feature-card.luxury:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--olive-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== قسم المدونة ===== */
.blog-preview-section {
    padding: 120px 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header.center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gold-light);
    color: var(--olive-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--olive-dark);
    margin-bottom: 20px;
    font-family: 'Amiri', serif;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.blog-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card-luxury {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
}

.blog-card-luxury:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--gold-primary);
}

.blog-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.blog-image.default {
    background: var(--gradient-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--gold-primary);
}

.blog-body {
    padding: 35px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-luxury h3 {
    font-size: 1.5rem;
    color: var(--olive-dark);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.blog-card-luxury p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.read-more-luxury {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.read-more-luxury:hover {
    gap: 15px;
    color: var(--gold-dark);
}

.center-btn {
    text-align: center;
}

.btn-luxury-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: transparent;
    color: var(--olive-dark);
    text-decoration: none;
    border-radius: 15px;
    border: 3px solid var(--gold-primary);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-luxury-outline:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ===== قسم CTA ===== */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-olive);
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Amiri', serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-luxury-white {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--white);
    color: var(--olive-dark);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-luxury-white:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ===== Footer الفخم ===== */
.footer-luxury {
    background: var(--olive-deeper);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
}

.footer-logo h3 {
    font-size: 24px;
    color: var(--gold-primary);
    font-weight: 900;
    font-family: 'Amiri', serif;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--gold-primary);
    padding-right: 10px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--gold-primary);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== زر العودة للأعلى ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 15px;
    color: var(--olive-dark);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    z-index: 9997;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* ===== تأثيرات الظهور ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .floating-card {
        width: 250px;
        height: 250px;
        font-size: 100px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gold-light);
        padding: 20px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .accessibility-panel {
        right: 10px;
    }
    
    .acc-tools {
        right: 65px;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-luxury,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .blog-grid-home {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .search-input {
        font-size: 16px;
        padding: 20px 60px 20px 20px;
    }
    
    .accessibility-panel {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text span {
        font-size: 10px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        justify-content: space-around;
    }
    
    .stat-item {
        flex: 0 0 30%;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* ===== صفحات داخلية - Page Header ===== */
.page-header {
    min-height: 50vh;
    background: var(--gradient-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Amiri', serif;
}

.page-header-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== قسم عن المكتب ===== */
.about-intro-section {
    padding: 120px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    height: 600px;
}

.image-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold-primary);
    border-radius: 30px;
    z-index: 1;
}

.image-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-olive);
    border-radius: 30px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    color: var(--gold-primary);
    box-shadow: var(--shadow-luxury);
}

.floating-badge {
    position: absolute;
    z-index: 3;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--gold-primary);
}

.floating-badge.badge-1 {
    top: 50px;
    left: -50px;
    animation: float 4s ease-in-out infinite;
}

.floating-badge.badge-2 {
    bottom: 50px;
    left: -50px;
    animation: float 4s ease-in-out infinite 2s;
}

.badge-content {
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--olive-dark);
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

.about-intro-content {
    padding-right: 30px;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.intro-text strong {
    color: var(--olive-dark);
    font-weight: 800;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--cream);
    border-radius: 15px;
    border: 2px solid var(--gold-light);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--olive-dark);
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 1.2rem;
    color: var(--olive-dark);
    margin-bottom: 8px;
    font-weight: 800;
}

.value-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== قسم الرؤية والرسالة ===== */
.vision-mission-section {
    padding: 120px 0;
    background: var(--cream);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.vm-card {
    padding: 60px 50px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.vision-card {
    background: var(--gradient-olive);
    color: var(--white);
}

.mission-card {
    background: var(--white);
    border: 3px solid var(--gold-light);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--olive-dark);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.vm-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 25px;
    font-family: 'Amiri', serif;
}

.vision-card h3 {
    color: var(--gold-primary);
}

.mission-card h3 {
    color: var(--olive-dark);
}

.vm-card p {
    font-size: 1.1rem;
    line-height: 2;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.9);
}

.mission-card p {
    color: var(--text-gray);
}

/* ===== قسم الخبرات ===== */
.expertise-section {
    padding: 120px 0;
    background: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.expertise-card {
    padding: 50px 40px;
    background: var(--white);
    border: 2px solid var(--gold-light);
    border-radius: 25px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--gold-primary);
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-number {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-light);
    opacity: 0.3;
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: var(--cream);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--olive-dark);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    background: var(--gradient-gold);
    transform: scale(1.1);
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: var(--olive-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.expertise-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== قسم الإنجازات ===== */
.achievements-section {
    padding: 120px 0;
    background: var(--gradient-olive);
    position: relative;
    overflow: hidden;
}

.achievements-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.achievement-item {
    text-align: center;
    color: var(--white);
}

.achievement-icon {
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--gold-primary);
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.achievement-item:hover .achievement-icon {
    transform: scale(1.15) rotate(10deg);
    background: var(--gold-primary);
    color: var(--white);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== قسم لماذا نحن ===== */
.why-us-section {
    padding: 120px 0;
    background: var(--cream);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-card {
    padding: 45px 35px;
    background: var(--white);
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-luxury);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--olive-dark);
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-10deg);
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--olive-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Responsive - صفحة من نحن ===== */
@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .image-wrapper {
        height: 500px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid,
    .achievements-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-badge.badge-1,
    .floating-badge.badge-2 {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .image-decoration {
        display: none;
    }
}