
  .top-phone-bar {
    background: var(--primary-yellow);
    color: var(--black);
    padding: 8px 0;
    text-align: center;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .top-phone-bar a {
    color: var(--black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .top-phone-bar a:hover {
    color: var(--white);
  }

  /* Floating WhatsApp */
  .floating-whatsapp {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
  }

  .floating-whatsapp:hover {
    background: #20b358;
    color: white;
    transform: scale(1.1);
  }

  @keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  }

  .floating-enquire {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, var(--black) 0%, #333 100%);
    color: var(--white);
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: bounce-enquire 3s infinite;
    cursor: pointer;
  }

  .floating-enquire:hover {
    background:  var(--white);
    color:var(--black);
      box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transform: translateY(-2px);
  }

  @keyframes bounce-enquire {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
  }

  /* SEO Content Styling */
  .seo-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    margin-top: 1rem;
    border-bottom: 3px solid var(--primary-yellow);
  }

  .seo-hero-section h1 {
    color: var(--black);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
  }

  .seo-hero-section .lead {
    font-size: 1.2rem;
    color: #495057;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
  }

  .feature-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
  }

  .feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
  }

  .feature-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Content Container Styling */
  .content-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  /* Package Tabs */
  .package-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
  }

  .package-tab {
    flex: 1;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .package-tab:hover {
    background: #e9ecef;
    color: var(--black);
  }

  .package-tab.active {
    background: var(--primary-yellow);
    color: var(--black);
  }

  .package-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-yellow);
  }

  /* Package Content */
  .package-content {
    padding: 2rem;
  }

  .package-header {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 1rem;
  }

  /* Packages Grid */
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .package-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-yellow);
  }

  .package-card-header {
    background:linear-gradient(135deg, var(--black) 0%, #333 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
  }

  .vehicle-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .vehicle-type {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
  }

  .package-card-body {
    padding: 2rem;
  }

  .price-section {
    text-align: center;
    margin-bottom: 2rem;
  }

  .total-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
  }

  .price-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
  }

  .price-item {
    text-align: center;
    flex: 1;
  }

  .price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }

  .price-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
  }

  .book-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--black) 0%, #333 100%);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .book-button:hover {
    background: linear-gradient(135deg, #f0c040 0%, var(--primary-yellow) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 191, 0, 0.4);
  }

  /* Notes Container */
  .notes-container {
    background: #f8f9fa;
    margin: 2rem;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-yellow);
  }

  .notes-header {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .notes-header::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-yellow);
  }

  .notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .notes-list li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 2rem;
  }

  .notes-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
  }

  /* SEO Bottom Section */
  .seo-bottom-section {
    background: #f8f9fa;
    padding: 3rem 0;
    margin-top: 2rem;
  }

  .seo-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .seo-content h2 {
    color: var(--black);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .seo-content p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
  }

  .keyword-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
  }

  .keyword-badge {
    background: var(--primary-yellow);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .keyword-badge:hover {
    background: var(--black);
    color: var(--primary-yellow);
    transform: translateY(-2px);
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .top-phone-bar {
      font-size: 14px;
      padding: 6px 0;
    }

    .floating-whatsapp {
      width: 50px;
      height: 50px;
      font-size: 20px;
      left: 15px;
      bottom: 15px;
    }

    .floating-enquire {
      right: 15px;
      bottom: 15px;
      padding: 10px 16px;
      font-size: 12px;
    }

    .seo-hero-section h1 {
      font-size: 2rem;
    }

    .seo-hero-section .lead {
      font-size: 1rem;
    }

    .features-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .content-container {
      margin: 1rem;
      border-radius: 8px;
    }

    .package-tab {
      padding: 0.8rem 1rem;
      font-size: 1rem;
    }

    .packages-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .package-header {
      font-size: 1.4rem;
    }

    .total-amount {
      font-size: 2rem;
    }

    .price-details {
      flex-direction: column;
      gap: 1rem;
    }

    .notes-container {
      margin: 1rem;
      padding: 1.5rem;
    }

    .seo-content h2 {
      font-size: 1.5rem;
    }

    .keyword-badges {
      margin: 0 1rem;
    }
  }
