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

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #4a4a4a;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 2rem;
    max-width: 1000px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 60px;
    width: auto;
}

.lory {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    line-height: 1;
}

.glory {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.seven {
    color: #c8a882;
    font-weight: 900;
}

.team {
    font-size: 0.8rem;
    color: white;
    letter-spacing: 4px;
    margin-top: -5px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #c8a882;
}

.nav a.active {
    color: #c8a882;
    position: relative;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c8a882;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    border-color: rgba(200, 168, 130, 0.5);
    background: rgba(200, 168, 130, 0.1);
    transform: scale(1.05);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 3px 0;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Panel */
.mobile-nav {
    position: absolute;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c8a882 transparent;
}

.mobile-nav::-webkit-scrollbar {
    width: 4px;
}

.mobile-nav::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-nav::-webkit-scrollbar-thumb {
    background: #c8a882;
    border-radius: 2px;
}

.mobile-nav-overlay.active .mobile-nav {
    right: 0;
}

/* Mobile Navigation Header */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo-icon {
    height: 40px;
    width: auto;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(200, 168, 130, 0.2);
    color: #c8a882;
    transform: rotate(90deg) scale(1.1);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    padding: 20px 0;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border-left: 4px solid transparent;
}

.mobile-nav-link:hover {
    background: linear-gradient(90deg, rgba(200, 168, 130, 0.1), transparent);
    color: #c8a882;
    border-left-color: #c8a882;
    transform: translateX(8px);
    text-decoration: none;
}

.mobile-nav-link.active {
    background: linear-gradient(90deg, rgba(200, 168, 130, 0.15), rgba(200, 168, 130, 0.05));
    color: #c8a882;
    border-left-color: #c8a882;
    font-weight: 600;
}

.mobile-nav-link i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    transform: scale(1.1);
}

.mobile-nav-link span {
    flex: 1;
    font-family: 'Cairo', sans-serif;
}

/* Mobile Navigation Animations */
.mobile-nav-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active .mobile-nav-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(5) {
    transition-delay: 0.5s;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Loading state for mobile toggle */
.mobile-menu-toggle[data-loading="true"] {
    opacity: 0.7;
    cursor: not-allowed;
}

.mobile-menu-toggle[data-loading="true"] .hamburger-line {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Enhanced accessibility */
.mobile-nav-link:focus {
    outline: 2px solid #c8a882;
    outline-offset: 2px;
    background: rgba(200, 168, 130, 0.2);
}

.mobile-menu-toggle:focus {
    outline: 2px solid #c8a882;
    outline-offset: 2px;
}

.mobile-nav-close:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Enhanced mobile nav for very small screens */
@media (max-width: 320px) {
    .mobile-nav {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-nav-link {
        padding: 10px 15px;
        font-size: 13px;
        gap: 10px;
    }
    
    .mobile-nav-link i {
        font-size: 14px;
        width: 18px;
    }
    
    .mobile-logo-icon {
        height: 25px;
    }
    
    .mobile-nav-close {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .mobile-nav-header {
        padding: 12px;
    }
    
    .mobile-nav-menu {
        padding: 12px 0;
    }
}

/* Print styles - hide mobile menu */
@media print {
    .mobile-menu-toggle,
    .mobile-nav-overlay {
        display: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mobile-nav {
        background: white;
        border: 2px solid black;
    }
    
    .mobile-nav-link {
        color: black;
        border-left-color: black;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        background: black;
        color: white;
    }
    
    .mobile-menu-toggle {
        border-color: white;
    }
    
    .hamburger-line {
        background: white;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .mobile-nav,
    .mobile-nav-overlay,
    .mobile-nav-item,
    .mobile-nav-link,
    .hamburger-line,
    .mobile-menu-toggle {
        transition: none !important;
        animation: none !important;
    }
    
    .mobile-nav-overlay.active .mobile-nav-item {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0s;
    }
}

/* Dark mode support (if implemented) */
@media (prefers-color-scheme: dark) {
    .mobile-nav {
        background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
        color: white;
    }
    
    .mobile-nav-link {
        color: white;
    }
    
    .mobile-nav-link:hover {
        background: linear-gradient(90deg, rgba(200, 168, 130, 0.2), transparent);
    }
}




/* News Ticker Styles / أنماط شريط الأخبار المتحرك */
.news-ticker-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-bottom: 1px solid #c8a882;
    position: fixed; /* جعل الشريط مثبت */
    top: 88px; /* بعد ارتفاع الهيدر */
    left: 0;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 999;
    height: 32px; /* جعل الشريط أنحف */
}

.news-ticker-wrapper {
    width: 100%; /* عرض كامل */
    margin: 0;
    display: flex;
    align-items: center;
    height: 32px;
    padding: 0 20px;
}

.news-label {
    background: linear-gradient(135deg, #c8a882 0%, #d4b896 100%);
    color: #1a1a1a;
    padding: 0 12px;
    height: 24px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 0.7rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(200, 168, 130, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-label i {
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.news-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 32px;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.news-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll-rtl 240s linear infinite;
    gap: 40px;
    padding: 0;
    height: 100%;
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.news-item {
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    height: 100%;
}

.news-item:hover {
    color: #c8a882;
}

.news-separator {
    color: #c8a882;
    font-size: 0.9rem;
    font-weight: bold;
    opacity: 0.6;
    margin: 0 5px;
    display: flex;
    align-items: center;
    height: 100%;
}

/* تأثيرات إضافية للشريط */
.news-ticker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, #2c2c2c 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.news-ticker::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(270deg, #2c2c2c 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* تجاوب شريط الأخبار */
@media (max-width: 768px) {
    .news-ticker-container {
        height: 30px;
    }
    
    .news-ticker-wrapper {
        height: 30px;
        padding: 0 15px;
    }
    
    .news-label {
        padding: 0 10px;
        height: 22px;
        font-size: 0.65rem;
        border-radius: 11px;
        gap: 4px;
    }
    
    .news-label i {
        font-size: 0.7rem;
    }
    
    .news-ticker {
        height: 30px;
        margin-right: 10px;
    }
    
    .news-item {
        font-size: 0.7rem;
    }
    
    .news-content {
        animation: scroll-rtl 160s linear infinite;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .news-ticker-container {
        height: 28px;
    }
    
    .news-ticker-wrapper {
        height: 28px;
        padding: 0 10px;
    }
    
    .news-label {
        height: 20px;
        padding: 0 8px;
        font-size: 0.6rem;
        border-radius: 10px;
        gap: 3px;
    }
    
    .news-label i {
        font-size: 0.65rem;
    }
    
    .news-ticker {
        height: 28px;
        margin-right: 8px;
    }
    
    .news-item {
        font-size: 0.65rem;
    }
    
    .news-content {
        gap: 25px;
        animation: scroll-rtl 128s linear infinite;
    }
    
    .news-separator {
        font-size: 0.8rem;
        margin: 0 3px;
    }
}

/* تعديل موقع المحتوى الرئيسي */
.main-content {
    margin-top: 120px; /* ارتفاع الهيدر (88px) + شريط الأخبار النحيف (32px) */
    position: relative;
    z-index: 1;
}

/* تحسينات للأنيميشن */
@media (prefers-reduced-motion: reduce) {
    .news-content {
        animation: none;
        transform: none;
    }
    
    .news-label i {
        animation: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%);
    min-height: 35vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decorative-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.decorative-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.decorative-lines::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(50%, 50%);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title {
    margin-bottom: 0.3rem;
    display: flex;
    justify-content: center;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 250px;
    height: auto;
}

.glory-large {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    line-height: 1;
}

.glory-large {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
}

.seven-large {
    color: #c8a882;
    font-weight: 900;
}

.team-large {
    font-size: 1.5rem;
    letter-spacing: 6px;
    display: block;
    margin-top: -10px;
}

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

.hero-description {
    max-width: 800px;
    margin: 0 auto 1.8rem;
    text-align: center;
}

.hero-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c8a882;
    margin-bottom: 1.2rem;
    margin-top: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-text-primary {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-text-secondary {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}



.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: #c8a882;
    color: white;
}

.btn-primary:hover {
    background-color: #b8986f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #4a4a4a;
}

/* About Us Section */
.about-section {
    padding: 2.4rem 0; /* تم تقليلها من 4rem إلى 2.4rem (تصغير 40%) */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(200, 168, 130, 0.1), rgba(200, 168, 130, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, rgba(74, 74, 74, 0.1), rgba(74, 74, 74, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.about-card {
    background: white;
    padding: 1.8rem 1.8rem; /* تم تقليلها من 3rem إلى 1.8rem (تصغير 40%) */
    border-radius: 12px; /* تم تقليلها من 20px إلى 12px (تصغير 40%) */
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.1); /* تم تقليلها (تصغير 40%) */
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-header {
    text-align: center;
    margin-bottom: 1.8rem; /* تم تقليلها من 3rem إلى 1.8rem (تصغير 40%) */
    position: relative;
}

.about-title {
    font-size: 1.32rem; /* تم تقليلها من 2.2rem إلى 1.32rem (تصغير 40%) */
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 0.6rem; /* تم تقليلها من 1rem إلى 0.6rem (تصغير 40%) */
}

.about-divider {
    width: 48px; /* تم تقليلها من 80px إلى 48px (تصغير 40%) */
    height: 2.4px; /* تم تقليلها من 4px إلى 2.4px (تصغير 40%) */
    background: linear-gradient(90deg, #c8a882, #4a4a4a);
    margin: 0 auto;
    border-radius: 1.2px; /* تم تقليلها من 2px إلى 1.2px (تصغير 40%) */
    position: relative;
}

.about-divider::after {
    content: '';
    position: absolute;
    top: -2.4px; /* تم تقليلها من -4px إلى -2.4px (تصغير 40%) */
    left: 50%;
    transform: translateX(-50%);
    width: 7.2px; /* تم تقليلها من 12px إلى 7.2px (تصغير 40%) */
    height: 7.2px; /* تم تقليلها من 12px إلى 7.2px (تصغير 40%) */
    background: #c8a882;
    border-radius: 50%;
    border: 1.2px solid white; /* تم تقليلها من 2px إلى 1.2px (تصغير 40%) */
}

.about-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem; /* تم تقليلها من 2rem إلى 1.2rem (تصغير 40%) */
}

.about-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.54rem; /* تم تقليلها من 0.9rem إلى 0.54rem (تصغير 40% إضافي) */
    padding: 0.72rem 0.54rem; /* تم تقليلها من 1.2rem 0.9rem إلى 0.72rem 0.54rem (تصغير 40% إضافي) */
    border-radius: 5.4px; /* تم تقليلها من 9px إلى 5.4px (تصغير 40% إضافي) */
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.05), rgba(200, 168, 130, 0.02));
    border: 1px solid rgba(200, 168, 130, 0.1);
    transition: all 0.3s ease;
}

.about-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 168, 130, 0.15);
    border-color: rgba(200, 168, 130, 0.3);
}

.about-icon {
    flex-shrink: 0;
    width: 28.8px; /* تم تقليلها من 48px إلى 28.8px (تصغير 40% إضافي) */
    height: 28.8px; /* تم تقليلها من 48px إلى 28.8px (تصغير 40% إضافي) */
    background: linear-gradient(135deg, #c8a882, #b8986f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.72rem; /* تم تقليلها من 1.2rem إلى 0.72rem (تصغير 40% إضافي) */
    box-shadow: 0 2.88px 7.2px rgba(200, 168, 130, 0.3); /* تم تقليلها (تصغير 40% إضافي) */
    transition: all 0.3s ease;
}

.about-item:hover .about-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(200, 168, 130, 0.4);
}

.about-text {
    width: 100%;
}

.about-text h3 {
    font-size: 0.468rem; /* تم تقليلها من 0.78rem إلى 0.468rem (تصغير 40% إضافي) */
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.288rem; /* تم تقليلها من 0.48rem إلى 0.288rem (تصغير 40% إضافي) */
}

.about-text p {
    font-size: 0.36rem; /* تم تقليلها من 0.6rem إلى 0.36rem (تصغير 40% إضافي) */
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Mission, Vision & Goals Section */
.mission-vision-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ede8e3 50%, #f1efec 100%);
    position: relative;
    overflow: hidden;
}

.decorative-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.curve-line {
    position: absolute;
    border: 2px solid rgba(200, 168, 130, 0.15);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.curve-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.curve-2 {
    width: 400px;
    height: 400px;
    top: 20%;
    right: -200px;
    animation-delay: -7s;
}

.curve-3 {
    width: 250px;
    height: 250px;
    bottom: -125px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-card {
    grid-column: 1;
    grid-row: 1;
}

.vision-card {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

.goals-card {
    grid-column: 1;
    grid-row: 2;
}

.mvg-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 168, 130, 0.2);
}

.mvg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mvg-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}

.mvg-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.mission-card .mvg-icon {
    background: linear-gradient(135deg, #c8a882 0%, #b8956f 100%);
}

.vision-card .mvg-icon {
    background: linear-gradient(135deg, #a8927a 0%, #9a8268 100%);
}

.goals-card .mvg-icon {
    background: linear-gradient(135deg, #d4b896 0%, #c4a684 100%);
}

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

.mvg-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

.mvg-content {
    position: relative;
    z-index: 3;
}

.mvg-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin: 0;
    font-family: 'Cairo', sans-serif;
    text-align: justify;
}

.mvg-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    transition: all 0.3s ease;
}

.mission-decoration {
    background: linear-gradient(135deg, #c8a882 0%, #b8956f 100%);
}

.vision-decoration {
    background: linear-gradient(135deg, #a8927a 0%, #9a8268 100%);
}

.goals-decoration {
    background: linear-gradient(135deg, #d4b896 0%, #c4a684 100%);
}

.mvg-card:hover .mvg-decoration {
    transform: scale(1.2);
    opacity: 0.15;
}

/* Responsive Design for Mission Vision Goals */
@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.5rem;
    }

    .mission-card,
    .vision-card,
    .goals-card {
        grid-column: 1;
    }

    .mission-card {
        grid-row: 1;
    }

    .vision-card {
        grid-row: 2;
    }

    .goals-card {
        grid-row: 3;
    }

    .mvg-card {
        padding: 2rem;
    }

    .curve-1,
    .curve-2,
    .curve-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: 3rem 0;
    }

    .mvg-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .mvg-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }

    .mvg-icon {
        margin: 0 0 1rem 0;
    }

    .mvg-title {
        font-size: 1.3rem;
    }

    .mvg-content p {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mvg-card {
        margin: 0 0.5rem;
        padding: 1.2rem;
    }

    .mvg-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .mvg-title {
        font-size: 1.2rem;
    }
}

/* Additional Visual Enhancements */
.mvg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    transition: all 0.3s ease;
}

.mission-card::before {
    background: linear-gradient(90deg, #c8a882 0%, #b8956f 100%);
}

.vision-card::before {
    background: linear-gradient(90deg, #a8927a 0%, #9a8268 100%);
}

.goals-card::before {
    background: linear-gradient(90deg, #d4b896 0%, #c4a684 100%);
}

.mvg-card:hover::before {
    height: 6px;
}

/* Smooth scrolling for navigation */
html {
    scroll-behavior: smooth;
}

/* Enhanced decorative elements */
.mvg-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(200, 168, 130, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mvg-card:hover::after {
    transform: scale(1.2) rotate(45deg);
    border-color: rgba(200, 168, 130, 0.2);
}





.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.about-card:hover h3 {
    color: #c8a882;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(200,168,130,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200,168,130,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.content-item::before {
    content: attr(data-number);
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #c8a882;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.content-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #c8a882, #d4b896);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(200, 168, 130, 0.3);
    transition: all 0.3s ease;
}

.content-item:hover .content-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(200, 168, 130, 0.4);
}

.content-item h3 {
    color: #4a4a4a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.content-item p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #4a4a4a;
    color: white;
    padding: 2rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    height: 80px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c8a882;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 1rem;
        max-width: 100%;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        width: 280px;
    }

    .mobile-nav-link {
        padding: 14px 16px;
        font-size: 15px;
    }

    .mobile-nav-link i {
        font-size: 16px;
        width: 22px;
    }

    .mobile-logo-icon {
        height: 35px;
    }

    .mobile-nav-close {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .mobile-nav-header {
        padding: 16px;
    }

    .mobile-nav-menu {
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 260px;
    }

    .mobile-nav-link {
        padding: 12px 14px;
        font-size: 14px;
        gap: 12px;
    }

    .mobile-nav-link i {
        font-size: 15px;
        width: 20px;
    }

    .mobile-logo-icon {
        height: 30px;
    }

    .mobile-nav-close {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .mobile-nav-header {
        padding: 14px;
    }

    .mobile-nav-menu {
        padding: 14px 0;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 6px;
    }

    .hamburger-line {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

    
    .hero {
        min-height: 30vh;
        padding: 2rem 0;
    }

    .hero-logo {
        width: 180px;
    }

    .hero-section-title {
        font-size: 1.5rem;
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .hero-text-primary {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-text-secondary {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }



    .glory-large {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* About Section Responsive */
    .about-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 3rem 0;
    }

    .about-card {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }

    .about-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-item {
        gap: 1.2rem;
        padding: 1.8rem 1.2rem;
    }

    .about-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .about-text h3 {
        font-size: 1.2rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }



@media (max-width: 480px) {

    .glory-large {
        font-size: 1.8rem;
    }
    
    .team-large {
        font-size: 0.8rem;
    }
    
    .glory-large {
        font-size: 2rem;
    }
    
    .content-item {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 25vh;
        padding: 1.5rem 0;
    }

    .hero-logo {
        width: 130px;
    }

    .hero-section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .hero-text-primary {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }

    .about-section {
        padding: 2rem 0;
    }

    .about-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .about-item {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

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

    .about-text h3 {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-description {
        margin-bottom: 1.3rem;
    }

    .hero-section-title {
        font-size: 1.3rem;
        margin-top: 0;
        margin-bottom: 0.8rem;
    }

    .logo-icon {
        height: 45px;
    }
    
    .footer-logo-icon {
        height: 50px;
    }
    
    .about-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-intro {
        margin-bottom: 2.5rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .card-icon,
    .content-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }
}

/* Our Work Page Styles */
.our-work-hero {
    background: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.our-work-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c8a882;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Portfolio Section */
.portfolio-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.filter-container {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--category-color, #c8a882);
    background: transparent;
    color: #4a4a4a;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn i {
    font-size: 0.9rem;
}

.filter-count {
    background: rgba(255,255,255,0.3);
    color: inherit;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 0.3rem;
}

.filter-btn:hover .filter-count,
.filter-btn.active .filter-count {
    background: rgba(255,255,255,0.2);
    color: white;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--category-color, #c8a882);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* More Button Styles */
.more-btn {
    position: relative;
}

.more-arrow {
    margin-right: 0.3rem;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.more-arrow.rotated {
    transform: rotate(180deg);
}

/* More Categories Dropdown */
.more-categories {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 1.5rem;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 1rem;
    border: 1px solid #e9ecef;
}

.more-categories::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.more-categories.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.more-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 0.5rem;
}

.more-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.more-category-btn {
    padding: 0.8rem 1rem;
    border: 2px solid var(--category-color, #6c757d);
    background: transparent;
    color: #4a4a4a;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: right;
    width: 100%;
}

.more-category-btn i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.more-category-btn:hover,
.more-category-btn.active {
    background: var(--category-color, #6c757d);
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Featured Section */
.featured-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 2rem;
}

.featured-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.featured-slide {
    min-width: 100%;
    position: relative;
}

.featured-project {
    position: relative;
    height: 400px;
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(74, 74, 74, 0.8), rgba(200, 168, 130, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.featured-project:hover .project-overlay {
    opacity: 1;
}

.featured-project:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.project-category {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.project-date {
    font-size: 1rem;
    opacity: 0.8;
}

.project-date i {
    margin-left: 0.5rem;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #4a4a4a;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(74, 74, 74, 0.9), rgba(200, 168, 130, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .card-overlay {
    opacity: 1;
}

.project-card:hover .card-image img {
    transform: scale(1.1);
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 1.5rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.card-category {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
}

.card-category i {
    font-size: 0.7rem;
}

/* Categorized Sections */
.categorized-sections {
    margin: 4rem 0;
}

.category-section {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.category-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.category-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a4a4a;
    margin: 0 0 0.5rem 0;
}

.category-text p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.category-count {
    text-align: center;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 15px;
    min-width: 80px;
}

.count-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4a4a4a;
    line-height: 1;
}

.count-label {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Category Slider */
.category-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.category-slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.category-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.category-projects-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-project-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.category-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.category-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(74, 74, 74, 0.9), rgba(200, 168, 130, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-project-card:hover .category-card-overlay {
    opacity: 1;
}

.category-project-card:hover .category-card-image img {
    transform: scale(1.1);
}

.category-overlay-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.category-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.category-card-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.category-card-date {
    font-size: 0.8rem;
    opacity: 0.8;
}

.category-card-date i {
    margin-left: 0.3rem;
}

/* Category Slider Controls */
.category-slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.category-slider-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #4a4a4a;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.category-slider-btn:hover {
    background: #c8a882;
    transform: scale(1.1);
}

.category-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.category-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-dot.active {
    background: #4a4a4a;
    transform: scale(1.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: #c8a882;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #4a4a4a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Projects Grid - New Design */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 320px;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.project-card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-cover {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.project-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.project-card:hover .project-cover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200,168,130,0.9), rgba(44,62,80,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link-icon {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link-icon:hover {
    color: white;
    text-decoration: none;
    transform: scale(1.1);
}

.project-footer {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.project-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.project-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.project-date i {
    color: #c8a882;
    font-size: 0.8rem;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    font-size: 1rem;
}

.image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Our Work Page Responsive Design */
@media (max-width: 992px) {
    .our-work-hero {
        min-height: 50vh;
        padding: 5rem 0 3rem;
    }

    .page-title {
        font-size: 2.8rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .filter-buttons {
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

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

    .featured-project {
        height: 300px;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Category sections responsive */
    .category-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .category-title-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .category-projects-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-section {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .category-text h3 {
        font-size: 1.5rem;
    }

    .category-card-image {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .our-work-hero {
        min-height: 40vh;
        padding: 4rem 0 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .portfolio-section {
        padding: 3rem 0;
    }

    .filter-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: 140px;
    }

    .more-categories {
        position: fixed;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
        min-width: 280px;
        max-width: 90vw;
    }

    .more-categories.show {
        transform: translate(50%, -50%);
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .featured-project {
        height: 250px;
    }

    .project-info {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.3rem;
    }

    .project-description {
        font-size: 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .project-card {
        height: auto;
        min-height: 280px;
    }

    .project-cover {
        height: 200px;
    }

    .project-footer {
        padding: 1rem;
    }

    .project-name {
        font-size: 1.2rem;
    }

    .project-description {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .project-date {
        font-size: 0.85rem;
    }

    .back-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* Category sections mobile */
    .category-projects-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .category-text h3 {
        font-size: 1.3rem;
    }

    .category-text p {
        font-size: 0.9rem;
    }

    .category-card-image {
        height: 180px;
    }

    .category-overlay-content {
        padding: 0.8rem;
    }

    .category-card-title {
        font-size: 1rem;
    }

    .category-card-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .our-work-hero {
        padding: 3rem 0 2rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .portfolio-section {
        padding: 2rem 0;
    }

    .container {
        padding: 0 15px;
    }

    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        min-width: 120px;
        flex-direction: column;
        gap: 0.3rem;
    }

    .filter-btn span {
        font-size: 0.75rem;
    }

    .more-categories {
        min-width: 250px;
        padding: 1rem;
    }

    .more-category-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .more-title {
        font-size: 1rem;
    }

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

    .featured-project {
        height: 200px;
    }

    .project-info {
        padding: 1rem;
    }

    .project-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .project-description {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .project-category {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .project-card {
        height: auto;
        min-height: 240px;
    }

    .project-cover {
        height: 160px;
    }

    .project-footer {
        padding: 0.8rem;
    }

    .project-name {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .project-description {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .project-date {
        font-size: 0.75rem;
    }

    .slider-controls {
        display: none;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    /* Category sections very small mobile */
    .category-header {
        padding-bottom: 0.5rem;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .category-text h3 {
        font-size: 1.1rem;
    }

    .category-text p {
        font-size: 0.8rem;
    }

    .count-number {
        font-size: 1.5rem;
    }

    .count-label {
        font-size: 0.8rem;
    }

    .category-card-image {
        height: 150px;
    }

    .category-slider-controls {
        margin-top: 1rem;
        padding: 0;
    }

    .category-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .category-dot {
        width: 10px;
        height: 10px;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 400px;
    min-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-message {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: #333;
}

.notification-success {
    border-right: 4px solid #28a745;
}

.notification-error {
    border-right: 4px solid #dc3545;
}

.notification-info {
    border-right: 4px solid #17a2b8;
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    background: #333;
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tooltip.show {
    opacity: 1;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
}

/* Enhanced Header Scroll Effect */
.header.scrolled {
    background-color: rgba(74, 74, 74, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* Lazy Loading Images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazy.loaded {
    opacity: 1;
}

/* Enhanced Team Member Cards */
.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.btn:hover::before {
    left: 100%;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #c8a882, #4a4a4a);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Enhanced Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    transition: right 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    background: white;
    width: 80%;
    max-width: 400px;
    height: 100%;
    margin-right: auto;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

/* Pricing Page Styles */
.pricing-hero {
    background: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.pricing-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(200,168,130,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #c8a882;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.2;
}

/* Pricing Packages Section */
.pricing-packages {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.package-card.popular {
    border-color: var(--package-color);
    transform: scale(1.05);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--package-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: var(--package-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.package-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--package-color);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #6c757d;
}

.package-features {
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

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

.feature-item.included i {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.feature-item.excluded {
    opacity: 0.5;
}

.feature-item.excluded i {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.feature-item span {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.package-action {
    text-align: center;
}

.btn-package {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid var(--package-color);
    background: transparent;
    color: var(--package-color);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: 'Cairo', sans-serif;
}

.btn-package:hover,
.btn-package.btn-popular {
    background: var(--package-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-package i {
    transition: transform 0.3s ease;
}

.btn-package:hover i {
    transform: translateX(-5px);
}

/* Package Card Animations */
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(200, 168, 130, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.package-card:hover::before {
    transform: translateX(100%);
}

.package-card > * {
    position: relative;
    z-index: 2;
}

/* Additional Services Section */
.additional-services {
    padding: 6rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #c8a882;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #c8a882;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: #4a4a4a;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-price {
    margin-bottom: 1.5rem;
}

.service-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #c8a882;
}

.service-price .currency {
    font-size: 1rem;
    color: #6c757d;
    margin-right: 0.5rem;
}

.btn-service {
    padding: 0.8rem 1.5rem;
    border: 2px solid #c8a882;
    background: transparent;
    color: #c8a882;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Cairo', sans-serif;
    margin: 0 auto;
}

.btn-service:hover {
    background: #c8a882;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 168, 130, 0.3);
}

/* Service Card Pulse Animation */
.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(200, 168, 130, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.service-card:hover::after {
    width: 300px;
    height: 300px;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.pricing-faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a4a4a;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #c8a882;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.pricing-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1rem 2rem;
    border: 2px solid #c8a882;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.btn-cta.primary {
    background: #c8a882;
    color: white;
}

.btn-cta.primary:hover {
    background: white;
    color: #c8a882;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-cta.secondary {
    background: transparent;
    color: #c8a882;
}

.btn-cta.secondary:hover {
    background: #c8a882;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Pricing Page Responsive Design */
@media (max-width: 992px) {
    .pricing-hero {
        min-height: 60vh;
        padding: 5rem 0 3rem;
    }

    .success-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .package-card.popular {
        transform: none;
    }

    .package-card.popular:hover {
        transform: translateY(-10px);
    }

    .package-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .package-name {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        min-height: 50vh;
        padding: 4rem 0 2rem;
    }

    .success-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .stat-icon {
        margin-bottom: 1rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-pricing {
        padding: 1rem;
    }

    .price {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        padding: 1rem 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 3rem 0 2rem;
    }

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

    .page-subtitle {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .package-card {
        padding: 1rem;
    }

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

    .package-name {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .feature-item {
        padding: 0.6rem 0;
    }

    .feature-item span {
        font-size: 0.9rem;
    }

    .btn-package {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .service-card {
        padding: 1rem;
    }

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

    .service-name {
        font-size: 1.1rem;
    }

    .service-price .price {
        font-size: 1.5rem;
    }

    .btn-service {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .btn-cta {
        min-width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Scroll offset for fixed header */
section {
    scroll-margin-top: 100px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Agency Page Styles */
.agency-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #c8a882 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.agency-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.agency-hero .decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(200,168,130,0.15) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

.agency-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Contracted Teams Section */
.contracted-teams-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 320px;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-cover {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.team-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.team-card:hover .team-cover img {
    transform: scale(1.05);
}

.team-footer {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.contract-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.contract-date i {
    color: #c8a882;
    font-size: 0.8rem;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200,168,130,0.9), rgba(44,62,80,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: center;
    font-weight: 600;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Agency Managers Section */
.agency-managers-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.managers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(189px, 1fr));
    gap: 1.26rem;
    margin-top: 2rem;
}

.manager-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 19px;
    padding: 0.945rem 0.63rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.manager-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    transition: height 0.3s ease;
}

.manager-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37,211,102,0.2);
    border-color: rgba(37,211,102,0.3);
}

.manager-card:hover::before {
    height: 6px;
}

.manager-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.63rem;
    color: white;
    font-size: 1.134rem;
    box-shadow: 0 3px 8px rgba(37,211,102,0.25);
    transition: all 0.3s ease;
}

.manager-card:hover .manager-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(37,211,102,0.4);
}

.manager-info {
    margin-bottom: 0.63rem;
}

.manager-name {
    font-size: 0.819rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.189rem;
}

.manager-role {
    font-size: 0.567rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.189rem;
}

.manager-specialty {
    font-size: 0.504rem;
    color: #95a5a6;
    font-style: italic;
    margin: 0;
}

.manager-contact {
    margin-bottom: 1.26rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.378rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 0.378rem 1.008rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.567rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 6px rgba(37,211,102,0.2);
    position: relative;
    overflow: hidden;
}

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

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
    text-decoration: none;
    color: white;
}

.whatsapp-btn i {
    font-size: 0.63rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.manager-badge {
    position: absolute;
    top: 6.3px;
    right: 6.3px;
    background: linear-gradient(135deg, #c8a882, #d4b896);
    color: white;
    padding: 0.189rem 0.378rem;
    border-radius: 11px;
    font-size: 0.441rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Agency Pricing Section (Compact) */
.agency-pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.compact-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compact-package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: auto;
    min-height: 400px;
}

.compact-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.compact-package-card.popular {
    border-color: var(--package-color);
    transform: scale(1.03);
}

.compact-package-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
}

.compact-package-card .package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.compact-package-card .package-icon {
    width: 60px;
    height: 60px;
    background: var(--package-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.compact-package-card .package-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.compact-package-card .package-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.compact-package-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--package-color);
}

.package-features-compact {
    margin-bottom: 1.5rem;
}

.package-features-compact .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features-compact .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.package-features-compact .feature-item i {
    color: #28a745;
    width: 16px;
}

.package-features-compact .feature-item.more-features {
    opacity: 0.7;
    font-style: italic;
}

.package-features-compact .feature-item.more-features i {
    color: #6c757d;
}

.btn-package-compact {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--package-color);
    background: transparent;
    color: var(--package-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-package-compact:hover,
.btn-package-compact.btn-popular {
    background: var(--package-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all-packages {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #c8a882, #d4b896);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(200,168,130,0.3);
}

.btn-view-all-packages:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200,168,130,0.4);
    text-decoration: none;
    color: white;
}

/* Agency CTA Section */
.agency-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.agency-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.agency-cta .cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.agency-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.agency-cta .btn-cta {
    padding: 1.2rem 2.5rem;
    border: 2px solid #25D366;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    min-width: 220px;
    justify-content: center;
}

.agency-cta .btn-cta.primary {
    background: #25D366;
    color: white;
}

.agency-cta .btn-cta.primary:hover {
    background: white;
    color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-decoration: none;
}

.agency-cta .btn-cta.secondary {
    background: transparent;
    color: #c8a882;
    border-color: #c8a882;
}

.agency-cta .btn-cta.secondary:hover {
    background: #c8a882;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.empty-state i {
    font-size: 4rem;
    color: #c8a882;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #495057;
}

.empty-state p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Agency Page Responsive Design */
@media (max-width: 992px) {
    .agency-hero {
        min-height: 60vh;
        padding: 5rem 0 3rem;
    }
    
    .agency-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .teams-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .managers-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .compact-packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .agency-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .agency-cta .btn-cta {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .agency-hero {
        min-height: 50vh;
        padding: 4rem 0 2rem;
    }
    
    .agency-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        height: auto;
        min-height: 180px;
    }
    
    .team-card-inner {
        padding: 1.5rem;
    }
    
    .team-logo {
        width: 60px;
        height: 60px;
    }
    
    .team-name {
        font-size: 1.1rem;
    }
    
    .managers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .manager-card {
        padding: 2rem 1.5rem;
    }
    
    .manager-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .manager-name {
        font-size: 1.2rem;
    }
    
    .whatsapp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .compact-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .compact-package-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .agency-cta .cta-title {
        font-size: 2rem;
    }
    
    .agency-cta .cta-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .agency-hero {
        padding: 3rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .agency-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    .team-card {
        min-height: 160px;
    }
    
    .team-card-inner {
        padding: 1rem;
    }
    
    .team-logo {
        width: 50px;
        height: 50px;
    }
    
    .team-name {
        font-size: 1rem;
    }
    
    .contract-date {
        font-size: 0.8rem;
    }
    
    .manager-card {
        padding: 1.5rem 1rem;
    }
    
    .manager-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .manager-name {
        font-size: 1.1rem;
    }
    
    .manager-role {
        font-size: 0.9rem;
    }
    
    .manager-specialty {
        font-size: 0.8rem;
    }
    
    .whatsapp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .compact-package-card {
        padding: 1rem;
    }
    
    .compact-package-card .package-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .compact-package-card .package-name {
        font-size: 1.2rem;
    }
    
    .compact-package-card .price {
        font-size: 1.5rem;
    }
    
    .btn-package-compact {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .agency-cta .cta-title {
        font-size: 1.8rem;
    }
    
    .agency-cta .btn-cta {
        min-width: 200px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-view-all-packages {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}


/* Simple Team Member Cards - Updated to match Mission-Vision Section Style */
.simple-team-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ede8e3 50%, #f1efec 100%);
    position: relative;
    overflow: hidden;
    /* Remove margin to connect with mission-vision section */
    margin-top: 0;
}

/* Team-specific decorative curves */
.team-curve-1 {
    width: 350px;
    height: 350px;
    top: -175px;
    right: -175px;
    animation-delay: -3s;
}

.team-curve-2 {
    width: 280px;
    height: 280px;
    top: 40%;
    left: -140px;
    animation-delay: -10s;
}

.team-curve-3 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: 20%;
    animation-delay: -17s;
}

.simple-team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.simple-team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.simple-team-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
}

.simple-team-subtitle {
    font-size: 1rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Cairo', sans-serif;
}

/* Team Grid */
.simple-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Simple Team Card - Updated to match MVG card style */
.simple-team-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 168, 130, 0.2);
}

.simple-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Member Avatar */
.simple-member-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 3;
}

.simple-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(200, 168, 130, 0.6);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(200, 168, 130, 0.25);
}

.simple-team-card:hover .simple-avatar-img {
    transform: scale(1.05);
    border-color: #c8a882;
    box-shadow: 0 6px 18px rgba(200, 168, 130, 0.35);
}

/* Fallback Avatar (if no image) */
.simple-avatar-fallback {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8a882 0%, #d4b896 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    border: 3px solid rgba(200, 168, 130, 0.6);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(200, 168, 130, 0.25);
}

.simple-team-card:hover .simple-avatar-fallback {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(200, 168, 130, 0.35);
}

/* Member Name */
.simple-member-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Cairo', sans-serif;
    position: relative;
    z-index: 3;
}

/* Info Button - Updated to match MVG icon style */
.simple-info-btn {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #c8a882 0%, #b8956f 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(200, 168, 130, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.simple-info-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 1;
}

.simple-info-btn:hover::before {
    width: 60px;
    height: 60px;
}

.simple-info-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(200, 168, 130, 0.4);
    background: linear-gradient(135deg, #b8956f 0%, #a8836c 100%);
}

.simple-info-btn i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.simple-info-btn:hover i {
    transform: scale(1.1);
}

/* Team Card Decoration - Similar to MVG cards */
.simple-team-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.1), rgba(200, 168, 130, 0.05));
    transition: all 0.3s ease;
    z-index: 1;
}

.simple-team-card:hover::after {
    transform: scale(1.3);
    opacity: 0.8;
}

/* Member Type Specific Avatar Colors */
.founder-avatar {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
}

.manager-avatar {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%) !important;
}

.head-staff-avatar {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
}

.designer-avatar {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%) !important;
}

.staff-avatar {
    background: linear-gradient(135deg, #c8a882 0%, #d4b896 100%) !important;
}

/* Simple Modal */
.simple-team-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.simple-team-modal.show {
    opacity: 1;
    visibility: visible;
}

.simple-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(200, 168, 130, 0.15);
    transform: scale(0.8) translateY(30px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.simple-team-modal.show .simple-modal-content {
    transform: scale(1) translateY(0);
}

/* Modal Close Button */
.simple-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(200, 168, 130, 0.1);
    border: 1px solid rgba(200, 168, 130, 0.3);
    border-radius: 50%;
    color: #c8a882;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.simple-modal-close:hover {
    background: #c8a882;
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(200, 168, 130, 0.3);
}

/* Modal Header */
.simple-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(200, 168, 130, 0.15);
}

.simple-modal-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    position: relative;
}

.simple-modal-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #c8a882;
    box-shadow: 0 8px 20px rgba(200, 168, 130, 0.3);
}

.simple-modal-avatar-fallback {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8a882 0%, #d4b896 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    border: 4px solid #c8a882;
    box-shadow: 0 8px 20px rgba(200, 168, 130, 0.3);
}

.simple-modal-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    font-family: 'Cairo', sans-serif;
}

.simple-modal-role {
    display: inline-block;
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.1) 0%, rgba(200, 168, 130, 0.05) 100%);
    color: #c8a882;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(200, 168, 130, 0.2);
}

/* Modal Body */
.simple-modal-body {
    text-align: center;
}

.simple-modal-section {
    margin-bottom: 1.5rem;
}

.simple-modal-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Cairo', sans-serif;
}

.simple-modal-section-title i {
    font-size: 0.9rem;
    color: #c8a882;
}

.simple-modal-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    text-align: right;
    direction: rtl;
    background: rgba(248, 249, 250, 0.8);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(200, 168, 130, 0.1);
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-team-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .simple-team-card {
        max-width: 120px;
        padding: 15px 12px 12px;
    }
    
    .simple-member-avatar {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .simple-member-name {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .simple-info-btn {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .simple-modal-content {
        padding: 1.5rem;
        max-width: 350px;
    }
    
    .simple-modal-avatar {
        width: 70px;
        height: 70px;
    }
    
    .simple-modal-name {
        font-size: 1.2rem;
    }
    
    .simple-modal-bio {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .simple-team-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 12px;
    }
    
    .simple-team-card {
        max-width: 100px;
        padding: 12px 8px 8px;
        border-radius: 12px;
    }
    
    .simple-member-avatar {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
    
    .simple-avatar-fallback {
        font-size: 1.2rem;
    }
    
    .simple-member-name {
        font-size: 0.75rem;
        margin-bottom: 5px;
        line-height: 1.1;
    }
    
    .simple-info-btn {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
    
    .simple-modal-content {
        padding: 1.2rem;
        max-width: 300px;
        width: 95%;
    }
    
    .simple-modal-avatar {
        width: 60px;
        height: 60px;
    }
    
    .simple-modal-avatar-fallback {
        font-size: 1.5rem;
    }
    
    .simple-modal-name {
        font-size: 1.1rem;
    }
    
    .simple-modal-role {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .simple-modal-bio {
        font-size: 0.85rem;
        padding: 0.8rem;
        line-height: 1.6;
    }
    
    .simple-team-title {
        font-size: 1.8rem;
    }
    
    .simple-team-subtitle {
        font-size: 0.9rem;
    }
}

/* Smooth scrollbar for modal content */
.simple-modal-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 168, 130, 0.3) transparent;
}

.simple-modal-content::-webkit-scrollbar {
    width: 6px;
}

.simple-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.simple-modal-content::-webkit-scrollbar-thumb {
    background: rgba(200, 168, 130, 0.3);
    border-radius: 3px;
}

.simple-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 168, 130, 0.5);
}

/* Enhanced Team Member Modal */
.team-member-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 15px;
}

.team-member-modal.show {
    opacity: 1;
    visibility: visible;
}

.team-member-modal .modal-content {
    background: white;
    border-radius: 24px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(200, 168, 130, 0.25);
    transform: scale(0.85) translateY(40px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.team-member-modal.show .modal-content {
    transform: scale(1) translateY(0);
}

/* Modal Close Button */
.team-member-modal .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(200, 168, 130, 0.3);
    border-radius: 50%;
    color: #c8a882;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.team-member-modal .modal-close:hover {
    background: #c8a882;
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(200, 168, 130, 0.4);
}

/* Modal Header - Compact */
.team-member-modal .modal-header {
    background: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%);
    padding: 20px 20px 18px;
    text-align: center;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.team-member-modal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(200, 168, 130, 0.12), transparent);
    pointer-events: none;
}

.team-member-modal .modal-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    position: relative;
    z-index: 2;
}

.team-member-modal .modal-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.team-member-modal .modal-avatar-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8a882 0%, #d4b896 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    position: relative;
}

/* Member Type Specific Colors */
.founder-modal .modal-avatar-icon,
.founder-avatar {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.manager-modal .modal-avatar-icon,
.manager-avatar {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.head-staff-modal .modal-avatar-icon,
.head-staff-avatar {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.designer-modal .modal-avatar-icon,
.designer-avatar {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.staff-modal .modal-avatar-icon,
.staff-avatar {
    background: linear-gradient(135deg, #c8a882 0%, #d4b896 100%);
}

.team-member-modal .modal-member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.team-member-modal .modal-member-role {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.team-member-modal .modal-member-role i {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Role Type Specific Styles */
.founder-role {
    background: rgba(243, 156, 18, 0.2) !important;
    border-color: rgba(243, 156, 18, 0.3) !important;
}

.manager-role {
    background: rgba(52, 152, 219, 0.2) !important;
    border-color: rgba(52, 152, 219, 0.3) !important;
}

.head-staff-role {
    background: rgba(231, 76, 60, 0.2) !important;
    border-color: rgba(231, 76, 60, 0.3) !important;
}

.designer-role {
    background: rgba(155, 89, 182, 0.2) !important;
    border-color: rgba(155, 89, 182, 0.3) !important;
}

/* Modal Body - Enhanced */
.team-member-modal .modal-body {
    padding: 20px 25px 25px;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 168, 130, 0.3) transparent;
}

.team-member-modal .modal-body::-webkit-scrollbar {
    width: 6px;
}

.team-member-modal .modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.team-member-modal .modal-body::-webkit-scrollbar-thumb {
    background: rgba(200, 168, 130, 0.3);
    border-radius: 3px;
}

.team-member-modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 168, 130, 0.5);
}

.team-member-modal .modal-section {
    margin-bottom: 18px;
}

.team-member-modal .modal-section:last-child {
    margin-bottom: 0;
}

.team-member-modal .modal-section-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(200, 168, 130, 0.1);
}

.team-member-modal .modal-section-title i {
    font-size: 0.85rem;
    color: #c8a882;
    width: 18px;
    text-align: center;
}

.team-member-modal .modal-bio-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #444;
    text-align: right;
    direction: rtl;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(200, 168, 130, 0.15);
    margin: 0;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 2px 8px rgba(200, 168, 130, 0.08);
    position: relative;
    overflow: hidden;
    max-height: 350px;
    overflow-y: auto;
}

.team-member-modal .modal-bio-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #c8a882, #d4b896);
    border-radius: 0 16px 16px 0;
}

.team-member-modal .modal-bio-text::-webkit-scrollbar {
    width: 4px;
}

.team-member-modal .modal-bio-text::-webkit-scrollbar-track {
    background: rgba(200, 168, 130, 0.1);
    border-radius: 2px;
}

.team-member-modal .modal-bio-text::-webkit-scrollbar-thumb {
    background: rgba(200, 168, 130, 0.4);
    border-radius: 2px;
}

.team-member-modal .modal-bio-text::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 168, 130, 0.6);
}

/* Modal Social Links */
.team-member-modal .modal-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.team-member-modal .modal-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    min-width: 100px;
    justify-content: center;
}

.team-member-modal .modal-social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.team-member-modal .modal-social-link i {
    font-size: 0.9rem;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .team-member-modal {
        padding: 12px;
    }
    
    .team-member-modal .modal-content {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 18px;
    }
    
    .team-member-modal .modal-header {
        padding: 16px 15px 14px;
        border-radius: 18px 18px 0 0;
    }
    
    .team-member-modal .modal-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .team-member-modal .modal-avatar-icon {
        font-size: 1.5rem;
    }
    
    .team-member-modal .modal-member-name {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .team-member-modal .modal-member-role {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .team-member-modal .modal-body {
        padding: 16px 18px 18px;
    }
    
    .team-member-modal .modal-bio-text {
        font-size: 0.85rem;
        padding: 16px;
        line-height: 1.7;
        max-height: 280px;
    }
    
    .team-member-modal .modal-social-links {
        gap: 8px;
    }
    
    .team-member-modal .modal-social-link {
        font-size: 0.8rem;
        padding: 6px 10px;
        min-width: 90px;
    }
    
    .team-member-modal .modal-close {
        width: 28px;
        height: 28px;
        font-size: 0.95rem;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .team-member-modal .modal-content {
        border-radius: 15px;
        max-height: 95vh;
    }
    
    .team-member-modal .modal-header {
        padding: 14px 12px 12px;
        border-radius: 15px 15px 0 0;
    }
    
    .team-member-modal .modal-avatar {
        width: 55px;
        height: 55px;
    }
    
    .team-member-modal .modal-avatar-icon {
        font-size: 1.4rem;
    }
    
    .team-member-modal .modal-member-name {
        font-size: 1.1rem;
    }
    
    .team-member-modal .modal-member-role {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .team-member-modal .modal-body {
        padding: 14px 15px 15px;
    }
    
    .team-member-modal .modal-section-title {
        font-size: 0.85rem;
    }
    
    .team-member-modal .modal-bio-text {
        font-size: 0.8rem;
        padding: 14px;
        line-height: 1.6;
        max-height: 240px;
    }
    
    .team-member-modal .modal-social-link {
        font-size: 0.75rem;
        padding: 5px 8px;
        min-width: 80px;
        gap: 6px;
    }
    
    .team-member-modal .modal-close {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
        top: 8px;
        right: 8px;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

/* Modal animation improvements */
@media (prefers-reduced-motion: reduce) {
    .team-member-modal,
    .team-member-modal .modal-content,
    .team-member-modal .modal-close {
        transition: none !important;
        animation: none !important;
    }
    
    .team-member-modal.show .modal-content {
        transform: scale(1) translateY(0);
    }
}

/* Social Media Contact Section */
.social-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.social-decorative-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.social-curve-1 {
    position: absolute;
    top: 15%;
    left: -8%;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(200, 168, 130, 0.1);
    border-radius: 60% 40% 30% 70%;
    animation: float 12s ease-in-out infinite;
}

.social-curve-2 {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(200, 168, 130, 0.08);
    border-radius: 30% 70% 60% 40%;
    animation: float 8s ease-in-out infinite reverse;
}

.social-curve-3 {
    position: absolute;
    bottom: 10%;
    left: 40%;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(200, 168, 130, 0.12);
    border-radius: 70% 30% 40% 60%;
    animation: float 10s ease-in-out infinite;
}

.social-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.social-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    font-family: 'Cairo', sans-serif;
}

.social-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Important Links Section (Simplified) */
.important-links.simplified {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}



/* Simple Links Grid */
.simple-links-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Simple Link Design */
.simple-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.simple-link:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.12);
}

.simple-link i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.simple-link:hover i {
    transform: scale(1.1);
}

/* Platform-specific colors for simple links */
.tiktok-link i {
    color: #ff0050;
}

.youtube-link i {
    color: #ff0000;
}

.telegram-link i {
    color: #0088cc;
}

.instagram-link i {
    background: linear-gradient(45deg, #e4405f, #833ab4, #fccc63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jaco-link i {
    color: #4CAF50;
}

.discord-link i {
    color: #5865F2;
}

.threads-link i {
    color: #000000;
    background: white;
    border-radius: 50%;
    padding: 1px;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.whatsapp-link i {
    color: #25D366;
}



/* Group-specific styling */
.social-group {
    border-left: 3px solid #0088cc;
}

.gaming-group {
    border-left: 3px solid #4CAF50;
}

/* Support Section (Simplified) */
.support-section {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 10px;
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(231, 76, 60, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.support-title {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Cairo', sans-serif;
}

.support-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.donate-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    min-width: 180px;
}

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

.donate-button:hover::before {
    left: 100%;
}

.donate-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    color: white;
}

.donate-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.donate-icon i {
    font-size: 1rem;
    color: white;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.donate-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: right;
}

.donate-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'Cairo', sans-serif;
}

.donate-platform {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 400;
    margin-top: 2px;
}

.donate-arrow {
    flex-shrink: 0;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.donate-button:hover .donate-arrow {
    transform: translateX(-3px);
}

.donate-arrow i {
    font-size: 0.9rem;
}

.support-description {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.3;
    margin: 0;
    max-width: 220px;
    font-family: 'Cairo', sans-serif;
}

.footer-info {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

.developer-credit {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 8px !important;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Official Documents Section */
.official-documents {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.documents-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.document-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(200, 168, 130, 0.3);
    border-radius: 12px;
    padding: 15px 12px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.document-link:hover {
    background: rgba(200, 168, 130, 0.2);
    border-color: rgba(200, 168, 130, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 168, 130, 0.2);
    color: white;
    text-decoration: none;
}

.document-link i {
    font-size: 1.2rem;
    color: #c8a882;
    min-width: 20px;
}

.document-link span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
}



/* Responsive Design for Team and Social Sections */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }

    .team-member {
        min-height: 150px;
        padding: 18px 12px 12px;
    }

    .member-avatar {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .avatar-icon {
        font-size: 1.3rem;
    }

    .member-name {
        font-size: 0.95rem;
    }

    .member-role {
        font-size: 0.7rem;
    }

    .important-links.simplified {
        margin-bottom: 20px;
    }



    .simple-links-grid {
        gap: 6px;
        margin-bottom: 15px;
    }

    .simple-link {
        width: 32px;
        height: 32px;
    }

    .simple-link i {
        font-size: 0.9rem;
    }

    .threads-link i {
        width: 10px;
        height: 10px;
        font-size: 0.7rem;
    }

    .support-section {
        padding: 10px;
    }

    .support-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .donate-button {
        padding: 8px 12px;
        gap: 8px;
        min-width: 160px;
    }

    .donate-icon {
        width: 28px;
        height: 28px;
    }

    .donate-icon i {
        font-size: 0.9rem;
    }

    .donate-text {
        font-size: 0.8rem;
    }

    .donate-platform {
        font-size: 0.65rem;
    }

    .support-description {
        font-size: 0.65rem;
        max-width: 200px;
    }

    .social-title {
        font-size: 1.6rem;
    }

    .social-subtitle {
        font-size: 0.85rem;
    }

    .social-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }

    .social-contact-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
        margin-top: 40px;
    }

    .team-member {
        min-height: 140px;
        padding: 15px 10px 10px;
        border-radius: 12px;
    }

    .member-avatar {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }

    .avatar-icon {
        font-size: 1.2rem;
    }

    .member-name {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }

    .member-role {
        font-size: 0.65rem;
    }

    .member-decoration {
        width: 25px;
        height: 2px;
    }

    .team-member:hover .member-decoration {
        width: 35px;
        height: 3px;
    }

    .important-links.simplified {
        margin-bottom: 18px;
    }



    .simple-links-grid {
        gap: 5px;
        margin-bottom: 12px;
    }

    .simple-link {
        width: 30px;
        height: 30px;
    }

    .simple-link i {
        font-size: 0.85rem;
    }

    .threads-link i {
        width: 9px;
        height: 9px;
        font-size: 0.65rem;
    }

    .support-section {
        padding: 8px;
    }

    .support-title {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .donate-button {
        padding: 6px 10px;
        gap: 6px;
        min-width: 140px;
    }

    .donate-icon {
        width: 25px;
        height: 25px;
    }

    .donate-icon i {
        font-size: 0.8rem;
    }

    .donate-text {
        font-size: 0.75rem;
    }

    .donate-platform {
        font-size: 0.6rem;
    }

    .support-description {
        font-size: 0.6rem;
        max-width: 180px;
    }

    .social-title {
        font-size: 1.4rem;
    }

    .social-subtitle {
        font-size: 0.8rem;
    }

    .social-header {
        margin-bottom: 25px;
    }

    .team-curve-1,
    .team-curve-2,
    .team-curve-3,
    .social-curve-1,
    .social-curve-2,
    .social-curve-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 40px 0;
    }

    .social-contact-section {
        padding: 40px 0;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
        margin-top: 30px;
    }

    .team-member {
        min-height: 130px;
        padding: 12px 8px 8px;
        border-radius: 10px;
    }

    .member-avatar {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .avatar-icon {
        font-size: 1.1rem;
    }

    .member-name {
        font-size: 0.85rem;
        margin-bottom: 2px;
        line-height: 1.1;
    }

    .member-role {
        font-size: 0.6rem;
        letter-spacing: 0.3px;
    }

    .member-decoration {
        width: 20px;
        height: 2px;
    }

    .team-member:hover .member-decoration {
        width: 30px;
        height: 2px;
    }

    .important-links.simplified {
        margin-bottom: 15px;
    }



    .simple-links-grid {
        gap: 4px;
        margin-bottom: 10px;
    }

    .simple-link {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .simple-link i {
        font-size: 0.8rem;
    }

    .threads-link i {
        width: 8px;
        height: 8px;
        font-size: 0.6rem;
    }

    .support-section {
        padding: 6px;
    }

    .support-title {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .donate-button {
        padding: 6px 8px;
        gap: 4px;
        min-width: 120px;
        flex-direction: column;
        text-align: center;
    }

    .donate-icon {
        width: 22px;
        height: 22px;
    }

    .donate-icon i {
        font-size: 0.7rem;
    }

    .donate-content {
        text-align: center;
    }

    .donate-text {
        font-size: 0.7rem;
    }

    .donate-platform {
        font-size: 0.55rem;
    }

    .donate-arrow {
        display: none;
    }

    .support-description {
        font-size: 0.55rem;
        max-width: 160px;
        line-height: 1.2;
    }

    .social-title {
        font-size: 1.2rem;
    }

    .social-subtitle {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .social-header {
        margin-bottom: 20px;
    }

    .official-documents {
        margin-bottom: 30px;
    }

    .documents-grid {
        max-width: 400px;
        gap: 12px;
    }

    .footer-info {
        margin-top: 40px;
        padding-top: 30px;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 300px;
    }

    .document-link {
        padding: 12px 10px;
        gap: 8px;
    }

    .document-link span {
        font-size: 0.85rem;
    }

    .documents-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}