@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
/* Modern Moroccan-Inspired Color Palette - Dark Blue Theme */
    :root {
      --primary-dark-blue: #1e3a5f;
      --primary-blue: #2c5282;
      --primary-blue-light: #3182ce;
      --secondary-gold: #D4A373;
      --accent-coral: #E07A5F;
      --bg-warm: #F8FAFC;
      --bg-cream: #F1F5F9;
      --text-dark: #1e293b;
      --text-muted: #64748b;
      --border-light: #e2e8f0;
      --shadow-soft: 0 2px 12px rgba(30, 58, 95, 0.06);
      --shadow-hover: 0 4px 20px rgba(30, 58, 95, 0.12);
    }

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

    body {
      font-family: 'Tajawal', sans-serif;
      background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
      font-size: 16px;
      line-height: 1.6;
    }

    /* Reduced spacing throughout */
    .container {
      padding: 0 0.75rem;
    }

    /* Navigation - Compact */
    .navbar {
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-light);
      padding: 0.5rem 0;
    }

    .navbar-brand img {
      height: 40px;
    }

    .nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-dark) !important;
      padding: 0.5rem 0.75rem !important;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .nav-link:hover, .nav-link.active {
      background: var(--bg-warm);
      color: var(--primary-dark-blue) !important;
    }

    .dropdown-menu {
      border: none;
      border-radius: 12px;
      box-shadow: var(--shadow-hover);
      padding: 0.75rem;
      min-width: 280px;
    }

    .dropdown-item {
      border-radius: 6px;
      padding: 0.6rem 0.75rem;
      font-size: 0.9rem;
      transition: all 0.2s;
    }

    /* Hero Section - Compact with Glassmorphism */
    .hero-banner {
      background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
      border-radius: 12px;
      position: relative;
      overflow: hidden;
      padding: 1.25rem;
    }

    .hero-banner::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .live-clock {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      padding: 0.6rem 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: white;
      font-size: 0.85rem;
    }

    .live-clock #live-time {
      font-size: 1.3rem;
      font-weight: 700;
    }

    /* Glassmorphism Search Field - Fixed for mobile */
    .search-container-modern {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      padding: 0.75rem;
      margin: 1rem 0;
    }

    .search-wrapper-modern {
      background: rgba(255,255,255,0.95);
      border-radius: 10px;
      padding: 0.4rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .search-wrapper-modern:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .search-input-fake-modern {
      flex: 1;
      border: none;
      background: transparent;
      font-size: 1rem;
      color: var(--text-dark);
      cursor: pointer;
      padding: 0.5rem;
    }

    .search-btn-modern {
      background: var(--primary-dark-blue);
      color: white;
      border: none;
      padding: 0.6rem 1.25rem;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
      white-space: nowrap;
    }

    .search-btn-modern:hover {
      background: var(--primary-blue);
      transform: translateY(-1px);
    }

    /* Quick Action Pills - Compact */
    .quick-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .quick-pill {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.25);
      color: white;
      padding: 0.6rem 1.1rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: all 0.3s;
    }

    .quick-pill:hover {
      background: white;
      color: var(--primary-dark-blue);
      transform: translateY(-2px);
    }

    /* Section Headers - Compact */
    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .section-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    /* Main Services Grid - Compact */
    .services-container {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 1rem;
      margin-bottom: 2rem;
    }

    /* Health Hub Card - Compact */
    .health-hub {
      grid-column: span 5;
      background: white;
      border-radius: 16px;
      padding: 1.25rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border-light);
    }

    .health-hub-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .health-hub-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
      color: var(--primary-dark-blue);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .health-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.85rem;
      border-radius: 10px;
      text-decoration: none;
      color: inherit;
      transition: all 0.3s;
      margin-bottom: 0.5rem;
      border: 1px solid transparent;
    }

    .health-item:hover {
      background: var(--bg-warm);
      border-color: var(--border-light);
      transform: translateX(-4px);
    }

    .health-item-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .health-item-icon.pharmacy { background: #DBEAFE; color: var(--primary-dark-blue); }
    .health-item-icon.lab { background: #E0E7FF; color: var(--primary-blue); }
    .health-item-icon.doctor { background: #F3E8FF; color: #7C3AED; }
    .health-item-icon.vet { background: #FFEDD5; color: #C2410C; }

    .health-item h6 {
      font-size: 0.95rem;
    }

    .health-item small {
      font-size: 0.8rem;
    }

    .health-badge {
      font-size: 0.7rem;
      padding: 0.25rem 0.6rem;
      border-radius: 20px;
      margin-right: auto;
    }

    /* Business Directory Card - Compact */
    .business-hub {
      grid-column: span 4;
      background: white;
      border-radius: 16px;
      padding: 1.25rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border-light);
    }

    .business-hub-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
      color: var(--primary-dark-blue);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
      margin-bottom: 0.75rem;
    }

    .category-mini {
      background: var(--bg-cream);
      border-radius: 8px;
      padding: 0.75rem;
      text-align: center;
      text-decoration: none;
      color: var(--text-dark);
      transition: all 0.3s;
      border: 1px solid transparent;
    }

    .category-mini:hover {
      background: white;
      border-color: var(--primary-dark-blue);
      color: var(--primary-dark-blue);
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }

    .category-mini i {
      display: block;
      font-size: 1.2rem;
      margin-bottom: 0.3rem;
    }

    .category-mini span {
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* Unified Dark Blue Buttons */
    .btn-dark-blue {
      background: var(--primary-dark-blue);
      color: white;
      border: none;
      border-radius: 8px;
      padding: 0.7rem;
      font-size: 0.9rem;
      font-weight: 600;
      transition: all 0.3s;
    }

    .btn-dark-blue:hover {
      background: var(--primary-blue);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
    }

    .btn-outline-dark-blue {
      background: transparent;
      color: var(--primary-dark-blue);
      border: 2px solid var(--primary-dark-blue);
      border-radius: 8px;
      padding: 0.7rem;
      font-size: 0.9rem;
      font-weight: 600;
      transition: all 0.3s;
    }

    .btn-outline-dark-blue:hover {
      background: var(--primary-dark-blue);
      color: white;
    }

    /* Business Hub Buttons Row */
    .business-hub-buttons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      margin-top: 0.75rem;
    }

    /* Info Hub Card - Compact */
    .info-hub {
      grid-column: span 3;
      background: white;
      border-radius: 16px;
      padding: 1.25rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border-light);
    }

    .info-hub-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%);
      color: #C2410C;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .info-list {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .info-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.7rem;
      border-radius: 8px;
      text-decoration: none;
      color: var(--text-dark);
      font-size: 0.9rem;
      transition: all 0.2s;
    }

    .info-item:hover {
      background: var(--bg-warm);
      color: var(--primary-dark-blue);
    }

    .info-item i {
      font-size: 1.1rem;
      opacity: 0.7;
    }

    /* Stats Section - Compact */
    .stats-section {
      grid-column: span 12;
      background: white;
      border-radius: 16px;
      padding: 1.25rem 1.5rem;
      box-shadow: var(--shadow-soft);
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .stat-box {
      text-align: center;
    }

    .stat-number {
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--primary-dark-blue);
      display: block;
      line-height: 1;
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 0.3rem;
    }

    /* News & Latest Section - Compact */
    .content-split {
      grid-column: span 12;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1rem;
    }

    .news-section, .latest-section {
      background: white;
      border-radius: 16px;
      padding: 1.25rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border-light);
    }

    .news-grid-modern {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }

    .news-card-modern {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border-light);
      transition: all 0.3s;
    }

    .news-card-modern:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .news-image-modern {
      width: 100%;
      height: 110px;
      object-fit: cover;
    }

    .news-content-modern {
      padding: 0.85rem;
    }

    .news-tag {
      font-size: 0.8rem;
      color: var(--primary-dark-blue);
      font-weight: 600;
      margin-bottom: 0.3rem;
      display: block;
    }

    .news-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-dark);
      text-decoration: none;
      line-height: 1.5;
      display: block;
    }

    .news-date {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.3rem;
    }

    /* Latest List - Compact */
    .latest-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .latest-item {
      display: flex;
      gap: 0.75rem;
      align-items: center;
      padding: 0.7rem;
      border-radius: 10px;
      transition: all 0.3s;
      border: 1px solid transparent;
    }

    .latest-item:hover {
      background: var(--bg-warm);
      border-color: var(--border-light);
    }

    .latest-avatar {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      object-fit: cover;
    }

    .latest-info h6 {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
      color: var(--text-dark);
    }

    .latest-info .badge {
      font-size: 0.75rem;
      font-weight: 500;
    }

    .latest-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }

    /* Category Pills Row - Compact */
    .category-pills-row {
      grid-column: span 12;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      padding: 0.75rem 0;
    }

    .category-pill-modern {
      background: white;
      border: 1px solid var(--border-light);
      border-radius: 50px;
      padding: 0.6rem 1.1rem;
      text-decoration: none;
      color: var(--text-dark);
      font-size: 0.95rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: all 0.3s;
      box-shadow: var(--shadow-soft);
    }

    .category-pill-modern:hover {
      background: var(--primary-dark-blue);
      color: white;
      border-color: var(--primary-dark-blue);
      transform: translateY(-2px);
    }

    /* Transport Services Section - Horizontal Scroll */
    .transport-section {
      grid-column: span 12;
      background: white;
      border-radius: 16px;
      padding: 1.25rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border-light);
      margin-bottom: 1rem;
    }

    .transport-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }

    .transport-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .transport-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
      color: var(--primary-dark-blue);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    /* Horizontal Scroll Container */
    .transport-scroll-container {
      position: relative;
      overflow: hidden;
    }

    .transport-scroll {
      display: flex;
      gap: 0.75rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding-bottom: 0.5rem;
      direction: rtl;
    }

    .transport-scroll::-webkit-scrollbar {
      display: none;
    }

    /* Transport Card - Compact Professional */
    .transport-card {
      flex: 0 0 auto;
      width: 150px;
      text-decoration: none;
      color: inherit;
    }

    .transport-card-inner {
      background: var(--bg-cream);
      border-radius: 12px;
      padding: 1.1rem 0.85rem;
      text-align: center;
      transition: all 0.3s;
      border: 1px solid transparent;
      position: relative;
    }

    .transport-card-inner:hover {
      background: white;
      border-color: var(--primary-dark-blue);
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .transport-image-wrapper {
      width: 60px;
      height: 60px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.75rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .transport-image-wrapper img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }

    .transport-name {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.4;
      display: block;
    }

    /* More Card */
    .transport-card.more .transport-card-inner {
      background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
      color: white;
    }

    .transport-card.more .transport-image-wrapper {
      background: rgba(255,255,255,0.2);
      box-shadow: none;
    }

    .transport-card.more .transport-image-wrapper i {
      font-size: 1.6rem;
      color: white;
    }

    .transport-card.more .transport-name {
      color: white;
    }

    .transport-card.more:hover .transport-card-inner {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    }

    /* Scroll Indicators */
    .scroll-indicator {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: white;
      border: 1px solid var(--border-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: var(--shadow-hover);
      z-index: 10;
      transition: all 0.3s;
    }

    .scroll-indicator:hover {
      background: var(--primary-dark-blue);
      color: white;
      border-color: var(--primary-dark-blue);
    }

    .scroll-indicator.left {
      left: 0;
    }

    .scroll-indicator.right {
      right: 0;
    }

    /* Ticker - Fixed Animation */
    .ticker-container {
      grid-column: span 12;
      background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
      border-radius: 12px;
      padding: 0.85rem 1rem;
      margin-bottom: 1rem;
      overflow: hidden;
      position: relative;
    }

    .ticker-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: white;
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
      font-weight: 600;
    }

    .ticker-header i {
      font-size: 1.1rem;
    }

    .ticker-wrapper {
      overflow: hidden;
      position: relative;
    }

    .ticker-content {
      display: flex;
      gap: 1.5rem;
      animation: ticker 25s linear infinite;
      white-space: nowrap;
      direction: rtl;
      will-change: transform;
    }

    .ticker-content:hover {
      animation-play-state: paused;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.95);
      text-decoration: none;
      font-size: 0.9rem;
      padding: 0.5rem 0.85rem;
      background: rgba(255,255,255,0.12);
      border-radius: 50px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.15);
      transition: all 0.3s;
      flex-shrink: 0;
    }

    .ticker-item:hover {
      background: rgba(255,255,255,0.2);
      color: white;
      transform: scale(1.05);
    }

    .ticker-item img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255,255,255,0.2);
    }

    .ticker-badge {
      background: rgba(255,255,255,0.25);
      color: white;
      padding: 0.2rem 0.5rem;
      border-radius: 20px;
      font-size: 0.75rem;
    }

    /* First ticker item new badge - Fixed */
    .ticker-item.new-item {
      background: rgba(16, 185, 129, 0.3);
      border-color: rgba(16, 185, 129, 0.5);
      position: relative;
    }

    .ticker-item.new-item::before {
      content: 'جديد';
      background: #10B981;
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.15rem 0.5rem;
      border-radius: 20px;
      margin-left: 0.5rem;
    }

    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Footer - Compact */
    .footer-modern {
      background: white;
      border-top: 1px solid var(--border-light);
      margin-top: 2rem;
      padding: 2rem 0 1rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .footer-brand p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-top: 0.75rem;
      line-height: 1.6;
    }

    .footer-links h6 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.75rem;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

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

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--primary-dark-blue);
    }

    .footer-bottom {
      border-top: 1px solid var(--border-light);
      padding-top: 1rem;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .health-hub, .business-hub, .info-hub {
        grid-column: span 12;
      }
      .content-split {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .business-hub-buttons {
        grid-template-columns: 1fr 1fr;
      }
      .transport-card {
        width: 140px;
      }
    }

    @media (max-width: 576px) {
      body {
        font-size: 15px;
      }
      
      .hero-banner {
        padding: 1rem;
        border-radius: 10px;
      }
      
      .hero-banner h1 {
        font-size: 1.15rem !important;
      }
      
      .hero-banner p {
        font-size: 0.9rem !important;
      }
      
      .search-container-modern {
        padding: 0.6rem;
      }
      
      .search-wrapper-modern {
        flex-wrap: nowrap;
      }
      
      .search-input-fake-modern {
        font-size: 0.9rem;
        padding: 0.4rem;
        min-width: 0;
      }
      
      .search-btn-modern {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
      }
      
      .quick-pill {
        font-size: 0.85rem;
        padding: 0.5rem 0.9rem;
      }
      
      .news-grid-modern {
        grid-template-columns: 1fr;
      }
      
      .stats-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem;
      }
      
      .stat-number {
        font-size: 1.5rem;
      }
      
      .stat-label {
        font-size: 0.85rem;
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }
      
      .transport-card {
        width: 130px;
      }
      
      .transport-card-inner {
        padding: 1rem 0.6rem;
      }
      
      .transport-name {
        font-size: 0.85rem;
      }
      
      .scroll-indicator {
        display: none;
      }
      
      .ticker-item {
        font-size: 0.85rem;
      }
    }

    /* Smooth Animations */
    .fade-in {
      animation: fadeIn 0.6s ease-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Back to Top - Compact */
    .back-to-top {
      position: fixed;
      bottom: 1.5rem;
      left: 1.5rem;
      width: 44px;
      height: 44px;
      background: var(--primary-dark-blue);
      color: white;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      box-shadow: var(--shadow-hover);
      z-index: 1000;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      transform: translateY(-4px);
      background: var(--primary-blue);
    }