 /* الأساسيات */
 :root {
     --primary-color: #0d3c84;
     /* أزرق داكن أنيق */
     --secondary-color: #d4af37;
     /* ذهبي أنيق */
     --light-color: #f9f9f9;
     --dark-color: #222;
     --gray-color: #777;
     --gradient-bg: linear-gradient(135deg, #0d3c84 0%, #1a5cb0 100%);
     --gradient-3d: linear-gradient(135deg, #0d3c84 0%, #1a5cb0 100%);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
     background-color: #f5f5f5;
     color: var(--dark-color);
     line-height: 1.6;
 }

 .container {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
 }

 .section {
     padding: 80px 0;
 }

 .section-title {
     text-align: center;
     margin-bottom: 50px;
     position: relative;
 }

 .section-title h2 {
     font-size: 2.5rem;
     color: var(--primary-color);
     margin-bottom: 15px;
     position: relative;
     display: inline-block;
 }

 .section-title h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     right: 50%;
     transform: translateX(50%);
     width: 80px;
     height: 3px;
     background: var(--secondary-color);
     border-radius: 2px;
 }

 .section-title p {
     color: var(--gray-color);
     max-width: 600px;
     margin: 0 auto;
     font-size: 1.1rem;
 }

 .btn {
     display: inline-block;
     background-color: var(--secondary-color);
     color: #fff;
     padding: 12px 30px;
     border: none;
     border-radius: 5px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
 }

 .btn:hover {
     background-color: #c19b2e;
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
 }

 /* الهيدر ثلاثي الأبعاد */
 header {
     background: var(--gradient-3d);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
     border-bottom: 3px solid var(--secondary-color);
     height: 70px;
     transition: all 0.3s ease;
 }

 .header-3d-effect {
     position: relative;
     overflow: hidden;
     transform: translateZ(10px);
     height: 100%;
 }

 .header-3d-effect::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg,
             rgba(255, 255, 255, 0.08) 0%,
             rgba(255, 255, 255, 0.04) 25%,
             rgba(255, 255, 255, 0.02) 50%,
             rgba(255, 255, 255, 0) 100%);
     transform: skewX(-15deg) translateX(10px);
     z-index: 1;
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 70px;
     position: relative;
     z-index: 2;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 6px 10px;
     transform: translateZ(25px);
     transition: transform 0.3s ease;
 }

 .logo:hover {
     transform: translateZ(25px) scale(1.04);
 }

 .logo img {
     height: 100px;
     /* تكبير أوضح */
     margin-left: 0;

     /* توضيح اللوجو */
     filter:
         drop-shadow(0 6px 10px rgba(0, 0, 0, 0.5)) contrast(1.15) brightness(1.1);
 }

 .logo-text {
     display: flex;
     flex-direction: column;
 }

 .logo h1 {
     font-size: 1.05rem;
     color: #ffffff;
     font-weight: 700;
     /* تخانة أوضح */
     text-shadow:
         0 2px 6px rgba(0, 0, 0, 0.6);
     margin-bottom: 2px;
     letter-spacing: 0.3px;
 }

 .logo p {
     color: var(--secondary-color);
     font-size: 0.72rem;
     font-weight: 600;
     text-shadow:
         0 1px 4px rgba(0, 0, 0, 0.6);
 }

 .logo-link {
     text-decoration: none;
     /* يشيل الخط */
     display: inline-block;
 }

 .logo-link:visited,
 .logo-link:hover,
 .logo-link:active {
     color: inherit;
 }

 .social-icons a {
     color: white;
     margin-right: 12px;
     font-size: 1rem;
     transition: all 0.3s;
     transform: translateZ(10px);
     display: inline-block;
 }

 .social-icons a:hover {
     color: var(--secondary-color);
     transform: translateZ(10px) translateY(-2px);
 }

 /* القائمة ثلاثية الأبعاد */
 nav ul {
     display: flex;
     list-style: none;
 }

 nav ul li {
     margin-right: 15px;
     position: relative;
     transform-style: preserve-3d;
 }

 nav ul li a {
     text-decoration: none;
     color: white;
     font-weight: 600;
     padding: 8px 12px;
     border-radius: 4px;
     transition: all 0.3s;
     position: relative;
     display: block;
     transform: translateZ(10px);
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
     letter-spacing: 0.3px;
     font-size: 0.9rem;
 }

 nav ul li a::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 4px;
     transform: translateZ(-5px);
     transition: all 0.3s;
     opacity: 0;
 }

 nav ul li a:hover {
     background: rgba(255, 255, 255, 0.12);
     color: var(--secondary-color);
     transform: translateZ(15px);
 }

 nav ul li a:hover::before {
     opacity: 1;
     transform: translateZ(-3px);
 }

 nav ul li a.active {
     background: var(--secondary-color);
     color: var(--dark-color);
     transform: translateZ(15px);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
 }

 nav ul li a.active::before {
     opacity: 1;
     background: rgba(212, 175, 55, 0.3);
     transform: translateZ(-3px);
 }

 /* قائمة الهومبرجر المحسنة */
 .hamburger {
     display: none;
     cursor: pointer;
     font-size: 1.3rem;
     color: white;
     z-index: 1001;
     background: rgba(255, 255, 255, 0.1);
     padding: 8px 12px;
     border-radius: 4px;
     transform: translateZ(10px);
     transition: all 0.3s;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .hamburger:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: translateZ(12px);
 }

 /* القائمة الجانبية المحسنة */
 .side-menu {
     position: fixed;
     top: 0;
     right: -320px;
     width: 320px;
     height: 100vh;
     background: linear-gradient(135deg, #0d3c84 0%, #1a5cb0 100%);
     box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
     z-index: 9999;
     transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     overflow-y: auto;
     padding: 20px;
     border-left: 3px solid var(--secondary-color);
 }

 .side-menu.open {
     right: 0;
 }

 .side-menu-header {
     padding: 20px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .side-menu-header .logo {
     transform: none;
 }

 .side-menu-header .logo h1 {
     font-size: 1.2rem;
 }

 .close-menu-btn {
     background: none;
     border: none;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     transition: color 0.3s;
 }

 .close-menu-btn:hover {
     color: var(--secondary-color);
 }

 .side-menu-content {
     padding: 0 0 20px;
 }

 .side-menu ul {
     list-style: none;
 }

 .side-menu ul li {
     margin-bottom: 10px;
 }

 .side-menu ul li a {
     display: flex;
     align-items: center;
     padding: 15px;
     color: white;
     text-decoration: none;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 8px;
     transition: all 0.3s;
     position: relative;
     overflow: hidden;
 }

 .side-menu ul li a i {
     margin-left: 10px;
     width: 25px;
     text-align: center;
 }

 .side-menu ul li a::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
     background: rgba(255, 255, 255, 0.1);
     transform: translateX(-100%);
     transition: transform 0.3s;
 }

 .side-menu ul li a:hover {
     background: rgba(255, 255, 255, 0.15);
     color: var(--secondary-color);
     padding-right: 25px;
 }

 .side-menu ul li a:hover::before {
     transform: translateX(0);
 }

 .side-menu ul li a.active {
     background: var(--secondary-color);
     color: var(--dark-color);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
 }

 .side-menu-overlay {
     position: fixed;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     z-index: 9998;
     display: none;
     backdrop-filter: blur(4px);
     opacity: 0;
     transition: opacity 0.3s;
 }

 .side-menu-overlay.show {
     display: block;
     opacity: 1;
 }

 /* البانر الرئيسي */
 .hero {
     background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://i.pinimg.com/736x/e8/cb/67/e8cb67c06e9bd46a4291b54f3f4c63c4.jpg');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     height: 100vh;
     display: flex;
     align-items: center;
     text-align: center;
     color: #fff;
     margin-top: 0;
     padding-top: 70px;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, rgba(13, 60, 132, 0.3) 0%, rgba(26, 92, 176, 0.2) 100%);
     z-index: 1;
 }

 .hero-content {
     max-width: 900px;
     margin: 0 auto;
     transform: translateZ(15px);
     position: relative;
     z-index: 2;
 }

 .hero h2 {
     font-size: 3.2rem;
     margin-bottom: 25px;
     text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
     animation: fadeInDown 1s ease-out;
     line-height: 1.2;
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 40px;
     line-height: 1.8;
     animation: fadeInUp 1s ease-out 0.3s both;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 /* المميزات العائمة */
 .floating-features {
     position: absolute;
     bottom: 40px;
     right: 0;
     left: 0;
     z-index: 2;
 }

 .features-container {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 20px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .floating-feature {
     background: rgba(255, 255, 255, 0.95);
     padding: 20px;
     border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     text-align: center;
     width: 180px;
     transition: all 0.4s ease;
     transform: translateY(20px);
     animation: float 3s ease-in-out infinite;
     border-top: 4px solid var(--secondary-color);
 }

 .floating-feature:nth-child(2) {
     animation-delay: 0.5s;
 }

 .floating-feature:nth-child(3) {
     animation-delay: 1s;
 }

 .floating-feature:nth-child(4) {
     animation-delay: 1.5s;
 }

 .floating-feature:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
 }

 .feature-icon {
     font-size: 2.5rem;
     color: var(--primary-color);
     margin-bottom: 15px;
     display: block;
 }

 .floating-feature h3 {
     color: var(--primary-color);
     font-size: 1rem;
     margin-bottom: 10px;
 }

 .floating-feature p {
     font-size: 0.85rem;
     color: var(--gray-color);
     margin-bottom: 0;
 }

 /* عداد الإحصائيات */
 .stats-counter {
     background: var(--gradient-3d);
     padding: 60px 0;
     color: white;
     text-align: center;
 }

 .stats-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     max-width: 1000px;
     margin: 0 auto;
 }

 .stat-item {
     padding: 30px 20px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
 }

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

 .stat-number {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: var(--secondary-color);
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
 }

 .stat-text {
     font-size: 1.2rem;
     font-weight: 500;
 }

 /* الخدمات */
 .services {
     background-color: #fff;
 }

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

 .service-card {
     background-color: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
     transition: all 0.4s ease;
     text-align: center;
     padding: 40px 25px;
     border-top: 5px solid var(--primary-color);
     position: relative;
 }

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

 .service-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     right: 0;
     width: 0;
     height: 3px;
     background: var(--secondary-color);
     transition: width 0.4s ease;
 }

 .service-card:hover::after {
     width: 100%;
 }

 .service-icon {
     font-size: 3rem;
     color: var(--primary-color);
     margin-bottom: 25px;
     display: inline-block;
     padding: 20px;
     background: rgba(13, 60, 132, 0.1);
     border-radius: 50%;
 }

 .service-card h3 {
     font-size: 1.6rem;
     margin-bottom: 15px;
     color: var(--primary-color);
 }

 /* قسم ونش رفع الأثاث */
 .crane-section {
     background-color: #f9f9f9;
     padding: 80px 0;
 }

 .crane-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
 }

 .crane-content {
     animation: fadeInRight 1s ease-out;
 }

 .crane-image {
     animation: fadeInLeft 1s ease-out;
 }

 .crane-image img {
     width: 100%;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: transform 0.5s;
 }

 .crane-image img:hover {
     transform: scale(1.05);
 }

 .crane-features {
     margin-top: 40px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
 }

 .feature-card {
     background: white;
     padding: 25px;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     text-align: center;
     border-top: 3px solid var(--secondary-color);
 }

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

 .feature-icon {
     font-size: 2.5rem;
     color: var(--primary-color);
     margin-bottom: 15px;
 }

 .feature-card h4 {
     color: var(--primary-color);
     margin-bottom: 10px;
     font-size: 1.3rem;
 }

 /* قسم لماذا نحن الأفضل */
 .why-us {
     background-color: #fff;
     padding: 80px 0;
 }

 .why-us-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
 }

 .why-us-content {
     animation: fadeInLeft 1s ease-out;
 }

 .why-us-image {
     animation: fadeInRight 1s ease-out;
 }

 .why-us-image img {
     width: 100%;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: transform 0.5s;
 }

 .why-us-image img:hover {
     transform: scale(1.05);
 }

 .advantages-list {
     margin-top: 30px;
 }

 .advantage-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 20px;
     padding: 15px;
     background: var(--light-color);
     border-radius: 8px;
     transition: all 0.3s ease;
     border-right: 3px solid var(--secondary-color);
 }

 .advantage-item:hover {
     transform: translateX(-10px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .advantage-icon {
     width: 50px;
     height: 50px;
     background-color: var(--primary-color);
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-left: 15px;
     font-size: 1.2rem;
     flex-shrink: 0;
 }

 .advantage-text h4 {
     color: var(--primary-color);
     margin-bottom: 5px;
     font-size: 1.1rem;
 }

 /* قسم آراء العملاء مع صور خليجية */
 .testimonials {
     background-color: #fff;
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
 }

 .testimonial-card {
     background-color: white;
     border-radius: 15px;
     padding: 35px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     border-right: 4px solid var(--secondary-color);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .testimonial-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
 }

 .testimonial-card::before {
     content: "❝";
     position: absolute;
     top: 10px;
     right: 20px;
     font-size: 4rem;
     color: rgba(13, 60, 132, 0.1);
     font-family: serif;
     line-height: 1;
 }

 .testimonial-text {
     font-style: italic;
     margin-bottom: 25px;
     color: var(--gray-color);
     line-height: 1.8;
     font-size: 1.1rem;
     position: relative;
     z-index: 1;
 }

 .client-info {
     display: flex;
     align-items: center;
 }

 .client-avatar {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     overflow: hidden;
     margin-left: 20px;
     border: 3px solid var(--secondary-color);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .client-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .client-details h4 {
     color: var(--primary-color);
     margin-bottom: 5px;
     font-size: 1.2rem;
 }

 .client-details p {
     color: var(--secondary-color);
     font-weight: 500;
 }

 .rating {
     color: #ffc107;
     margin-top: 5px;
     font-size: 1.1rem;
 }

 /* الفوتر المعدل */
 footer {
     background: var(--gradient-3d);
     color: #fff;
     padding: 60px 0 30px;
     border-top: 3px solid var(--secondary-color);
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-col h3 {
     font-size: 1.4rem;
     margin-bottom: 25px;
     color: var(--secondary-color);
     position: relative;
     padding-bottom: 12px;
 }

 .footer-col h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     right: 0;
     width: 60px;
     height: 3px;
     background-color: var(--secondary-color);
 }

 .footer-col p {
     color: #ddd;
     line-height: 1.8;
     margin-bottom: 20px;
 }

 .contact-info {
     margin-top: 20px;
 }

 .contact-info p {
     margin-bottom: 15px;
     display: flex;
     align-items: center;
 }

 .contact-info i {
     margin-left: 10px;
     color: var(--secondary-color);
     width: 25px;
 }

 .footer-social {
     margin-top: 25px;
 }

 .footer-social a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     margin-left: 10px;
     transition: all 0.3s;
     text-decoration: none;
 }

 .footer-social a:hover {
     background: var(--secondary-color);
     color: var(--dark-color);
     transform: translateY(-3px);
 }

 .copyright {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: #aaa;
     font-size: 0.9rem;
 }
 

 /* الأنيميشن */
 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 /* التجاوب مع الشاشات الصغيرة */
 @media (max-width: 992px) {
     .header-container {
         flex-direction: row;
         justify-content: space-between;
     }

     .logo {
         margin-bottom: 0;
     }

     .social-icons {
         display: none;
     }

     nav ul {
         display: none;
     }

     .hamburger {
         display: block;
     }

     .hero h2 {
         font-size: 2.5rem;
     }

     .section {
         padding: 60px 0;
     }

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

     .crane-container,
     .why-us-container {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .crane-features {
         grid-template-columns: 1fr;
     }

     .features-container {
         flex-direction: column;
         align-items: center;
     }

     .floating-feature {
         width: 90%;
         max-width: 300px;
     }

     .floating-features {
         position: relative;
         bottom: auto;
         margin-top: 40px;
     }

     .hero {
         background-attachment: scroll;
         height: auto;
         min-height: 100vh;
         padding: 100px 0 60px;
     }
 }

 @media (max-width: 768px) {
     .hero h2 {
         font-size: 2.2rem;
     }

     .hero p {
         font-size: 1.1rem;
     }

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

     .side-menu {
         width: 85%;
         max-width: 300px;
     }

     .footer-container {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .footer-col h3 {
         font-size: 1.3rem;
     }
 }

 @media (max-width: 576px) {
     .hero h2 {
         font-size: 1.8rem;
     }

     .btn {
         padding: 10px 25px;
         font-size: 1rem;
     }

     .section-title h2 {
         font-size: 1.8rem;
     }

     .stat-item {
         padding: 20px 15px;
     }

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

     .service-card {
         padding: 30px 20px;
     }

     .testimonial-card {
         padding: 25px 20px;
     }

     .logo h1 {
         font-size: 1.1rem;
     }

     .client-avatar {
         width: 60px;
         height: 60px;
     }

     .advantage-item {
         padding: 12px;
     }

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