        /* Adding global animation disable rules at the top */
        *,
        *::before,
        *::after {
          animation-duration: 0s !important;
          animation-delay: 0s !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0s !important;
          transition-delay: 0s !important;
        }

        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        body {
          font-family: "Cairo", sans-serif;
          line-height: 1.6;
          color: #333;
          direction: rtl;
        }

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

        /* Header Styles */
        .header {
          background: linear-gradient(135deg, #8C6C9F 0%, #7B5D8C 100%);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          position: fixed;
          top: 0;
          width: 100%;
          z-index: 1000;
        }

        .nav-container {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 1rem 2rem;
          max-width: 1200px;
          margin: 0 auto;
        }

        .nav-brand h1 {
          color: #fff;
          font-size: 1.8rem;
          font-weight: 700;
          transition: all 0.3s ease;
        }

        .nav-brand h1:hover {
          color: #B89BC4;
          transform: scale(1.1);
          text-shadow: 0 0 15px rgba(184, 155, 196, 0.5);
          cursor: pointer;
        }

        .nav-links {
          display: flex;
          gap: 2rem;
        }

        .nav-links a {
          text-decoration: none;
          color: #fff;
          font-weight: 500;
          transition: all 0.3s ease;
          position: relative;
        }

        .nav-links a::after {
          content: "";
          position: absolute;
          bottom: -5px;
          left: 0;
          width: 0;
          height: 2px;
          background: #B89BC4;
          transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
          width: 100%;
        }

        .nav-links a:hover {
          color: #B89BC4;
          transform: translateY(-2px);
        }

        .nav-actions {
          display: flex;
          gap: 1rem;
        }

        .btn-primary {
          background: linear-gradient(135deg, #6A4E76 0%, #8C6C9F 100%);
          color: white;
          border: none;
          padding: 0.75rem 1.5rem;
          border-radius: 25px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;
        }

        .btn-primary::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.5s;
        }

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

        .btn-primary:hover {
          transform: translateY(-5px) scale(1.05);
          box-shadow: 0 15px 35px rgba(106, 78, 118, 0.4), 0 0 30px rgba(106, 78, 118, 0.2);
          background: linear-gradient(135deg, #8C6C9F 0%, #B89BC4 100%);
        }

        .btn-secondary {
          background: transparent;
          color: #fff;
          border: 2px solid #fff;
          padding: 0.75rem 1.5rem;
          border-radius: 25px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
        }

        .btn-secondary:hover {
          background: #B89BC4;
          color: white;
          border-color: #B89BC4;
          transform: translateY(-3px) scale(1.05);
          box-shadow: 0 10px 25px rgba(184, 155, 196, 0.3);
        }

        .mobile-menu-btn {
          display: none;
          flex-direction: column;
          background: none;
          border: none;
          cursor: pointer;
        }

        .mobile-menu-btn span {
          width: 25px;
          height: 3px;
          background: #fff;
          margin: 3px 0;
          transition: 0.3s;
        }

        /* Hero Section */
        .hero {
          background: linear-gradient(135deg, #f5f0f8 0%, #e8dfee 50%, #d9cde2 100%);
          min-height: 70vh;
          padding: 120px 0 60px;
          position: relative;
          overflow: hidden;
        }

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

        /* Hero Section Styles */
        .hero-content-side-by-side {
          display: flex;
          align-items: center;
          gap: 4rem;
          min-height: 50vh;
        }

        .hero-text-section {
          flex: 1;
          text-align: right;
        }

        .hero-images-section {
          flex: 1;
          display: flex;
          justify-content: center;
        }

        .app-mockups-side {
          display: flex;
          gap: 2rem;
          justify-content: center;
          align-items: center;
        }

        .hero-main-title {
          font-size: 4.5rem;
          font-weight: 700;
          color: #6A4E76;
          margin-bottom: 2rem;
          line-height: 1.1;
        }

        .title-line {
          display: block;
        }

        .hero-subtitle {
          font-size: 1.3rem;
          color: #755984;
          margin-bottom: 3rem;
          line-height: 1.6;
        }

        .store-downloads {
          margin-top: 12px;
        }

        .store-title {
          margin: 0 0 8px;
          font-weight: 800;
          font-size: 18px;
          color: #6A4E76;
        }

        .store-buttons {
          display: flex;
          gap: 10px;
          flex-wrap: wrap;
        }

        .store-btn {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          padding: 10px 14px;
          border-radius: 14px;
          color: #fff;
          box-shadow: 0 14px 32px rgba(0,0,0,.12);
          transition: transform .15s ease, box-shadow .15s ease;
          text-decoration: none;
        }

        .store-btn .text small {
          display: block;
          line-height: 1;
          opacity: .85;
          font-size: 11px;
        }

        .store-btn .text strong {
          display: block;
          line-height: 1.1;
          letter-spacing: .2px;
        }

        .store-btn.android {
          background: #0f9d58;
        }

        .store-btn.ios {
          background: #111827;
        }

        .store-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 20px 40px rgba(0,0,0,.18);
        }

        .phone-mockup {
          position: relative;
        }

        .phone-mockup.left {
          transform: rotate(-5deg);
        }

        .phone-mockup.right {
          transform: rotate(5deg);
        }

        .phone-mockup img {
          width: 250px;
          height: 500px;
          object-fit: cover;
          border-radius: 25px;
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
          transition: all 0.3s ease;
        }

        .phone-mockup:hover img {
          transform: scale(1.05);
          box-shadow: 0 25px 60px rgba(106, 78, 118, 0.4);
        }

        /* New search hero section with large title and search form */
        .search-hero {
          background: linear-gradient(135deg, #e8dfee 0%, #d9cde2 100%);
          padding: 60px 0;
          text-align: center;
        }

        .search-title {
          font-size: 3.5rem;
          font-weight: 700;
          color: #6A4E76;
          margin-bottom: 3rem;
          line-height: 1.2;
        }

        .search-form-large {
          max-width: 800px;
          margin: 0 auto 3rem;
        }

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

        .search-tab {
          background: white;
          border: 2px solid #e5e7eb;
          padding: 1rem 2rem;
          border-radius: 25px;
          font-weight: 500;
          cursor: pointer;
          transition: all 0.3s;
          color: #64748b;
        }

        .search-tab.active,
        .search-tab:hover {
          background: #7B5D8C;
          color: white;
          border-color: #7B5D8C;
        }

        .booking-stats {
          margin: 40px auto;
          padding: 20px;
          background: rgba(255, 255, 255, 0.5);
          border-radius: 20px;
          display: inline-block;
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.3);
          box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .stats-number {
          font-size: 3rem;
          font-weight: 800;
          color: #533a71;
          display: block;
          line-height: 1;
          margin-bottom: 5px;
        }

        .stats-text {
          font-size: 1.2rem;
          color: #7c5ea8;
          font-weight: 600;
        }

        .app-download {
          margin-top: 30px;
        }

        .download-btn {
          background: linear-gradient(135deg, #7c5ea8 0%, #533a71 100%);
          color: #fff;
          border: none;
          padding: 15px 35px;
          border-radius: 50px;
          font-weight: 700;
          cursor: pointer;
          transition: all 0.3s ease !important;
          display: inline-flex;
          align-items: center;
          gap: 12px;
          box-shadow: 0 10px 25px rgba(124, 94, 168, 0.3);
          font-size: 1.1rem;
        }

        .download-btn:hover {
          transform: translateY(-3px);
          box-shadow: 0 15px 35px rgba(124, 94, 168, 0.4);
        }

        .download-icon {
          font-size: 1.5rem;
        }

        /* Services section */
        .services-section {
          padding: 60px 20px;
          background: #fff;
          text-align: center;
        }

        .services-title {
          font-size: 2rem;
          font-weight: 700;
          margin-bottom: 40px;
          color: #6A4E76;
        }

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

        .service-card {
          background: #fff;
          border-radius: 15px;
          box-shadow: 0 10px 30px rgba(0,0,0,0.08);
          padding: 20px;
          transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .service-card h3 {
          font-size: 1.4rem;
          color: #6A4E76;
          margin-bottom: 15px;
        }

        .service-card img {
          width: 120px;
          height: 120px;
          margin: 0 auto 15px;
          display: block;
          border-radius: 50%;
          object-fit: cover;
          box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }

        .service-card p {
          color: #755984;
          margin-bottom: 15px;
          font-size: 0.95rem;
          line-height: 1.6;
        }

        .service-btn {
          display: inline-block;
          background: #7B5D8C;
          color: #fff;
          padding: 10px 20px;
          border-radius: 25px;
          text-decoration: none;
          font-weight: 600;
          transition: background 0.3s;
        }

        .service-btn:hover {
          background: #8C6C9F;
        }

        /* Business section */
        .business-section {
          padding: 80px 0;
          background: linear-gradient(135deg, #f8f5fa 0%, #f2eef7 100%);
        }

        .business-content {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 4rem;
          align-items: center;
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 2rem;
        }

        .business-title {
          font-size: 3rem;
          font-weight: 700;
          color: #6A4E76;
          margin-bottom: 1rem;
        }

        .business-subtitle {
          font-size: 1.2rem;
          color: #755984;
        }

        .areas-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 20px;
          margin-top: 30px;
        }

        .area-card {
          background: #f0e8f5;
          padding: 15px 20px;
          border-radius: 10px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          font-weight: 600;
          font-size: 1.1rem;
          color: #6A4E76;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          transition: transform 0.2s ease, background 0.3s;
          cursor: pointer;
        }

        .area-card:hover {
          background: #e2d5ec;
          transform: translateY(-3px);
        }

        .area-card .arrow {
          font-size: 1.2rem;
          font-weight: bold;
          color: #6A4E76;
        }

        /* Offers */
        .offers {
          padding: 80px 0;
          background: #fff;
        }

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

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

        .offer-card {
          background: #fff;
          border-radius: 16px;
          overflow: hidden;
          box-shadow: 0 10px 30px rgba(0,0,0,.08);
          transition: transform .25s ease, box-shadow .25s ease;
        }

        .offer-card:hover {
          transform: translateY(-6px);
          box-shadow: 0 16px 40px rgba(0,0,0,.12);
        }

        .offer-image {
          position: relative;
        }

        .offer-image img {
          width: 100%;
          height: 220px;
          object-fit: cover;
          display: block;
        }

        .offer-badge {
          position: absolute;
          top: 12px;
          right: 12px;
          background: #8C6C9F;
          color: #fff;
          font-weight: 800;
          padding: 6px 10px;
          border-radius: 999px;
          font-size: .9rem;
          box-shadow: 0 8px 20px rgba(140, 108, 159, 0.35);
        }

        .offer-info {
          padding: 16px 18px 20px;
        }

        .offer-title {
          font-size: 1.1rem;
          color: #6A4E76;
          margin-bottom: 6px;
        }

        .offer-location {
          color: #755984;
          font-size: .92rem;
          margin-bottom: 12px;
        }

        .offer-price {
          display: flex;
          align-items: baseline;
          gap: 10px;
          margin-bottom: 14px;
        }

        .old-price {
          color: #94a3b8;
          text-decoration: line-through;
        }

        .new-price {
          color: #8C6C9F;
          font-weight: 800;
          font-size: 1.15rem;
        }

        .offer-cta {
          display: inline-block;
          background: linear-gradient(135deg, #6A4E76 0%, #8C6C9F 100%);
          color: #fff;
          text-decoration: none;
          font-weight: 700;
          padding: 10px 16px;
          border-radius: 12px;
          transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
        }

        .offer-cta:hover {
          transform: translateY(-2px);
          box-shadow: 0 12px 30px rgba(106, 78, 118, 0.3);
          background: linear-gradient(135deg, #8C6C9F 0%, #B89BC4 100%);
        }

        /* Most Popular Section */
        .most-popular {
          padding: 80px 0;
          background: linear-gradient(135deg, #f8f5fa 0%, #f2eef7 100%);
        }

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

        .salon-card {
          background: white;
          border-radius: 15px;
          overflow: hidden;
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .salon-card img {
          width: 100%;
          height: 200px;
          object-fit: cover;
        }

        .salon-info {
          padding: 1.5rem;
        }

        .salon-info h3 {
          font-size: 1.2rem;
          font-weight: 600;
          color: #6A4E76;
          margin-bottom: 0.5rem;
        }

        .salon-rating {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          margin-bottom: 0.5rem;
        }

        .rating {
          color: #755984;
          font-size: 0.9rem;
        }

        .salon-location {
          color: #755984;
          font-size: 0.9rem;
          margin-bottom: 0.5rem;
        }

        .salon-service {
          color: #8C6C9F;
          font-size: 0.9rem;
          font-weight: 500;
        }

        /* Reviews section */
        .reviews {
          padding: 80px 0;
          background: white;
        }

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

        .review-card {
          background: linear-gradient(135deg, #f8f5fa 0%, #f2eef7 100%);
          padding: 2rem;
          border-radius: 20px;
          border: 2px solid transparent;
          transition: all 0.3s;
        }

        .review-card:hover {
          border-color: #B89BC4;
          transform: translateY(-5px);
        }

        .review-stars {
          color: #B89BC4;
          font-size: 1.2rem;
          margin-bottom: 1rem;
        }

        .review-card h4 {
          font-size: 1.3rem;
          font-weight: 600;
          color: #6A4E76;
          margin-bottom: 1rem;
        }

        .review-card p {
          color: #755984;
          line-height: 1.6;
          margin-bottom: 1.5rem;
        }

        .reviewer {
          display: flex;
          align-items: center;
          gap: 1rem;
        }

        .reviewer img {
          width: 40px;
          height: 40px;
          border-radius: 50%;
        }

        .reviewer span {
          font-size: 0.9rem;
          color: #755984;
          line-height: 1.4;
        }

        /* Recommendations Section */
        .recommendations {
          padding: 80px 0;
          background: white;
        }

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

        /* Join Section */
        .join-section {
          padding: 80px 0;
          background: #fff;
        }

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

        .join-card {
          display: flex;
          align-items: center;
          background: #f9f7fb;
          border-radius: 16px;
          overflow: hidden;
          box-shadow: 0 8px 25px rgba(0,0,0,0.08);
          transition: transform .25s ease, box-shadow .25s ease;
        }

        .join-card:hover {
          transform: translateY(-6px);
          box-shadow: 0 12px 35px rgba(0,0,0,0.12);
        }

        .join-image img {
          width: 160px;
          height: 160px;
          object-fit: cover;
          border-radius: 50%;
          margin: 20px;
        }

        .join-info {
          padding: 20px;
        }

        .join-info h3 {
          font-size: 1.4rem;
          color: #6A4E76;
          margin-bottom: 10px;
        }

        .join-info p {
          font-size: .95rem;
          color: #755984;
          margin-bottom: 15px;
          line-height: 1.5;
        }

        .join-btn {
          display: inline-block;
          background: #8C6C9F;
          color: #fff;
          font-weight: 700;
          padding: 10px 20px;
          border-radius: 25px;
          text-decoration: none;
          transition: background .2s ease;
        }

        .join-btn:hover {
          background: #B89BC4;
        }

        /* Updated footer with more sections */
        .footer {
          background: linear-gradient(135deg, #6A4E76 0%, #8C6C9F 100%);
          color: white;
          padding: 60px 0 20px;
        }

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

        .footer-section h3,
        .footer-section h4 {
          margin-bottom: 1rem;
          color: #B89BC4;
        }

        .footer-section ul {
          list-style: none;
        }

        .footer-section ul li {
          margin-bottom: 0.5rem;
        }

        .footer-section a {
          color: white;
          text-decoration: none;
          transition: color 0.3s;
          font-size: 0.9rem;
        }

        .footer-section a:hover {
          color: #B89BC4;
        }

        .app-links {
          margin-top: 1rem;
        }

        .app-link {
          display: inline-block;
          margin-top: 0.5rem;
          padding: 0.5rem 1rem;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 5px;
          transition: background 0.3s;
        }

        .app-link:hover {
          background: rgba(255, 255, 255, 0.2);
        }

        .app-download-footer {
          text-align: center;
        }

        .qr-footer img {
          width: 80px;
          height: 80px;
          margin-top: 1rem;
          border-radius: 5px;
        }

        .footer-bottom {
          border-top: 1px solid rgba(255, 255, 255, 0.2);
          padding-top: 2rem;
        }

        .footer-social {
          text-align: center;
          margin-bottom: 2rem;
        }

        .social-links {
          display: flex;
          justify-content: center;
          gap: 1rem;
          margin-top: 1rem;
        }

        .social-links a {
          padding: 0.5rem 1rem;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 5px;
          transition: background 0.3s;
        }

        .social-links a:hover {
          background: rgba(255, 255, 255, 0.2);
        }

        .footer-countries {
          margin-bottom: 2rem;
        }

        .footer-countries h4 {
          text-align: center;
          margin-bottom: 2rem;
          font-size: 1.5rem;
        }

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

        .country-section h5 {
          color: #B89BC4;
          margin-bottom: 1rem;
          font-size: 1.1rem;
        }

        .country-section ul {
          font-size: 0.8rem;
        }

        .country-section ul li {
          margin-bottom: 0.3rem;
        }

        .copyright {
          text-align: center;
          color: rgba(255, 255, 255, 0.7);
          font-size: 0.9rem;
        }

        /* Updated responsive design */
        @media (max-width: 768px) {
          .nav-links,
          .nav-actions {
            display: none;
          }

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

          .hero-content-side-by-side {
            flex-direction: column;
            text-align: center;
            gap: 2rem;
          }

          .hero-text-section {
            text-align: center;
          }

          .app-mockups-side {
            flex-direction: column;
            gap: 1rem;
          }

          .phone-mockup img {
            width: 200px;
            height: 400px;
          }

          .hero-main-title {
            font-size: 3rem;
          }

          .search-title {
            font-size: 2.5rem;
          }

          .business-content {
            grid-template-columns: 1fr;
            text-align: center;
          }

          .salons-carousel {
            grid-template-columns: 1fr;
          }

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

          .countries-grid {
            grid-template-columns: 1fr;
          }
        }

        @media (max-width: 480px) {
          .hero-main-title {
            font-size: 2rem;
          }

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

          .stats-big-title {
            font-size: 2.5rem;
          }

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

          .phone-mockup img {
            width: 150px;
            height: 300px;
          }

          .app-mockups-side {
            gap: 0.5rem;
          }

          .search-tabs {
            flex-direction: column;
            gap: 0.5rem;
          }

          .store-buttons {
            gap: 8px;
          }

          .store-btn {
            padding: 9px 12px;
          }
        }
