/* Home layout styles */
    .user-hero {
      padding: 60px 0 40px 0;
    }
    .user-hero-card {
      background: #fff;
      border-radius: 24px;
      padding: 50px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      min-height: 300px;
    }
    .user-hero-content {
      flex: 1;
      max-width: 500px;
      z-index: 2;
    }
    .user-hero-content h1 {
      font-family: 'Volkhov', serif;
      font-size: clamp(2rem, 3.5vw + 0.5rem, 2.625rem);
      color: #181E4B;
      margin-bottom: 15px;
      line-height: 1.2;
    }
    .user-hero-content p {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      color: #5E6282;
      line-height: 1.6;
    }
    .user-hero-image {
      position: absolute;
      right: 0;
      top: 0;
      width: 50%;
      height: 100%;
      z-index: 1;
    }
    .user-hero-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, #fff 0%, transparent 100%);
      z-index: 1;
    }
    .user-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .my-plans-section {
      padding: 40px 0 100px 0;
    }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .plan-card {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0,0,0,0.05);
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
      position: relative;
      text-decoration: none;
    }
    .plan-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    }
    .plan-card-img {
      height: 200px;
      position: relative;
    }
    .plan-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .plan-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #1EB589;
      color: #fff;
      padding: 6px 12px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 600;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .plan-badge.past {
      background: #5E6282;
    }
    .plan-card-body {
      padding: 25px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .plan-meta {
      font-size: 13px;
      color: #DF6951;
      font-weight: 600;
      margin-bottom: 8px;
      font-family: 'Poppins', sans-serif;
    }
    .plan-card-body h3 {
      font-family: 'Volkhov', serif;
      font-size: 22px;
      color: #181E4B;
      margin-bottom: 10px;
    }
    .plan-card-body p {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      color: #5E6282;
      line-height: 1.6;
      margin-bottom: 20px;
      flex: 1;
    }
    .plan-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 15px;
      border-top: 1px solid #f0f0f0;
    }
    .plan-price {
      font-weight: 600;
      color: #181E4B;
      font-family: 'Poppins', sans-serif;
    }
    .btn-view {
      background: #FFF1DA;
      color: #DF6951;
      border: none;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
    }
    .btn-view:hover {
      background: #DF6951;
      color: #fff;
    }
    .add-new-plan {
      background: rgba(255, 255, 255, 0.5);
      border: 2px dashed #DF6951;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      text-align: center;
      box-shadow: none;
    }
    .add-new-plan:hover {
      background: #fff;
      box-shadow: 0 15px 35px rgba(223,105,81,0.1);
      border-style: solid;
    }
    .add-new-content .add-icon {
      width: 60px;
      height: 60px;
      background: #FFF1DA;
      color: #DF6951;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin: 0 auto 15px;
      transition: transform 0.3s;
    }
    .add-new-plan:hover .add-icon {
      transform: scale(1.1);
      background: #DF6951;
      color: #fff;
    }
    .add-new-content h3 {
      font-family: 'Volkhov', serif;
      font-size: 22px;
      color: #181E4B;
      margin-bottom: 8px;
    }
    .add-new-content p {
      color: #5E6282;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
    }

    .btn-action {
      background: #DF6951;
      color: #fff;
      padding: 10px 20px;
      border-radius: 10px;
      font-weight: 500;
      border: none;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      text-decoration: none;
      display: inline-block;
    }
    .btn-outline {
      background: transparent;
      color: #181E4B;
      padding: 10px 20px;
      border-radius: 10px;
      font-weight: 500;
      border: 1px solid #181E4B;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      text-decoration: none;
      display: inline-block;
    }

    /* Avatar adjustments for nav */
    .nav-user {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }
    .nav-user img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
    }
    
    .logout-btn {
      color: #DF6951;
      font-weight: 600;
      cursor: pointer;
      background: none;
      border: none;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
    }

    /* Insights Section */
    .insights-section {
      padding: 0 0 80px 0;
    }
    .insights-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .insight-card {
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.03);
      display: flex;
      gap: 15px;
      align-items: flex-start;
      border: 1px solid transparent;
      transition: 0.3s;
    }
    .insight-card:hover {
      border-color: rgba(223, 105, 81, 0.2);
      transform: translateY(-5px);
    }
    .insight-icon {
      width: 45px;
      height: 45px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    .insight-icon.currency { background: rgba(30, 181, 137, 0.1); color: #1EB589; }
    .insight-icon.weather { background: rgba(241, 165, 1, 0.1); color: #F1A501; }
    .insight-icon.route { background: rgba(65, 82, 203, 0.1); color: #4152CB; }
    
    .insight-content h4 {
      font-family: 'Volkhov', serif;
      color: #181E4B;
      font-size: 18px;
      margin-bottom: 5px;
    }
    .insight-content p {
      font-size: 13px;
      color: #5E6282;
      line-height: 1.6;
      font-family: 'Poppins', sans-serif;
    }

    /* Stats Banner */
    .stats-banner {
      background: #181E4B;
      border-radius: 24px;
      padding: 50px;
      margin-bottom: 100px;
      display: flex;
      justify-content: space-around;
      position: relative;
      overflow: hidden;
    }
    .stats-banner::before {
      content: '';
      position: absolute;
      right: -50px;
      top: -50px;
      width: 200px;
      height: 200px;
      background: rgba(223, 105, 81, 0.2);
      border-radius: 50%;
      filter: blur(40px);
    }
    .stat-item {
      text-align: center;
      color: #fff;
    }
    .stat-item h2 {
      font-family: 'Volkhov', serif;
      font-size: clamp(2rem, 4vw + 0.5rem, 2.875rem);
      margin-bottom: 5px;
      color: #DF6951;
    }
    .stat-item p {
      font-size: 16px;
      opacity: 0.8;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
    }

    @media (max-width: 992px) {
      .plans-grid { grid-template-columns: 1fr; }
      .user-hero-card { flex-direction: column; padding: 30px; }
      .user-hero-image { position: relative; width: 100%; height: 200px; margin-top: 20px; }
      .user-hero-image::before { background: linear-gradient(to bottom, #fff 0%, transparent 100%); }
      .insights-grid { grid-template-columns: 1fr; }
    }
    
    @media (max-width: 768px) {
      .stats-banner { flex-direction: column; gap: 30px; padding: 30px; margin-bottom: 60px; }
      .user-hero-content h1 { font-size: 32px; }
      .plan-card-body h3 { font-size: 18px; }
      .insight-card { flex-direction: column; align-items: center; text-align: center; }
      .stat-item h2 { font-size: clamp(2rem, 4vw + 0.5rem, 2.875rem); }
      .my-plans-section { padding-bottom: 60px; }
      .insights-section { padding-bottom: 40px; }
    }

    /* ── Trip Card Skeleton shimmer ── */
    @keyframes shimmer {
      0%   { background-position: -800px 0; }
      100% { background-position: 800px 0; }
    }
    .plan-card-img[style*="shimmer"] {
      background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%) !important;
      background-size: 800px 100% !important;
      animation: shimmer 1.5s infinite linear !important;
    }

    /* ── Plan card body ── */
    .plan-card-body {
      padding: 18px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .plan-card-body h3 {
      font-size: 16px;
      font-weight: 700;
      color: #181E4B;
      margin: 4px 0 0;
    }
    .plan-meta {
      font-size: 12px;
      color: #DF6951;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }