:root { --color-primary: #663700; --color-secondary: #fff; --color-accent: #7d5526; --color-bg: #f9f9f9; --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) } * { box-sizing: border-box; margin: 0; padding: 0 } body { font-family: 'Cairo', sans-serif; background: var(--color-bg); color: var(--color-primary); line-height: 1.6; overflow-x: hidden; scroll-behavior: smooth } .visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap } #loader { position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%; background: var(--color-secondary); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.5s ease-out } .spinner { border: 6px solid rgb(102 55 0 / .1); border-top: 6px solid var(--color-primary); border-radius: 50%; width: 60px; height: 60px; animation: spin 1s linear infinite; margin-bottom: 20px } .loader-logo { font-size: 2rem; font-weight: 700; color: var(--color-primary); animation: pulse 1.5s infinite } @keyframes spin { 0% { transform: rotate(0deg) } 100% { transform: rotate(360deg) } } @keyframes pulse { 0% { opacity: .6 } 50% { opacity: 1 } 100% { opacity: .6 } } #loader.hide { opacity: 0; visibility: hidden } .secondary-bar { background: var(--color-primary); color: var(--color-secondary); font-size: .9rem; padding: .8rem 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; animation: slideDown 0.6s ease-out } @keyframes slideDown { 0% { transform: translateY(-100%); opacity: 0 } 100% { transform: translateY(0); opacity: 1 } } .secondary-left, .secondary-center, .secondary-right { display: flex; align-items: center; gap: 1.5rem; flex: 1; min-width: 150px } .secondary-left { justify-content: flex-start } .secondary-center { justify-content: center; font-weight: 600; text-align: center } .secondary-right { justify-content: flex-end } .working_hours i { color: var(--color-secondary); margin-left: .3rem } .contact-message { display: flex; flex-direction: column; align-items: center; gap: .3rem; transition: 0.6s; text-decoration: none } .contact-message span { font-weight: 700 } .contact-message a { color: #ffd; font-weight: 600; text-decoration: none; transition: 0.6s } .contact-message a:hover { color: #ffa600 } .secondary-right a { color: var(--color-secondary); transition: opacity 0.3s; text-decoration: none; font-size: 1.1rem } .secondary-right a:hover { opacity: .8; transform: translateY(-2px) } header.navbar-site { background: var(--color-secondary); box-shadow: 0 2px 15px rgb(0 0 0 / .1); position: sticky; top: 0; z-index: 1000; animation: fadeIn 0.8s ease-out; transition: all 0.3s ease } @keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } } .navbar-site-container { max-width: 1440px; margin: 0 auto; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap } .logo { position: absolute; display: flex; align-items: center; text-decoration: none; transition: transform 0.3s; border-radius: 25px } .logo:hover { transform: scale(1.05) } .logo span { font-size: 1.8rem; font-weight: 700; color: var(--color-primary); letter-spacing: -1px } nav.desktop-menu { flex: 1; margin: 0 2rem } .nav-menu { list-style: none; display: flex; align-items: center; justify-content: center; gap: 2rem } .nav-menu li a { text-decoration: none; font-size: 1.05rem; font-weight: 500; color: var(--color-primary); position: relative; transition: color 0.3s; padding: .5rem 0 } .nav-menu li a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0%; height: 2px; background: var(--color-accent); transition: width 0.3s, left 0.3s } .nav-menu li a:hover { color: var(--color-accent) } .nav-menu li a:hover::after { width: 100%; left: 0 } .nav-menu li a.active { color: var(--color-accent); font-weight: 600 } .nav-menu li a.active::after { width: 100%; left: 0 } .cta-button { background: var(--color-accent); color: var(--color-secondary); padding: .7rem 1.5rem; border: none; border-radius: 30px; text-decoration: none; font-weight: 600; transition: var(--transition); display: inline-block; box-shadow: 0 4px 15px rgb(125 85 38 / .3) } .cta-button:hover { background: var(--color-primary); transform: translateY(-3px); box-shadow: 0 8px 20px rgb(125 85 38 / .4); color: var(--color-secondary) } .mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.8rem; color: var(--color-primary); transition: 0.4s; cursor: pointer; padding: .5rem } .mobile-menu-toggle:hover { transform: rotate(90deg) } .mobile-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 350px; height: 100vh; background: var(--color-secondary); box-shadow: -5px 0 15px rgb(0 0 0 / .1); z-index: 1001; transition: right 0.4s ease; padding: 2rem; overflow-y: auto } .mobile-menu.active { right: 0 } .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid #eee } .mobile-menu-close { background: none; border: none; font-size: 1.5rem; color: var(--color-primary); cursor: pointer } .mobile-menu-list { list-style: none } .mobile-menu-list li { margin: 1.5rem 0 } .mobile-menu-list li a { font-size: 1.1rem; color: var(--color-primary); text-decoration: none; display: block; padding: .5rem 0; transition: color 0.3s; font-weight: 500 } .mobile-menu-list li a:hover { color: var(--color-accent) } .mobile-menu-cta { margin-top: 2rem; text-align: center } .mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgb(0 0 0 / .5); z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.4s ease } .mobile-menu-overlay.active { opacity: 1; visibility: visible } .hero-slider { width: 100%; height: 90vh; max-height: 800px; position: relative } .swiper-slide { position: relative; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: flex-end; padding: 0 10% } .swiper-slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgb(0 0 0 / .4) } .slide-content { position: relative; z-index: 2; max-width: 600px; color: #fff; text-align: right; opacity: 0; transform: translateY(30px); transition: all 0.8s ease } .swiper-slide-active .slide-content { opacity: 1; transform: translateY(0) } .slide-content h1 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.3; text-shadow: 0 2px 5px rgb(0 0 0 / .3) } .slide-content p { font-size: 1.3rem; line-height: 1.8; margin-bottom: 2rem; opacity: .9 } .slide-button { background: var(--color-accent); color: #fff; padding: 1rem 2rem; border-radius: 30px; text-decoration: none; font-weight: 600; display: inline-block; transition: var(--transition); border: 2px solid #fff0 } .slide-button:hover { background: #fff0; border-color: #fff; transform: translateY(-3px) } .swiper-pagination-bullets { bottom: 50px !important } .swiper-pagination-bullet { width: 12px; height: 12px; background-color: rgb(255 255 255 / .6); opacity: 1; transition: all 0.3s ease } .swiper-pagination-bullet-active { background-color: var(--color-accent); transform: scale(1.2) } .scroll-down { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; color: #fff; font-size: 1.5rem; animation: bounce 2s infinite; cursor: pointer } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%) } 40% { transform: translateY(-20px) translateX(-50%) } 60% { transform: translateY(-10px) translateX(-50%) } } .services-section { padding: 6rem 2rem; background: linear-gradient(135deg, #f9f9f9 0%, #f0e6d9 100%); position: relative; overflow: hidden } .services-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1 } .section-header { text-align: center; margin-bottom: 4rem } .section-title { font-size: 2.8rem; color: var(--color-primary); margin-bottom: 1.5rem; position: relative; display: inline-block } .section-title::after { content: ''; position: absolute; bottom: -10px; right: 0; width: 60%; height: 4px; background: var(--color-accent); transform-origin: right; transition: transform 0.5s ease } .section-header:hover .section-title::after { transform: scaleX(1.2) } .section-subtitle { color: #666; font-size: 1.2rem; max-width: 700px; margin: 0 auto; line-height: 1.8 } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem } .service-card { perspective: 1000px; height: 350px; border-radius: 15px; overflow: hidden; box-shadow: 0 15px 30px rgb(0 0 0 / .1); transition: var(--transition) } .service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgb(0 0 0 / .15) } .service-inner { position: relative; width: 100%; height: 100%; transition: transform 0.8s; transform-style: preserve-3d } .service-card:hover .service-inner { transform: rotateY(180deg) } .service-front, .service-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 15px; overflow: hidden } .service-front { background-size: cover; background-position: center; display: flex; align-items: flex-end } .service-front-content { width: 100%; padding: 1.5rem; background: linear-gradient(to top, rgb(102 55 0 / .9), transparent); color: #fff; transform: translateY(0); transition: transform 0.5s ease } .service-card:hover .service-front-content { transform: translateY(100%) } .service-front h3 { font-size: 1.5rem; margin-bottom: .5rem } .service-front p { overflow: hidden; transition: all 0.5s ease } .service-card:hover .service-front p { opacity: 1; max-height: 100px } .service-back { background: var(--color-primary); color: #fff; transform: rotateY(180deg); padding: 2rem; display: flex; flex-direction: column; justify-content: center; text-align: center } .service-back h3 { font-size: 1.5rem; margin-bottom: 1rem } .service-back p { margin-bottom: 1.5rem; line-height: 1.7 } .service-icon { font-size: 2.5rem; margin-bottom: 1rem; color: var(--color-accent) } .services-cta { text-align: center; margin-top: 4rem } .cta-section { position: relative; padding: 8rem 2rem; background: linear-gradient(rgb(102 55 0 / .9), rgb(102 55 0 / .9)), url(https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80); background-size: cover; background-position: center; background-attachment: fixed; text-align: center; color: #fff; overflow: hidden } .cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgb(0 0 0 / .5) } .cta-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto } .cta-title { font-size: 3rem; margin-bottom: 2rem; text-shadow: 0 2px 5px rgb(0 0 0 / .3) } .cta-text { font-size: 1.3rem; line-height: 1.8; margin-bottom: 3rem; opacity: .9 } .cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap } .cta-button-ad { padding: 1rem 2.5rem; background: var(--color-accent); color: #fff; border: none; border-radius: 30px; font-size: 1.1rem; cursor: pointer; transition: var(--transition); text-decoration: none; font-weight: 600; box-shadow: 0 5px 15px rgb(125 85 38 / .4) } .cta-button-outline { padding: 1rem 2.5rem; background: #fff0; color: #fff; border: 2px solid #fff; border-radius: 30px; font-size: 1.1rem; cursor: pointer; transition: var(--transition); text-decoration: none; font-weight: 600 } .cta-button-ad:hover { background: var(--color-primary); transform: translateY(-5px); box-shadow: 0 8px 25px rgb(125 85 38 / .6); color: var(--color-secondary) } .cta-button-outline:hover { background: rgb(255 255 255 / .1); transform: translateY(-5px); color: var(--color-secondary) } .about-section { padding: 6rem 2rem; background: linear-gradient(to bottom right, #f9f9f9, #fff); position: relative; overflow: hidden } .about-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: baseline } .about-content { position: relative; padding: 3rem; background: #fff; border-radius: 20px; box-shadow: 0 20px 40px rgb(0 0 0 / .1) } .about-title { font-size: 2rem; margin-bottom: 1.5rem; color: var(--color-primary) } .about-text { color: #555; line-height: 1.8; margin-bottom: 2rem; font-size: 1.1rem } .about-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 30px rgb(0 0 0 / .1); transition: var(--transition); height: 500px } .about-image:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgb(0 0 0 / .15) } .about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease } .about-image:hover img { transform: scale(1.05) } .achievements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; margin-top: 3rem } .achievement-item { text-align: center; padding: 2rem 1rem; background: #fff; border-radius: 15px; box-shadow: 0 10px 20px rgb(0 0 0 / .05); transition: var(--transition); cursor: pointer; border: 1px solid rgb(102 55 0 / .1) } .achievement-item:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgb(0 0 0 / .1); border-color: var(--color-accent) } .achievement-number { font-size: 2.8rem; font-weight: 700; color: var(--color-accent); margin-bottom: .5rem; font-family: 'Cairo', sans-serif } .achievement-text { color: #666; font-weight: 500 } .expertise-section { padding: 2rem 0rem; background: #fff; position: relative } .expertise-container { max-width: 1200px; margin: 0 auto } .expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; justify-items: center } .expertise-item { width: 180px; height: 180px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; background: #fff; position: relative; transition: var(--transition); cursor: pointer; box-shadow: 0 10px 20px rgb(0 0 0 / .05); border: 2px dashed rgb(102 55 0 / .2); padding: 10px } .expertise-item:hover { transform: translateY(-10px) scale(1.05); box-shadow: 0 15px 30px rgb(0 0 0 / .1); border-color: var(--color-accent); background: rgb(125 85 38 / .05) } .expertise-icon { width: 80px; height: 80px; background: rgb(125 85 38 / .1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: var(--transition) } .expertise-item:hover .expertise-icon { background: var(--color-accent); color: #fff; transform: rotate(360deg) } .expertise-icon i { font-size: 2rem } .expertise-name { font-size: 1rem; color: var(--color-primary); font-weight: 600; margin: 0; text-align: center } .why-choose-section { position: relative; padding: 6rem 2rem; background: linear-gradient(45deg, #f9f9f9, #fff); overflow: hidden } .geometric-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: .05; background-image: radial-gradient(var(--color-accent) 1px, transparent 1px); background-size: 20px 20px } .floating-law-icons { position: absolute; width: 100%; height: 100%; pointer-events: none } .floating-law-icons i { position: absolute; font-size: 4rem; color: rgb(102 55 0 / .1); animation: float 6s infinite ease-in-out } .floating-law-icons i:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s } .floating-law-icons i:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s } .floating-law-icons i:nth-child(3) { bottom: 20%; left: 25%; animation-delay: 4s } @keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg) } 50% { transform: translateY(-30px) rotate(5deg) } } .why-choose-container { position: relative; max-width: 1200px; margin: 0 auto; z-index: 1; text-align: center } .reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; margin-top: 4rem } .reason-card { position: relative; background: #fff; padding: 2.5rem 2rem; border-radius: 15px; text-align: center; overflow: hidden; box-shadow: 0 10px 20px rgb(0 0 0 / .05); transition: var(--transition); z-index: 1 } .reason-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--color-accent); transition: height 0.4s ease } .reason-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgb(0 0 0 / .1) } .reason-card:hover::before { height: 10px } .reason-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem auto; display: flex; align-items: center; justify-content: center; background: rgb(125 85 38 / .1); border-radius: 50%; transition: var(--transition) } .reason-card:hover .reason-icon { background: var(--color-accent); color: #fff; transform: rotateY(180deg) } .reason-icon i { font-size: 2rem } .reason-card h3 { color: var(--color-primary); margin: 1rem 0; font-size: 1.4rem; transition: color 0.3s ease } .reason-card:hover h3 { color: var(--color-accent) } .reason-card p { color: #666; font-size: .95rem; line-height: 1.7 } .hover-effect { position: absolute; top: 50%; left: 50%; width: 150px; height: 150px; background: radial-gradient(rgb(102 55 0 / .1), transparent); transform: translate(-50%, -50%) scale(.8); opacity: 0; transition: all 0.4s ease; pointer-events: none; border-radius: 50%; z-index: -1 } .reason-card:hover .hover-effect { opacity: 1; transform: translate(-50%, -50%) scale(1.5) } .cases-section { padding: 6rem 2rem; background: #f5f5f5 } .cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto } .case-card { border-radius: 15px; overflow: hidden; box-shadow: 0 10px 20px rgb(0 0 0 / .1); transition: var(--transition); background: #fff } .case-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgb(0 0 0 / .15) } .case-image { height: 250px; background-size: cover; background-position: center; position: relative } .case-image::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgb(102 55 0 / .7), transparent); opacity: 0; transition: opacity 0.5s ease } .case-card:hover .case-image::before { opacity: 1 } .case-content { padding: 2rem; background: #fff } .case-content h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--color-primary) } .case-meta { display: flex; justify-content: space-between; margin-bottom: 1rem; color: #666; font-size: .9rem } .case-description { color: #555; line-height: 1.7; margin-bottom: 1.5rem } .case-result { display: inline-block; padding: .5rem 1.5rem; border-radius: 30px; font-weight: 700; font-size: .9rem } .success { background: #e8f5e9; color: #2e7d32 } .testimonials-section { padding: 6rem 2rem; background: var(--color-bg); position: relative } .testimonials-swiper { max-width: 1200px; margin: 0 auto; padding: 2rem } .testimonial-card { background: #fff; padding: 2.5rem; border-radius: 15px; box-shadow: 0 5px 15px rgb(0 0 0 / .05); margin: 1rem; position: relative; transition: var(--transition) } .testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgb(0 0 0 / .1) } .testimonial-card::before { content: '\201C'; position: absolute; top: 20px; right: 30px; font-size: 5rem; color: rgb(125 85 38 / .1); font-family: serif; line-height: 1 } .client-info { display: flex; align-items: center; margin-bottom: 1.5rem } .client-info img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-left: 1.5rem; border: 3px solid var(--color-accent) } .client-details h4 { font-size: 1.2rem; color: var(--color-primary); margin-bottom: .3rem } .client-details span { color: #666; font-size: .9rem } .testimonial-text { color: #555; line-height: 1.8; font-size: 1.05rem; font-style: italic; position: relative; padding-right: 1rem } .rating { color: #ffc107; margin-top: 1.5rem; font-size: 1.1rem } .pricing-section { padding: 6rem 2rem; background: linear-gradient(45deg, #f9f9f9, #fff) } .pricing-cards { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; max-width: 1200px; margin: 0 auto } .price-card { background: #fff; padding: 2.5rem; border-radius: 20px; width: 350px; box-shadow: 0 10px 30px rgb(0 0 0 / .1); transition: var(--transition); position: relative; overflow: hidden; border: 1px solid rgb(102 55 0 / .1) } .price-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgb(0 0 0 / .15) } .price-card.premium { transform: scale(1.05); background: var(--color-primary); color: #fff; border: none } .price-card.premium .price { color: #fff } .price-card.premium .price-cta { background: var(--color-accent) } .price-card.premium .price-cta:hover { background: #fff; color: var(--color-primary) } .price-header { text-align: center; margin-bottom: 2rem; position: relative; padding-bottom: 1.5rem } .price-header::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 50%; height: 2px; background: rgb(102 55 0 / .2) } .price-card.premium .price-header::after { background: rgb(255 255 255 / .3) } .price-header h3 { font-size: 1.5rem; margin-bottom: 1rem } .price { font-size: 2.8rem; font-weight: 700; margin: 1rem 0; color: var(--color-accent) } .price span { font-size: 1rem; font-weight: 400 } .features { list-style: none; margin: 2.5rem 0 } .features li { margin: 1.2rem 0; display: flex; align-items: center; gap: .8rem; color: #555 } .price-card.premium .features li { color: rgb(255 255 255 / .9) } .features li i { color: var(--color-accent) } .price-card.premium .features li i { color: #fff } .price-cta { display: block; text-align: center; background: var(--color-accent); color: #fff; padding: 1rem; border-radius: 30px; text-decoration: none; transition: var(--transition); font-weight: 600; border: 2px solid #fff0 } .price-cta:hover { background: var(--color-primary); transform: translateY(-3px); box-shadow: 0 5px 15px rgb(125 85 38 / .4); border-color: var(--color-accent) } .contact-section { padding: 6rem 2rem; background: linear-gradient(rgb(102 55 0 / .03), rgb(102 55 0 / .03)), url(https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80); background-size: cover; background-position: center; background-attachment: fixed; position: relative } .contact-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgb(255 255 255 / .9) } .contact-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem } .contact-info { padding: 2rem } .contact-info h2 { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 2rem; position: relative; padding-bottom: 1rem } .contact-info h2::after { content: ''; position: absolute; bottom: 0; right: 0; width: 60%; height: 3px; background: var(--color-accent) } .contact-details { margin-top: 2rem } .contact-item { display: flex; align-items: flex-start; margin-bottom: 1.5rem } .contact-icon { width: 50px; height: 50px; background: rgb(125 85 38 / .1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-left: 1rem; color: var(--color-accent); font-size: 1.2rem; flex-shrink: 0 } .contact-text h4 { font-size: 1.2rem; margin-bottom: .3rem; color: var(--color-primary) } .contact-text p, .contact-text a { color: #555; text-decoration: none; transition: color 0.3s ease } .contact-text a:hover { color: var(--color-accent) } .social-media { display: flex; gap: 1rem; margin-top: 2rem } .social-media a { width: 40px; height: 40px; background: rgb(125 85 38 / .1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-accent); font-size: 1.1rem; transition: var(--transition) } .social-media a:hover { background: var(--color-accent); color: #fff; transform: translateY(-3px) } .contact-form { background: #fff; padding: 3rem; border-radius: 15px; box-shadow: 0 10px 30px rgb(0 0 0 / .1) } .form-group { margin-bottom: 1.5rem } .form-label { display: block; margin-bottom: .5rem; font-weight: 500; color: var(--color-primary) } .form-input, .form-textarea { width: 100%; padding: 1rem; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; transition: var(--transition); font-family: 'Cairo', sans-serif } .form-textarea { min-height: 150px; resize: vertical } .form-input:focus, .form-textarea:focus { border-color: var(--color-accent); outline: none; box-shadow: 0 0 0 3px rgb(125 85 38 / .2) } .submit-btn { background: var(--color-accent); color: #fff; border: none; padding: 1rem 2rem; border-radius: 30px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: var(--transition); width: 100%; box-shadow: 0 5px 15px rgb(125 85 38 / .3) } .submit-btn:hover { background: var(--color-primary); transform: translateY(-3px); box-shadow: 0 8px 20px rgb(125 85 38 / .4) } .map-section { height: 500px; position: relative } .map-container { width: 100%; height: 100% } .site-footer { background: var(--color-primary); color: #fff; padding: 5rem 2rem 0; position: relative } .footer-wave { position: absolute; rotate: 180deg; top: -100px; left: 0; width: 100%; height: 100px; background: url('data:image/svg+xml;utf8, <svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" ><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23f9f9f9" opacity=".25" /><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23f9f9f9" opacity=".5" /><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23f9f9f9" /></svg>'); background-size: cover } .footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto } .footer-col h4 { font-size: 1.5rem; margin-bottom: 1.5rem; padding-bottom: .8rem; position: relative } .footer-col h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 50%; height: 2px; background: var(--color-accent) } .footer-col p { margin-bottom: 1.5rem; line-height: 1.7; opacity: .9 } .footer-links { list-style: none } .footer-links li { margin-bottom: 1rem } .footer-links a { color: #fff; text-decoration: none; transition: all 0.3s ease; display: block; padding: .3rem 0; position: relative; padding-right: 1.5rem } .footer-links a::before { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: .8rem; opacity: 0; transition: all 0.3s ease } .footer-links a:hover { color: var(--color-accent); padding-right: 2rem } .footer-links a:hover::before { opacity: 1; right: -.5rem } .footer-contact-item { display: flex; align-items: flex-start; margin-bottom: 1.5rem } .footer-contact-icon { width: 40px; height: 40px; background: rgb(255 255 255 / .1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-left: 1rem; flex-shrink: 0 } .footer-contact-text { flex: 1 } .footer-contact-text a { color: #fff; text-decoration: none; transition: color 0.3s ease } .footer-contact-text a:hover { color: var(--color-accent) } .footer-social { display: flex; gap: 1rem; margin-top: 1.5rem } .footer-social a { width: 40px; height: 40px; background: rgb(255 255 255 / .1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: var(--transition) } .footer-social a:hover { background: var(--color-accent); transform: translateY(-3px) } .copyright { text-align: center; padding: 2rem 0; margin-top: 4rem; border-top: 1px solid rgb(255 255 255 / .1); font-size: .9rem; opacity: .8 } .back-to-top { position: fixed; bottom: 30px; left: 30px; width: 50px; height: 50px; background: var(--color-accent); color: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; z-index: 99; opacity: 0; visibility: hidden; transition: all 0.4s ease; box-shadow: 0 5px 15px rgb(0 0 0 / .2) } .back-to-top.active { opacity: 1; visibility: visible } .back-to-top:hover { background: var(--color-primary); transform: translateY(-5px) } @media (max-width:1200px) { .about-container { gap: 2rem } .contact-container { grid-template-columns: 1fr } .contact-info { order: 2 } .contact-form { order: 1 } .logo { display: none } } @media (max-width:992px) { .section-title { font-size: 2.3rem } .slide-content h1 { font-size: 3rem } .slide-content p { font-size: 1.1rem } .about-container { grid-template-columns: 1fr } .about-image { height: 400px; order: -1 } .btn-header-desktop { display: none } } @media (max-width:768px) { .secondary-bar { flex-direction: column; gap: 1rem; text-align: center; padding: 1rem } .secondary-left, .secondary-center, .secondary-right { justify-content: center; min-width: auto } .btn-header-desktop { display: none } .logo { position: absolute; display: flex; text-decoration: none; transition: transform 0.3s; border-radius: 25px; width: 50% } .nav-menu { display: none } .mobile-menu-toggle { display: block } .hero-slider { height: 80vh } .slide-content h1 { font-size: 2.5rem } .section-title { font-size: 2rem } .services-grid { grid-template-columns: 1fr } .reasons-grid { grid-template-columns: 1fr } .cases-grid { grid-template-columns: 1fr } .pricing-cards { flex-direction: column; align-items: center } .price-card { width: 100%; max-width: 350px } .price-card.premium { transform: scale(1) } .carousel-site { padding: 10px; max-height: 30vh; border-radius: 25px } .carousel-site h2 { font-size: 1.5rem } .carousel-site h3 { font-size: 1rem } .carousel-site p { font-size: 1rem } .recaptcha-style { overflow: hidden; width: 185px; display: flex; flex-direction: row-reverse; } } @media (max-width:576px) { .slide-content h1 { font-size: 2rem } .section-title { font-size: 1.8rem } .section-subtitle { font-size: 1rem } .cta-title { font-size: 2rem } .cta-text { font-size: 1rem } .cta-buttons { flex-direction: column; align-items: center } .expertise-grid { grid-template-columns: 1fr 1fr } .expertise-item { width: 140px; height: 140px } .footer-columns { grid-template-columns: 1fr } } .img-slider { max-height: 90vh; width: 100%; margin: 0 auto }