:root {
      --primary-orange: #f59e0b;
      --dark-navy: #0f172a;
      --deep-teal: #005f73;
      --light-bg: #f8fafc;
      --text-main: #1f2937;
      --text-muted: #6b7280;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #ffffff;
      color: var(--text-main);
      overflow-x: hidden;
      width: 100%;
    }

    a { text-decoration: none; color: inherit; }

    /* SVG Icon Helpers */
    .icon {
      width: 16px;
      height: 16px;
      fill: currentColor;
      display: inline-block;
      vertical-align: middle;
    }

    /* Top Bar */
    .top-bar {
      background-color: var(--primary-orange);
      color: #000;
      padding: 8px 6%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 25px;
      font-size: 13px;
      font-weight: 600;
    }
    .top-bar a { color: #000; display: flex; align-items: center; gap: 6px; }

    /* Navbar */
    .navbar {
      background-color: var(--dark-navy);
      padding: 12px 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      contain: layout paint;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo-img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      border: 2px solid var(--primary-orange);
      object-fit: cover;
      background: #fff;
    }
    .brand-name {
      color: #ffffff;
      font-size: 20px;
      font-weight: 700;
    }
    .brand-name span { color: var(--primary-orange); }
    
    .nav-menu {
      display: flex;
      gap: 25px;
      list-style: none;
    }
    .nav-menu a {
      color: #ffffff;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.3s;
    }
    .nav-menu a:hover { color: var(--primary-orange); }

    .menu-toggle {
      display: none;
      color: #ffffff;
      font-size: 24px;
      cursor: pointer;
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      padding: 80px 6% 90px;
      text-align: center;
      color: white;
      overflow: hidden;
      min-height: 520px;
      contain: layout style;
    }
    .hero-bg-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(0, 95, 115, 0.9));
      z-index: -1;
    }
    .hero-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .hero-badge {
      background: rgba(245, 158, 11, 0.2);
      color: var(--primary-orange);
      border: 1px solid var(--primary-orange);
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 13px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .hero-section h1 { 
      font-size: 40px; 
      font-weight: 700; 
      line-height: 1.2;
      margin-bottom: 15px; 
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
      min-height: 48px;
    }
    .hero-section p { 
      font-size: 17px; 
      color: #e2e8f0; 
      margin-bottom: 35px; 
      min-height: 26px;
    }
    
    .search-box {
      background: #ffffff;
      padding: 22px;
      border-radius: 14px;
      display: flex;
      gap: 12px;
      max-width: 950px;
      margin: 0 auto;
      flex-wrap: wrap;
      box-shadow: 0 15px 35px rgba(0,0,0,0.3);
      min-height: 94px;
      align-items: center;
    }
    .search-box input, .search-box select {
      flex: 1;
      min-width: 180px;
      height: 50px;
      padding: 0 14px;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      outline: none;
      font-size: 14px;
      color: var(--text-main);
      background-color: #fff;
    }
    .search-box button {
      background: var(--primary-orange);
      color: #000;
      font-weight: 700;
      border: none;
      height: 50px;
      padding: 0 30px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s;
      white-space: nowrap;
    }
    .search-box button:hover { background: #e08e0b; }

    /* About Section */
    .about-section {
      padding: 70px 6%;
      background: #ffffff;
      display: flex;
      gap: 50px;
      align-items: center;
      flex-wrap: wrap;
    }
    .about-image {
      flex: 1;
      min-width: 300px;
    }
    .about-image img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.12);
      object-fit: cover;
    }
    .about-content {
      flex: 1.2;
      min-width: 300px;
    }
    .about-content .tag {
      color: var(--primary-orange);
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
      display: block;
    }
    .about-content h2 {
      font-size: 32px;
      color: var(--dark-navy);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 16px;
    }
    .about-content p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .about-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    .about-feat-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 14px;
      color: var(--dark-navy);
    }
    .about-feat-item .icon-box {
      background: #e0f2fe;
      padding: 6px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--deep-teal);
    }

    /* Trusted Section */
    .trusted-section {
      background-color: var(--deep-teal);
      padding: 60px 4%;
      text-align: center;
      width: 100%;
    }
    .subtitle-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .subtitle-line {
      width: 35px;
      height: 1px;
      background-color: rgba(255, 255, 255, 0.6);
    }
    .subtitle-text {
      color: #ffffff;
      font-size: 14px;
      font-weight: 500;
    }
    .trusted-section h2 {
      color: #ffffff;
      font-size: 30px;
      font-weight: 700;
      margin: 0 0 60px 0;
    }
    .cards-container {
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 25px;
      width: 100%;
      flex-wrap: wrap;
    }
    .feature-box {
      background: #ffffff;
      border-radius: 12px;
      flex: 1;
      min-width: 180px;
      max-width: 240px;
      padding: 50px 15px 30px 15px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .icon-circle {
      position: absolute;
      top: -40px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: #e0f2fe;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 4px solid var(--deep-teal);
    }
    .icon-circle img {
      width: 46px;
      height: 46px;
      object-fit: contain;
    }
    .box-title {
      color: #111827;
      font-size: 15px;
      font-weight: 600;
      line-height: 1.35;
      margin: 0;
    }

    /* Fleet Section */
    .sec-header { text-align: center; margin-bottom: 40px; }
    .sec-header h2 { font-size: 30px; color: var(--dark-navy); margin-bottom: 8px; font-weight: 700; }
    .sec-header p { color: var(--text-muted); font-size: 15px; }

    .fleet-section { padding: 60px 6%; background: var(--light-bg); }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }
    .v-card {
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0,0,0,0.05);
      background: #fff;
      transition: transform 0.3s;
    }
    .v-card:hover { transform: translateY(-5px); }
    .v-card img { width: 100%; height: 210px; object-fit: cover; }
    .v-card-body { padding: 22px; }
    .v-card-title { font-size: 20px; font-weight: 700; color: var(--dark-navy); margin-bottom: 6px; }
    .v-rating { color: var(--primary-orange); font-size: 13px; margin-bottom: 15px; }
    
    .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 15px; }
    .tag-item { 
      background: #f1f5f9; 
      color: #334155; 
      font-size: 12px; 
      padding: 5px 10px; 
      border-radius: 6px; 
      font-weight: 600; 
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .tag-item svg { fill: var(--deep-teal); }

    .v-specs {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      background: #f8fafc;
      padding: 12px;
      border-radius: 8px;
      margin-bottom: 18px;
      border: 1px dashed #cbd5e1;
    }
    .spec-box { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
    .spec-box strong { color: var(--dark-navy); }

    .v-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f1f5f9; padding-top: 15px; }
    .price-tag { font-size: 20px; font-weight: 700; color: var(--deep-teal); }
    
    .btn-animated {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: #ffffff;
      padding: 10px 22px;
      border-radius: 30px;
      font-size: 13px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
      transition: transform 0.3s ease, background 0.3s ease;
      will-change: transform;
    }
    .btn-animated svg { fill: #ffffff; transition: transform 0.3s ease; }
    .btn-animated:hover {
      background: linear-gradient(135deg, #005f73, #0f172a);
      transform: scale(1.05);
    }
    .btn-animated:hover svg { transform: translateX(4px); }

    /* Locations Section */
    .locations-section { padding: 60px 6%; text-align: center; background: #ffffff; }
    .loc-btn-container {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      margin-top: 30px;
    }
    .loc-btn {
      background: #ffffff;
      border: 2px solid var(--deep-teal);
      color: var(--deep-teal);
      padding: 12px 28px;
      border-radius: 30px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .loc-btn svg { fill: #dc2626; transition: fill 0.3s; }
    .loc-btn:hover {
      background: var(--deep-teal);
      color: #ffffff;
    }
    .loc-btn:hover svg { fill: var(--primary-orange); }

    /* Gallery Section */
    .gallery-section { padding: 60px 6%; background: var(--light-bg); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .gallery-item {
      height: 220px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .gallery-item:hover img { transform: scale(1.08); }

    /* FAQ Section */
    .faq-section { padding: 60px 6%; background: #ffffff; }
    .faq-container { width: 100%; max-width: 1000px; margin: 0 auto; }
    .faq-item {
      background: #ffffff;
      border-radius: 10px;
      margin-bottom: 14px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      overflow: hidden;
      border: 1px solid #e2e8f0;
    }
    .faq-question {
      width: 100%;
      padding: 18px 24px;
      font-size: 16px;
      font-weight: 600;
      color: var(--dark-navy);
      background: #ffffff;
      border: none;
      outline: none;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .faq-question.active {
      background: #e0f2fe;
      color: var(--deep-teal);
    }
    .faq-question svg { transition: transform 0.3s ease; fill: currentColor; }
    .faq-question.active svg { transform: rotate(180deg); }
    
    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.3s ease-out;
      background: #f1f5f9;
    }
    .faq-item.open .faq-answer {
      grid-template-rows: 1fr;
    }
    .faq-answer-content {
      overflow: hidden;
      font-size: 14px;
      color: #475569;
      line-height: 1.6;
      padding: 0 24px;
      transition: padding 0.3s ease-out;
    }
    .faq-item.open .faq-answer-content {
      padding: 18px 24px;
    }

    /* Fixed Contact Tabs */
    .right-fixed-tabs {
      position: fixed;
      right: 0;
      top: 40%;
      transform: translateY(-50%);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .tab-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 18px;
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      border-radius: 25px 0 0 25px;
      box-shadow: -2px 4px 10px rgba(0,0,0,0.2);
      transition: transform 0.3s;
      text-decoration: none;
      min-width: 130px;
      height: 44px;
    }
    .tab-btn svg { fill: currentColor; }
    .tab-btn:hover { transform: translateX(-6px); }
    .tab-call { background: #0284c7; }
    .tab-whatsapp { background: #25d366; }
    .tab-book { background: var(--primary-orange); color: #000; }

    /* Footer */
    footer { background: #090d16; color: #9ca3af; padding: 60px 6% 20px; font-size: 14px; }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-col h3 { color: #fff; font-size: 18px; margin-bottom: 20px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a:hover { color: var(--primary-orange); }
    .social-links svg { width: 22px; height: 22px; fill: #3b82f6; margin-right: 14px; cursor: pointer; }
    .copyright {
      text-align: center;
      border-top: 1px solid #1e293b;
      padding-top: 20px;
      color: #64748b;
      font-size: 13px;
    }

    /* Responsive Design */
    @media (max-width: 900px) {
      .top-bar { display: none; }
      .menu-toggle { display: block; }
      .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 280px;
        background: var(--dark-navy);
        flex-direction: column;
        padding: 60px 30px;
        gap: 20px;
        box-shadow: 4px 0 15px rgba(0,0,0,0.3);
        transition: left 0.4s ease-in-out;
        z-index: 1001;
      }
      .nav-menu.active { left: 0; }
      .hero-section h1 { font-size: 28px; }
      .right-fixed-tabs { top: auto; bottom: 10px; right: 0; left: 0; transform: none; flex-direction: row; justify-content: center; background: rgba(0,0,0,0.8); padding: 6px; }
      .tab-btn { border-radius: 6px; padding: 8px 12px; font-size: 12px; min-width: auto; height: auto; }
    }

/* 404 Error Page */
.error-404-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 6%;
  background: var(--light-bg);
}
.error-404-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 10px;
}
.error-404-section h1 {
  font-size: 28px;
  color: var(--dark-navy);
  margin-bottom: 12px;
}
.error-404-section p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.error-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.error-404-actions .btn-animated {
  background: var(--primary-orange);
  color: #000;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.error-404-actions .btn-outline {
  background: transparent;
  color: var(--deep-teal);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--deep-teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.error-404-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
}
.error-404-links a { color: var(--deep-teal); font-weight: 600; }
.error-404-links a:hover { color: var(--primary-orange); }
@media (max-width: 600px) {
  .error-404-code { font-size: 80px; }
  .error-404-section h1 { font-size: 22px; }
}
