
    /* ========== RESET & VARIABLES ========== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --white: #ffffff;
      --blue-primary: #ea580c;
      --blue-accent: #2b4c9e;
      --orange-primary: #f97316;
      --orange-hover: #ea580c;
      --gray-light: #f8fafc;
      --gray-dark: #1e293b;
      --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--white);
      color: var(--gray-dark);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, .logo-text {
      font-family: 'Cinzel', serif;
    }

    .arabic-font {
      font-family: 'Amiri', serif;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 28px;
    }

    /* Premium Buttons */
    .btn-blue, .btn-orange {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      letter-spacing: 0.3px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .btn-blue {
      background: var(--orange-primary);
      color: white;
    }
    .btn-blue:hover {
      background: var(--orange-hover);
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }
    .btn-orange {
      background: var(--orange-primary);
      color: white;
    }
    .btn-orange:hover {
      background: var(--orange-hover);
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }

    /* Ticker */
    .ticker-wrap {
      background: linear-gradient(95deg, var(--orange-primary), #c2410c);
      color: white;
      padding: 14px 0;
      overflow: hidden;
      position: relative;
      z-index: 10;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .ticker {
      display: flex;
      animation: tickerScroll 45s linear infinite;
      white-space: nowrap;
      width: max-content;
    }
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-right: 48px;
      font-size: 0.9rem;
      font-weight: 500;
      background: rgba(255,255,255,0.1);
      padding: 5px 16px;
      border-radius: 40px;
    }
    .ticker-item i, .ticker-item span {
      margin-right: 4px;
    }
    .ticker a {
      color: white;
      text-decoration: none;
      font-weight: 600;
    }
    .ticker a:hover {
      color: var(--orange-primary);
    }
    @keyframes tickerScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Sticky Navbar */
    .navbar {
      position: sticky;
      top: 0;
      background: var(--white);
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
      z-index: 1000;
      padding: 12px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .logo-area {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .logo-circle {
      width: 54px;
      height: 54px;
      background: linear-gradient(135deg, var(--orange-primary), var(--orange-primary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 28px;
      font-weight: bold;
      box-shadow: var(--shadow-sm);
    }
    .brand-text h2 {
      font-size: 1.4rem;
      line-height: 1.2;
    }
    .brand-text p {
      font-size: 0.8rem;
      margin-top: 2px;
      opacity: 0.8;
    }
    .nav-links {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }
    .nav-btn {
      background: var(--orange-primary);
      padding: 10px 24px;
      border-radius: 50px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .nav-btn:hover {
      background: var(--orange-hover);
      transform: translateY(-2px);
    }
    .dropdown {
      position: relative;
    }
    .dropdown-menu {
      position: absolute;
      top: 52px;
      left: 0;
      background: white;
      min-width: 250px;
      border-radius: 28px;
      box-shadow: var(--shadow-md);
      padding: 12px 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.25s ease;
      z-index: 1000;
      border: 1px solid rgba(0,0,0,0.05);
    }
    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu a {
      display: block;
      background: var(--orange-primary);
      margin: 8px 10px;
      padding: 10px 16px;
      border-radius: 40px;
      color: white;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: 0.2s;
    }
    .dropdown-menu a:hover {
      background: var(--orange-primary);
      transform: translateX(6px);
    }
    .hamburger {
      display: none;
      font-size: 28px;
      background: var(--orange-primary);
      color: white;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .mobile-menu {
      position: fixed;
      top: 0;
      left: -70%;
      width: 70%;
      max-width: 320px;
      height: 100%;
      background: white;
      z-index: 2000;
      box-shadow: 8px 0 30px rgba(0,0,0,0.2);
      transition: 0.3s ease-in-out;
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      overflow-y: auto;
    }
    .mobile-menu.open {
      left: 0;
    }
    .mobile-menu a, .mobile-dropdown-btn {
      background: var(--orange-primary);
      color: white;
      padding: 12px 18px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      width: 100%;
      font-size: 1rem;
    }
    .mobile-submenu {
      display: none;
      flex-direction: column;
      gap: 8px;
      margin-left: 12px;
      margin-top: 6px;
    }
    .mobile-submenu a {
      background: var(--orange-primary);
      padding: 10px 16px;
      font-size: 0.85rem;
    }
    .close-menu {
      align-self: flex-end;
      background: var(--orange-primary);
      width: 38px;
      text-align: center;
      border-radius: 30px;
      cursor: pointer;
      margin-bottom: 10px;
    }
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 1500;
      display: none;
    }
    /* Floating Buttons */
    .float-call, .float-wa {
      position: fixed;
      bottom: 30px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 28px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      transition: 0.25s;
      z-index: 1100;
      text-decoration: none;
    }
    .float-call { left: 25px; background: #ea580c; }
    .float-wa { right: 25px; background: #25D366; }
    .float-call:hover, .float-wa:hover { transform: scale(1.1); }

    /* Hero Slider */
    .hero-slider {
      position: relative;
      height: 88vh;
      min-height: 560px;
      overflow: hidden;
    }
    .slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center 30%;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .slide.active { opacity: 1; }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 20px;
    }
    .hero-overlay h1 { font-size: 3.5rem; margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,0.3);}
    .hero-overlay p { font-size: 1.2rem; max-width: 680px; margin-bottom: 35px;}
    .hero-btn { background: var(--orange-primary); padding: 14px 42px; border-radius: 60px; font-size: 1.1rem; }
    .slider-controls {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 20px;
      z-index: 20;
    }
    .slider-controls button {
      background: rgba(0,0,0,0.6);
      border: none;
      color: white;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
    }

    /* Cards Grid - 8 cards */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      margin: 48px 0;
    }
    .service-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }
    .service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .service-card:hover img { transform: scale(1.03); }
    .card-content { padding: 20px; }
    .card-content h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--orange-primary); }
    .card-content p { font-size: 0.85rem; color: #4b5563; margin-bottom: 16px; line-height: 1.4; }
    .card-buttons { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
    .card-buttons .btn-blue, .card-buttons .btn-orange { padding: 6px 14px; font-size: 0.75rem; }

    /* Testimonials - AUTO SLIDER left to right */
    .testimonial-wrapper {
      position: relative;
      overflow: hidden;
      margin: 40px 0 60px;
    }
    .review-slider-auto {
      display: flex;
      transition: transform 0.6s ease-in-out;
      gap: 30px;
    }
    .review-card {
      flex: 0 0 320px;
      background: white;
      border-radius: 36px;
      padding: 28px 22px;
      box-shadow: var(--shadow-sm);
      text-align: center;
    }
    .client-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 16px;
      border: 3px solid var(--orange-primary);
    }
    .review-card h4 { font-size: 1.2rem; margin: 10px 0 8px; }
    .dots {
      text-align: center;
      margin-top: 20px;
    }
    .dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      background: #ccc;
      border-radius: 50%;
      margin: 0 5px;
      cursor: pointer;
      transition: 0.2s;
    }
    .dot.active { background: var(--orange-primary); width: 28px; border-radius: 20px; }

    footer {
      background: #431407;
      color: #e2e8f0;
      padding: 52px 32px 32px;
      margin-top: 60px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
      gap: 40px;
      max-width: 1280px;
      margin: auto;
    }
    .social-icons a { color: white; margin-right: 20px; font-size: 24px; transition: 0.2s; display: inline-block; }
    .social-icons a:hover { color: var(--orange-primary); transform: translateY(-3px); }
    footer a { color: #cbd5e1; text-decoration: none; transition: 0.3s; }
    footer a:hover { color: var(--orange-primary); }
    .footer-grid h3, .footer-grid h4 { color: white; margin-bottom: 15px; }
    .footer-grid p { line-height: 1.6; color: #cbd5e1; }
    .footer-grid div:not(.social-icons) > a { display: block; margin-bottom: 10px; }

    @media (max-width: 1100px) {
      .cards-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .cards-grid { grid-template-columns: repeat(2, 1fr); }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-overlay h1 { font-size: 2.2rem; }
    }
    @media (max-width: 550px) {
      .cards-grid { grid-template-columns: 1fr; }
      .mobile-menu { width: 70%; }
    }
    .section-title {
      text-align: center;
      font-size: 2.2rem;
      margin: 50px 0 20px;
      color: var(--orange-primary);
      position: relative;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, var(--orange-primary), var(--orange-primary));
      border-radius: 3px;
    }
  
/* === SERVICE PAGE STYLES === */

    /* ========== RESET & VARIABLES ========== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --white: #ffffff;
      --blue-primary: #ea580c;
      --blue-accent: #2b4c9e;
      --blue-light: #3b6cb0;
      --orange-primary: #f97316;
      --orange-hover: #ea580c;
      --orange-light: #ffb347;
      --gray-light: #f8fafc;
      --gray-medium: #e2e8f0;
      --gray-dark: #1e293b;
      --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
      --shadow-lg: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
      --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      --transition-smooth: all 0.5s ease-out;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--white);
      color: var(--gray-dark);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, .logo-text {
      font-family: 'Cinzel', serif;
    }

    .arabic-font {
      font-family: 'Amiri', serif;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 28px;
    }

    /* Premium Buttons with Animations */
    .btn-blue, .btn-orange {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      letter-spacing: 0.3px;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    .btn-blue::before, .btn-orange::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
      z-index: -1;
    }
    .btn-blue:hover::before, .btn-orange:hover::before {
      width: 300px;
      height: 300px;
    }
    .btn-blue {
      background: var(--orange-primary);
      color: white;
    }
    .btn-blue:hover {
      background: var(--orange-hover);
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }
    .btn-orange {
      background: var(--orange-primary);
      color: white;
    }
    .btn-orange:hover {
      background: var(--orange-hover);
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }
    .btn-small {
      padding: 8px 20px;
      font-size: 0.85rem;
    }

    /* Ticker */
    .ticker-wrap {
      background: linear-gradient(95deg, var(--orange-primary), #c2410c);
      color: white;
      padding: 14px 0;
      overflow: hidden;
      position: relative;
      z-index: 10;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .ticker {
      display: flex;
      animation: tickerScroll 45s linear infinite;
      white-space: nowrap;
      width: max-content;
    }
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-right: 48px;
      font-size: 0.9rem;
      font-weight: 500;
      background: rgba(255,255,255,0.1);
      padding: 5px 16px;
      border-radius: 40px;
      transition: all 0.3s ease;
    }
    .ticker-item:hover {
      background: rgba(255,255,255,0.25);
      transform: scale(1.05);
    }
    .ticker-item i, .ticker-item span {
      margin-right: 4px;
    }
    .ticker a {
      color: white;
      text-decoration: none;
      font-weight: 600;
    }
    .ticker a:hover {
      color: var(--orange-primary);
    }
    @keyframes tickerScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Sticky Navbar */
    .navbar {
      position: sticky;
      top: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
      z-index: 1000;
      padding: 12px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      transition: var(--transition);
    }
    .logo-area {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .logo-circle {
      width: 54px;
      height: 54px;
      background: linear-gradient(135deg, var(--orange-primary), var(--orange-primary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 28px;
      font-weight: bold;
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s ease;
    }
    .logo-circle:hover {
      transform: rotate(5deg) scale(1.05);
    }
    .brand-text h2 {
      font-size: 1.4rem;
      line-height: 1.2;
    }
    .brand-text p {
      font-size: 0.8rem;
      margin-top: 2px;
      opacity: 0.8;
    }
    .nav-links {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }
    .nav-btn {
      background: var(--orange-primary);
      padding: 10px 24px;
      border-radius: 50px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      position: relative;
      overflow: hidden;
    }
    .nav-btn::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--orange-primary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    .nav-btn:hover::after {
      width: 80%;
    }
    .nav-btn:hover {
      background: var(--orange-hover);
      transform: translateY(-2px);
    }
    .dropdown {
      position: relative;
    }
    .dropdown-menu {
      position: absolute;
      top: 52px;
      left: 0;
      background: white;
      min-width: 250px;
      border-radius: 28px;
      box-shadow: var(--shadow-md);
      padding: 12px 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 1000;
      border: 1px solid rgba(0,0,0,0.05);
    }
    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu a {
      display: block;
      background: var(--orange-primary);
      margin: 8px 10px;
      padding: 10px 16px;
      border-radius: 40px;
      color: white;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    .dropdown-menu a:hover {
      background: var(--orange-primary);
      transform: translateX(8px) scale(1.02);
    }
    .hamburger {
      display: none;
      font-size: 28px;
      background: var(--orange-primary);
      color: white;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
    }
    .hamburger:hover {
      transform: scale(1.05);
      background: var(--orange-hover);
    }
    .mobile-menu {
      position: fixed;
      top: 0;
      left: -70%;
      width: 70%;
      max-width: 320px;
      height: 100%;
      background: white;
      z-index: 2000;
      box-shadow: 8px 0 30px rgba(0,0,0,0.2);
      transition: 0.3s ease-in-out;
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      overflow-y: auto;
    }
    .mobile-menu.open {
      left: 0;
    }
    .mobile-menu a, .mobile-dropdown-btn {
      background: var(--orange-primary);
      color: white;
      padding: 12px 18px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      width: 100%;
      font-size: 1rem;
      transition: var(--transition);
    }
    .mobile-menu a:hover, .mobile-dropdown-btn:hover {
      background: var(--orange-hover);
      transform: translateX(5px);
    }
    .mobile-submenu {
      display: none;
      flex-direction: column;
      gap: 8px;
      margin-left: 12px;
      margin-top: 6px;
    }
    .mobile-submenu a {
      background: var(--orange-primary);
      padding: 10px 16px;
      font-size: 0.85rem;
    }
    .close-menu {
      align-self: flex-end;
      background: var(--orange-primary);
      width: 38px;
      text-align: center;
      border-radius: 30px;
      cursor: pointer;
      margin-bottom: 10px;
      transition: var(--transition);
    }
    .close-menu:hover {
      transform: rotate(90deg);
      background: var(--orange-hover);
    }
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 1500;
      display: none;
    }
    /* Floating Buttons */
    .float-call, .float-wa {
      position: fixed;
      bottom: 30px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 28px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
      z-index: 1100;
      text-decoration: none;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.08); }
    }
    .float-call { left: 25px; background: #ea580c; }
    .float-wa { right: 25px; background: #25D366; }
    .float-call:hover, .float-wa:hover { transform: scale(1.15); animation: none; }

    /* Hero Section */
    .page-hero {
      position: relative;
      height: 55vh;
      min-height: 420px;
      background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.55)), url('https://picsum.photos/id/1/1600/700');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      animation: fadeIn 1s ease-out;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(1.02); }
      to { opacity: 1; transform: scale(1); }
    }
    .page-hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 16px;
      animation: slideUp 0.8s ease-out;
    }
    .page-hero-content p {
      font-size: 1.2rem;
      max-width: 700px;
      margin-bottom: 30px;
      animation: slideUp 0.8s ease-out 0.2s backwards;
    }
    .page-hero-content a {
      animation: slideUp 0.8s ease-out 0.4s backwards;
    }
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Service Cards Grid - with Animations */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin: 60px 0;
    }
    .service-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition-smooth);
      opacity: 0;
      transform: translateY(30px);
      animation: cardReveal 0.6s ease-out forwards;
    }
    @keyframes cardReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .service-card:nth-child(1) { animation-delay: 0.05s; }
    .service-card:nth-child(2) { animation-delay: 0.1s; }
    .service-card:nth-child(3) { animation-delay: 0.15s; }
    .service-card:nth-child(4) { animation-delay: 0.2s; }
    .service-card:nth-child(5) { animation-delay: 0.25s; }
    .service-card:nth-child(6) { animation-delay: 0.3s; }
    .service-card:nth-child(7) { animation-delay: 0.35s; }
    .service-card:nth-child(8) { animation-delay: 0.4s; }
    
    .service-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: var(--shadow-lg);
    }
    .service-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
    .service-card:hover img {
      transform: scale(1.08);
    }
    .card-content {
      padding: 24px;
      background: linear-gradient(to bottom, white, #fef9f5);
    }
    .card-content h3 {
      font-size: 1.35rem;
      margin-bottom: 10px;
      color: var(--orange-primary);
      transition: color 0.3s ease;
    }
    .service-card:hover h3 {
      color: var(--orange-primary);
    }
    .card-content p {
      color: #4b5563;
      line-height: 1.5;
      margin-bottom: 20px;
    }
    .card-btn {
      background: var(--orange-primary);
      display: inline-block;
      padding: 10px 24px;
      border-radius: 40px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .card-btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      transform: translate(-50%, -50%);
      transition: width 0.5s, height 0.5s;
    }
    .card-btn:hover::before {
      width: 200px;
      height: 200px;
    }
    .card-btn:hover {
      background: var(--orange-hover);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(249,115,22,0.3);
    }

    /* Features Section with Animations */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      margin: 50px 0;
    }
    .feature-item {
      text-align: center;
      padding: 30px 20px;
      background: var(--gray-light);
      border-radius: 28px;
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(20px);
      animation: featureReveal 0.6s ease-out forwards;
    }
    @keyframes featureReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .feature-item:nth-child(1) { animation-delay: 0.1s; }
    .feature-item:nth-child(2) { animation-delay: 0.2s; }
    .feature-item:nth-child(3) { animation-delay: 0.3s; }
    .feature-item:nth-child(4) { animation-delay: 0.4s; }
    
    .feature-item:hover {
      transform: translateY(-8px);
      background: white;
      box-shadow: var(--shadow-md);
    }
    .feature-item i {
      font-size: 48px;
      color: var(--orange-primary);
      margin-bottom: 18px;
      transition: transform 0.3s ease;
    }
    .feature-item:hover i {
      transform: scale(1.1) rotate(5deg);
    }
    .feature-item h3 {
      margin-bottom: 10px;
      color: var(--orange-primary);
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, var(--orange-primary), #c2410c);
      padding: 70px 30px;
      text-align: center;
      color: white;
      margin: 40px 0;
      border-radius: 40px;
      transition: transform 0.3s ease;
      animation: fadeIn 1s ease-out;
    }
    .cta-section:hover {
      transform: scale(1.01);
    }
    .cta-section h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
    }
    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 25px;
      text-align: center;
      color: white;
      animation: fadeIn 1s ease-out;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(1.02); }
      to { opacity: 1; transform: scale(1); }
    }
    .page-hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 16px;
      animation: slideUp 0.8s ease-out;
    }
    .page-hero-content p {
      font-size: 1.2rem;
      max-width: 700px;
      margin-bottom: 30px;
      animation: slideUp 0.8s ease-out 0.2s backwards;
    }
    .page-hero-content a {
      animation: slideUp 0.8s ease-out 0.4s backwards;
    }
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Service Cards Grid - with Animations */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin: 60px 0;
    }
    .service-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition-smooth);
      opacity: 0;
      transform: translateY(30px);
      animation: cardReveal 0.6s ease-out forwards;
    }
    @keyframes cardReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .service-card:nth-child(1) { animation-delay: 0.05s; }
    .service-card:nth-child(2) { animation-delay: 0.1s; }
    .service-card:nth-child(3) { animation-delay: 0.15s; }
    .service-card:nth-child(4) { animation-delay: 0.2s; }
    .service-card:nth-child(5) { animation-delay: 0.25s; }
    .service-card:nth-child(6) { animation-delay: 0.3s; }
    .service-card:nth-child(7) { animation-delay: 0.35s; }
    .service-card:nth-child(8) { animation-delay: 0.4s; }
    
    .service-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: var(--shadow-lg);
    }
    .service-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
    .service-card:hover img {
      transform: scale(1.08);
    }
    .card-content {
      padding: 24px;
      background: linear-gradient(to bottom, white, #fef9f5);
    }
    .card-content h3 {
      font-size: 1.35rem;
      margin-bottom: 10px;
      color: var(--orange-primary);
      transition: color 0.3s ease;
    }
    .service-card:hover h3 {
      color: var(--orange-primary);
    }
    .card-content p {
      color: #4b5563;
      line-height: 1.5;
      margin-bottom: 20px;
    }
    .card-btn {
      background: var(--orange-primary);
      display: inline-block;
      padding: 10px 24px;
      border-radius: 40px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .card-btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      transform: translate(-50%, -50%);
      transition: width 0.5s, height 0.5s;
    }
    .card-btn:hover::before {
      width: 200px;
      height: 200px;
    }
    .card-btn:hover {
      background: var(--orange-hover);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(249,115,22,0.3);
    }

    /* Features Section with Animations */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      margin: 50px 0;
    }
    .feature-item {
      text-align: center;
      padding: 30px 20px;
      background: var(--gray-light);
      border-radius: 28px;
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(20px);
      animation: featureReveal 0.6s ease-out forwards;
    }
    @keyframes featureReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .feature-item:nth-child(1) { animation-delay: 0.1s; }
    .feature-item:nth-child(2) { animation-delay: 0.2s; }
    .feature-item:nth-child(3) { animation-delay: 0.3s; }
    .feature-item:nth-child(4) { animation-delay: 0.4s; }
    
    .feature-item:hover {
      transform: translateY(-8px);
      background: white;
      box-shadow: var(--shadow-md);
    }
    .feature-item i {
      font-size: 48px;
      color: var(--orange-primary);
      margin-bottom: 18px;
      transition: transform 0.3s ease;
    }
    .feature-item:hover i {
      transform: scale(1.1) rotate(5deg);
    }
    .feature-item h3 {
      margin-bottom: 10px;
      color: var(--orange-primary);
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, var(--orange-primary), #c2410c);
      padding: 70px 30px;
      text-align: center;
      color: white;
      margin: 40px 0;
      border-radius: 40px;
      transition: transform 0.3s ease;
      animation: fadeIn 1s ease-out;
    }
    .cta-section:hover {
      transform: scale(1.01);
    }
    .cta-section h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
    }
    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 25px;
    }

    footer {
      background: #431407;
      color: #e2e8f0;
      padding: 52px 32px 32px;
      margin-top: 60px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
      gap: 40px;
      max-width: 1280px;
      margin: auto;
    }
    .social-icons a {
      color: white;
      margin-right: 20px;
      font-size: 24px;
      transition: all 0.3s ease;
      display: inline-block;
    }
    .social-icons a:hover {
      color: var(--orange-primary);
      transform: translateY(-5px) rotate(8deg);
    }

    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(3, 1fr); }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .navbar {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
      }
      .brand-text h2 {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .logo-area {
        flex: 1;
        min-width: 0;
      }
      .nav-links { display: none; }
      .hamburger { display: flex; flex-shrink: 0; margin-left: auto; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .page-hero-content h1 { font-size: 2.2rem; }
      .features-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 550px) {
      .services-grid { grid-template-columns: 1fr; }
    }
    .section-title {
      text-align: center;
      font-size: 2.3rem;
      margin: 60px 0 20px;
      color: var(--orange-primary);
      position: relative;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, var(--orange-primary), var(--orange-primary));
      border-radius: 3px;
    }
  

/* === ABOUT PAGE STYLES === */
.about-section { padding: 60px 0; }
.about-content { background: var(--gray-light); padding: 40px; border-radius: 28px; line-height: 1.8; font-size: 1.1rem; }
.about-content h2 { font-size: 2.2rem; color: var(--orange-primary); margin-bottom: 20px; }
.highlight { color: var(--orange-primary); font-weight: bold; }
.mission-section { margin: 60px auto; }
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.mission-card { background: white; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.mission-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.mission-card img { width: 100%; height: 200px; object-fit: cover; }
.mission-card-content { padding: 24px; }
.mission-card-content h3 { color: var(--orange-primary); margin-bottom: 12px; font-size: 1.4rem; }
.mission-card-content p { color: #4b5563; margin-bottom: 12px; line-height: 1.6; }
.features-section { background: var(--gray-light); padding: 80px 0; margin-top: 60px; }
.feature-card { text-align: center; background: white; padding: 30px 20px; border-radius: 24px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-card i { font-size: 40px; color: var(--orange-primary); margin-bottom: 15px; }
.feature-card h3 { color: var(--orange-primary); margin-bottom: 15px; }

/* === CONTACT PAGE STYLES === */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin: 60px 0; }
.contact-card { background: white; padding: 40px 20px; border-radius: 28px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.contact-card i { font-size: 45px; color: var(--orange-primary); margin-bottom: 20px; }
.contact-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--gray-dark); }
.contact-card p { color: #4b5563; margin-bottom: 20px; line-height: 1.6; }
.contact-card a { display: inline-block; color: var(--orange-primary); font-weight: 600; text-decoration: none; font-size: 1.1rem; }
.contact-card a:hover { text-decoration: underline; }
.form-section { margin: 60px auto; }
.form-container { max-width: 800px; margin: 0 auto; background: white; padding: 40px; border-radius: 28px; box-shadow: var(--shadow-md); }
.form-container h2 { text-align: center; color: var(--orange-primary); margin-bottom: 30px; font-size: 2rem; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--gray-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px; border: 1px solid #d1d5db; border-radius: 12px; font-family: inherit; font-size: 1rem; transition: var(--transition); }
.form-group textarea { height: 150px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange-primary); box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2); }
.submit-btn { background: var(--orange-primary); color: white; border: none; padding: 15px 30px; font-size: 1.1rem; font-weight: 600; border-radius: 50px; cursor: pointer; width: 100%; transition: var(--transition); display: flex; justify-content: center; align-items: center; gap: 10px; }
.submit-btn:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.map-section { margin: 60px auto 80px; }
.map-container { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-md); height: 450px; }
.map-container iframe { width: 100%; height: 100%; border: none; }
.success-message { display: none; background: #dcfce7; color: #166534; padding: 15px; border-radius: 12px; text-align: center; margin-bottom: 20px; font-weight: 600; }
.error-message { display: none; background: #fee2e2; color: #991b1b; padding: 15px; border-radius: 12px; text-align: center; margin-bottom: 20px; font-weight: 600; }
@media (max-width: 768px) { .form-container { padding: 25px; } .map-container { height: 350px; } }

/* === COLORFUL SOCIAL ICONS === */
.footer-grid .social-icons a .fa-facebook {
    color: #1877F2;
}
.footer-grid .social-icons a .fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-grid .social-icons a .fa-snapchat {
    color: #FFFC00;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

