/**
 * Homepage Premium Styles
 * Brand Color: #c28e31
 */

:root {
 --brand-color: #c28e31;
    --brand-color-light: #f4b146;
    --brand-color-dark: #a67526;

    --white: #ffffff;
    --text-dark: #3b2f1a;
    --text-gray: #6f6f6f;
    --ul-gray: #e8e4dd;

    --transition-fast: 150ms cubic-bezier(0.4,0,0.2,1);
    --transition-base: 300ms cubic-bezier(0.4,0,0.2,1);
    --transition-slow: 500ms cubic-bezier(0.4,0,0.2,1);
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Tajawal', system-ui, sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.dark ::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand-color) 0%, var(--brand-color-dark) 100%);
    border-radius: 5px;
    border: 2px solid #f1f5f9;
}

.dark ::-webkit-scrollbar-thumb {
    border-color: #1e293b;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--brand-color-dark) 0%, #8a5e20 100%);
}
/* Navbar Enhanced Styles */
/* ============================================
   Enhanced Navbar Styles - Bootstrap Compatible
   ============================================ */

/* Navbar Base Styles */
.navbar {
    /* background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%); */
    /* backdrop-filter: blur(20px); */
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    z-index: 1050;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.navbar-container {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: min-height 0.3s ease;
}

.navbar.scrolled .navbar-container {
    min-height: 90px;
}

/* Logo Styles - 100px height */
.logo-wrapper {
    position: relative;
    display: inline-block;
    z-index: 10;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(194, 142, 49, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .logo-img {
    height: 100px;
}

.logo-wrapper:hover .logo-img {
    filter: drop-shadow(0 6px 20px rgba(194, 142, 49, 0.6));
}

/* Desktop Navigation */
.navbar-nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding: 0.75rem 1.25rem;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c28e31, #f4b146);
    transform: translateX(50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: #f4b146 !important;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active {
    color: #c28e31 !important;
}

.nav-link.active::after {
    width: 60%;
}

/* CTA Button */
.btn-premium {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    height: 48px;
    background: linear-gradient(135deg, #c28e31 0%, #f4b146 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(194, 142, 49, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #d49a35 0%, #f5ba5a 100%);
    box-shadow: 0 6px 25px rgba(194, 142, 49, 0.6);
    transform: translateY(-2px) scale(1.02);
    color: #ffffff;
}

.btn-premium:hover::before {
    transform: translateX(100%);
}

.btn-premium:active {
    transform: translateY(0) scale(0.98);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1040;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 320px;
    max-width: 85vw;
    background: #ffffff;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Dark Mode for Mobile Menu */
.dark .mobile-menu {
    background: #1e293b;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.dark .mobile-menu-header {
    border-bottom-color: #374151;
}

.mobile-menu-logo {
    height: 80px;
    width: auto;
}

.close-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: #f3f4f6;
    color: #6b7280;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    background: #e5e7eb;
    color: #c28e31;
    transform: rotate(90deg);
}

.dark .close-menu-btn {
    background: #374151;
    color: #9ca3af;
}

.dark .close-menu-btn:hover {
    background: #4b5563;
}

/* Mobile Navigation Links */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    animation: slideInRight 0.4s ease forwards;
    opacity: 0;
}

.mobile-nav-link i {
    color: #c28e31;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(194, 142, 49, 0.1);
    color: #c28e31;
    transform: translateX(5px);
}

.mobile-nav-link:hover i {
    transform: scale(1.1);
}

.mobile-nav-link.active {
    background: rgba(194, 142, 49, 0.15);
    color: #c28e31;
}

.dark .mobile-nav-link {
    color: #f3f4f6;
}

.dark .mobile-nav-link:hover {
    background: rgba(194, 142, 49, 0.2);
}

/* Mobile Nav Animation Delays */
.mobile-menu.active .mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { animation-delay: 0.25s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile CTA */
.mobile-cta {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.mobile-cta .btn-premium {
    width: 100%;
    height: 54px;
    font-size: 1rem;
}

/* Mobile Contact Info */
.mobile-contact {
    padding: 1.5rem;
    margin-top: auto;
    border-top: 1px solid #e5e7eb;
}

.dark .mobile-contact {
    border-top-color: #374151;
}

.mobile-contact-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.mobile-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-contact-item i {
    color: #c28e31;
    font-size: 1rem;
}

.mobile-contact-item:hover {
    color: #c28e31;
}

.dark .mobile-contact-item {
    color: #9ca3af;
}

/* Responsive Breakpoints */
@media (max-width: 991.98px) {
    .navbar-nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 767.98px) {

    
    .navbar-container {
        min-height: 90px;
    }
    
    .navbar.scrolled .navbar-container {
        min-height: 70px;
    }
}

@media (max-width: 575.98px) {

    
    .navbar-container {
        min-height: 80px;
        padding: 0.75rem 0;
    }
    
    .navbar.scrolled .navbar-container {
        min-height: 65px;
    }
    
    .btn-premium {
        display: none !important;
    }
    
    .mobile-menu {
        width: 280px;
    }
}

/* Print Styles */
@media print {
    .navbar {
        display: none;
    }
}
/* ============================================
   Hero Slider Styles
   ============================================ */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 0s 1.5s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.5s ease-in-out, visibility 0s 0s;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
}

.hero-slide.active .hero-slide-bg {
    animation: kenburns 12s ease-out forwards;
}

@keyframes kenburns {
    0% { 
        transform: scale(1); 
    }
    100% { 
        transform: scale(1.15); 
    }
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.75) 0%,
        rgba(194, 142, 49, 0.25) 50%,
        rgba(15, 23, 42, 0.75) 100%
    );
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    text-align: center;
    padding: 0 1.5rem;
    z-index: 2;
}

.hero-slide-title,
.hero-slide-subtitle {
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-slide-title {
    animation: slideUpFade 1s ease-out forwards;
}

.hero-slide.active .hero-slide-subtitle {
    animation: slideUpFade 1.2s ease-out 0.3s forwards;
}

.hero-slide.active .hero-slide-buttons {
    animation: slideUpFade 1.4s ease-out 0.6s forwards;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Slider Navigation
   ============================================ */

.slider-navigation {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.slider-arrow:hover {
    background: var(--brand-color);
    border-color: var(--brand-color);
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all var(--transition-base);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    width: 36px;
    border-radius: 5px;
    background: var(--brand-color);
    border-color: var(--brand-color);
}

/* ============================================
   Navigation Bar
   ============================================ */

.navbar {
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.dark .navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .logo-text {
    color: #1f2937 !important;
}

.dark .navbar.scrolled .nav-link,
.dark .navbar.scrolled .logo-text {
    color: #f9fafb !important;
}

.nav-link {
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width var(--transition-base);
}

.nav-link:hover::before {
    width: 100%;
}

/* ============================================
   Premium Buttons
   ============================================ */

.btn-premium {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-premium:hover::before {
    width: 300px;
    height: 300px;
}

.btn-premium:active {
    transform: scale(0.97);
}

/* ============================================
   Card Effects
   ============================================ */

.card-premium {
    transition: all var(--transition-base);
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-premium .card-image-wrapper {
    overflow: hidden;
    border-radius: inherit;
}

.card-premium .card-image {
    transition: transform var(--transition-slow);
}

.card-premium:hover .card-image {
    transform: scale(1.08);
}

/* ============================================
   Image Overlay Effect
   ============================================ */

.image-overlay-effect {
    position: relative;
    overflow: hidden;
}

.image-overlay-effect::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(194, 142, 49, 0.15) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
}

.image-overlay-effect:hover::after {
    opacity: 1;
}

/* ============================================
   Reveal Animation
   ============================================ */

.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Text Gradient
   ============================================ */

.text-gradient-premium {
    background: linear-gradient(135deg, #c28e31 0%, #f4b146 50%, #c28e31 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   Mobile Menu
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 100;
}

.dark .mobile-menu {
    background: #1e293b;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    z-index: 99;
}

.mobile-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 640px) {
    .hero-slide-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    .hero-slide-subtitle {
        font-size: 1rem !important;
    }
    .hero-slider {
        min-height: 500px;
    }
    .slider-navigation {
        bottom: 1.5rem;
        gap: 1rem;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .hero-slide-title {
        font-size: 2.5rem !important;
    }
    .hero-slide-subtitle {
        font-size: 1.125rem !important;
    }
}


/* ============================================
   Footer Gradient
   ============================================ */


.premium-footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(194, 142, 49, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    transition: all var(--transition-base);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--brand-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-projects h4,
.footer-contact h4 {
    color: var(--brand-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all var(--transition-base);
    font-size: 14px;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--brand-color);
    padding-right: 5px;
}

.footer-projects ul {
    list-style: none;
}

.footer-projects li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
    padding-right: 15px;
    position: relative;
}

.footer-projects li::before {
    content: '◆';
    position: absolute;
    right: 0;
    color: var(--brand-color);
    font-size: 8px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-item i {
    color: var(--brand-color);
    font-size: 16px;
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-base);
    display: block;
}

.contact-item a:hover {
    color: var(--brand-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--brand-color);
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
}

.footer-tagline i {
    font-size: 12px;
    opacity: 0.6;
}



/* ======= Why Choose Us Section ======= */
.ul-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.ul-section-spacing {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfaf5 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* خلفية ديكورية */
.ul-section-spacing::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--brand-color);
    opacity: 0.06;
    border-radius: 50%;
    z-index: 0;
}

.ul-section-spacing::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(194, 142, 49, 0.08), rgba(244, 177, 70, 0.08));
    border-radius: 50%;
    z-index: 0;
}

/* قسم الصور المحسّن */
.ul-why-choose-us-imgs {
    display: flex;
    justify-content: center;
    gap: 25px;
    height: 550px;
    position: relative;
}

.ul-why-choose-us-imgs .img {
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 20px;
}

.ul-why-choose-us-imgs .img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(194, 142, 49, 0.25);
}

.ul-why-choose-us-imgs .img:first-child {
    width: 300px;
    height: 100%;
}

.ul-why-choose-us-imgs .img:last-child {
    width: 300px;
    height: 90%;
    margin-top: 60px;
}

.ul-why-choose-us-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.ul-why-choose-us-imgs .img:hover img {
    transform: scale(1.05);
}

.ul-why-choose-us-imgs .img .icon {
    position: absolute;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-color-light));
    font-size: 50px;
    bottom: 160px;
    right: -65px;
    color: var(--white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(194, 142, 49, 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 11;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* قسم النص المحسّن */
.ul-section-sub-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--brand-color);
    margin-bottom: 15px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(194, 142, 49, 0.1), rgba(244, 177, 70, 0.1));
    padding: 8px 20px;
    border-radius: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ul-section-title {
    font-weight: 800;
    font-size: 46px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.ul-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-color), var(--brand-color-light));
    border-radius: 2px;
}

.ul-why-choose-us-heading-descr {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 45px;
    line-height: 1.8;
}

.ul-why-choose-us-heading-descr strong {
    color: var(--brand-color);
    font-weight: 600;
}

/* القائمة المحسّنة */
.ul-why-choose-us-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ul-why-choose-us-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 25px;
    border-bottom: 1px solid var(--ul-gray);
    transition: all var(--transition-base);
    border-radius: 12px;
    position: relative;
}

.ul-why-choose-us-list-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--brand-color);
    opacity: 0.06;
    transition: width 0.4s ease;
    border-radius: 12px;
    z-index: -1;
}

.ul-why-choose-us-list-item:hover::before {
    width: 100%;
}

.ul-why-choose-us-list-item:hover {
    transform: translateX(-8px);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(194, 142, 49, 0.15);
}

.ul-why-choose-us-list-item:last-child {
    border-bottom: none;
}

.ul-why-choose-us-list-item .icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-color-light));
    border-radius: 15px;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: 5px;
    transition: transform var(--transition-base);
}

.ul-why-choose-us-list-item:hover .icon {
    transform: rotate(5deg) scale(1.1);
}

.ul-why-choose-us-list-item .txt {
    flex: 1;
}

.ul-why-choose-us-list-item-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.ul-why-choose-us-list-item-descr {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* شارات المميزات */
.features-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, rgba(194, 142, 49, 0.1), rgba(244, 177, 70, 0.1));
    color: var(--brand-color);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ======= CTA Button Styling ======= */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-color-light));
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 8px 20px rgba(194, 142, 49, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(194, 142, 49, 0.45);
    background: linear-gradient(135deg, var(--brand-color-dark), var(--brand-color));
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(194, 142, 49, 0.35);
}

.cta-button i {
    transition: transform var(--transition-base);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* نسخة ثانوية للزر */
.cta-button-outline {
    background: transparent;
    border: 2px solid var(--brand-color);
    color: var(--brand-color);
    box-shadow: none;
}

.cta-button-outline:hover {
    background: var(--brand-color);
    color: var(--white);
    border-color: var(--brand-color);
}

/* Responsive */
@media (max-width: 992px) {
    .ul-why-choose-us-imgs {
        height: 450px;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .ul-section-spacing {
        padding: 70px 0;
    }

    .ul-why-choose-us-imgs {
        height: 400px;
        gap: 20px;
    }

    .ul-why-choose-us-imgs .img:first-child {
        width: 220px;
    }

    .ul-why-choose-us-imgs .img:last-child {
        width: 220px;
        margin-top: 50px;
    }

    .ul-why-choose-us-imgs .img .icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
        left: -50px;
        bottom: 120px;
    }

    .ul-section-title {
        font-size: 34px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ul-section-spacing {
        padding: 60px 0;
    }

    .ul-why-choose-us-imgs {
        height: 350px;
        gap: 15px;
    }

    .ul-why-choose-us-imgs .img:first-child {
        width: 180px;
    }

    .ul-why-choose-us-imgs .img:last-child {
        width: 180px;
        margin-top: 40px;
    }

    .ul-section-title {
        font-size: 28px;
    }

    .ul-why-choose-us-list-item {
        padding: 20px 15px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}


/* ============================================
   Projects Section - Syrian Heritage Style
   ============================================ */

.projects-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream, #fdfaf5) 0%, #fff 50%, var(--cream, #fdfaf5) 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="damascus-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0 L40 20 L20 40 L0 20 Z" fill="%23c28e31" opacity="0.03"/></pattern></defs><rect width="200" height="200" fill="url(%23damascus-pattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header with Ornamental Design */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-color);
    background: linear-gradient(135deg, rgba(194, 142, 49, 0.1), rgba(244, 177, 70, 0.1));
    padding: 10px 30px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-color-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.damascus-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.damascus-ornament::before,
.damascus-ornament::after {
    content: '';
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-color), transparent);
}

.damascus-ornament i {
    font-size: 24px;
    color: var(--brand-color);
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(194, 142, 49, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(194, 142, 49, 0.1);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-color), var(--brand-color-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(194, 142, 49, 0.25);
}

.project-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-image-wrapper::after {
    opacity: 1;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image {
    transform: scale(1.12);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(194, 142, 49, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-content {
    padding: 30px;
}

.project-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--brand-color);
}

.project-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-subtitle i {
    color: var(--brand-color);
    font-size: 14px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(194, 142, 49, 0.1), rgba(244, 177, 70, 0.1));
    color: var(--brand-color);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.project-link:hover {
    background: linear-gradient(135deg, var(--brand-color), var(--brand-color-light));
    color: white;
    border-color: var(--brand-color);
    transform: translateX(-5px);
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(-5px);
}

/* View All Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-color-light));
    color: white;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(194, 142, 49, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(194, 142, 49, 0.5);
}

/* ============================================
   News Section - Heritage Style
   ============================================ */

.news-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.news-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="damascus-pattern2" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="8" fill="%23c28e31" opacity="0.03"/></pattern></defs><rect width="200" height="200" fill="url(%23damascus-pattern2)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(194, 142, 49, 0.15);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(194, 142, 49, 0.2);
    border-color: var(--brand-color);
}

.news-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.08);
}

.news-date-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(194, 142, 49, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.news-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: var(--brand-color);
}

.news-excerpt {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-color);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link:hover {
    gap: 15px;
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(-5px);
}

/* Heritage Quote Section */
.heritage-quote {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--cream, #fdfaf5), #fff);
    margin: 0;
    position: relative;
}

.heritage-quote::before,
.heritage-quote::after {
    content: '"';
    position: absolute;
    font-size: 150px;
    font-family: serif;
    color: rgba(194, 142, 49, 0.1);
    line-height: 1;
}

.heritage-quote::before {
    top: 20px;
    right: 10%;
}

.heritage-quote::after {
    bottom: 20px;
    left: 10%;
}

.quote-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.quote-text .gold {
    color: var(--brand-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .projects-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-image-wrapper,
    .news-image-wrapper {
        height: 220px;
    }

    .heritage-quote {
        padding: 60px 20px;
    }

    .quote-text {
        font-size: 20px;
    }

    .projects-section,
    .news-section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .view-all-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 15px;
    }

    .project-content,
    .news-content {
        padding: 20px;
    }
}