
    :root {
      --primary: #ff9800;
      --primary-dark: #e68900;
      --dark: #0c2d48;
      --dark-light: #0f3a5e;
    }

    body {
      font-family: 'Poppins', sans-serif;
      padding-top: 90px;
      margin: 0;
      background: #f8f9fa;
    }

    @media (max-width: 991px) {
      body { padding-top: 75px; }
    }

    .navbar {
      background: var(--dark) !important;
      box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    }

    .navbar-brand img {
      height: 62px;
      border-radius: 10px;
    }

    .nav-link {
      color: white !important;
      font-weight: 600;
      margin-left: 1rem;
    }

    .nav-link:hover { color: var(--primary) !important; }

    .dropdown-menu {
      background: var(--dark-light);
      border: none;
      border-radius: 10px;
    }

    .dropdown-item { color: white; }
    .dropdown-item:hover { background: var(--dark); color: var(--primary); }

    .btn-contact {
      background: var(--primary);
      border: none;
      padding: 0.55rem 1.6rem;
      border-radius: 50px;
      font-weight: 600;
    }

    .btn-contact:hover { background: var(--primary-dark); }

    @media (max-width: 991px) {
      .navbar-collapse {
        background: var(--dark);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1.5rem;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
        border-radius: 0 0 12px 12px;
      }
      .navbar-nav { text-align: center; }
      .nav-link { padding: 0.9rem 0; margin: 0; }
      .btn-contact { width: 80%; margin: 1rem auto 0; display: block; }
    }

    .hero-section {
      background: linear-gradient(135deg, #0d2b45, #123e63);
      color: white;
      padding: 7rem 1rem 5rem;
    }

    .hero-heading {
      font-size: clamp(2.5rem, 7vw, 4rem);
      font-weight: 800;
      line-height: 1.15;
    }

    .highlight { color: var(--primary); }

    .hero-description {
      font-size: clamp(1.1rem, 3vw, 1.25rem);
      max-width: 680px;
      line-height: 1.7;
      opacity: 0.92;
    }

    #service-title, #service-description {
      transition: opacity 1.4s ease;
    }

    .primary-btn, .premium-btn {
      background: var(--primary);
      color: white;
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }

    .primary-btn:hover, .premium-btn:hover { background: var(--primary-dark); }

    .secondary-btn {
      border: 2px solid white;
      color: white;
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
    }

    .secondary-btn:hover {
      background: white;
      color: var(--dark);
    }

    .form-container {
      background: white;
      padding: 2.4rem;
      border-radius: 16px;
      box-shadow: 0 16px 45px rgba(0,0,0,0.2);
    }

    .submit-btn, .book-btn {
      background: #25D366;
      border: none;
      padding: 0.95rem;
      font-size: 1.1rem;
      border-radius: 50px;
      font-weight: 600;
      color: white;
      transition: 0.3s;
    }

    .submit-btn:hover, .book-btn:hover { background: #1ebe5d; }

    section { padding: 6.5rem 1rem; }

    .premium-section, .process-section, .testimonials-section { background: #f8f9fa; }
    .trust-section, .faq-section { background: linear-gradient(135deg, var(--dark), var(--dark-light)); color: white; }

    .trust-grid, .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.8rem;
    }

    .trust-card, .process-card {
      background: rgba(255,255,255,0.07);
      padding: 2rem 1.5rem;
      border-radius: 16px;
      text-align: center;
      transition: all 0.35s;
      border: 1px solid rgba(255,255,255,0.12);
    }

    .trust-card:hover, .process-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .process-number {
      width: 60px;
      height: 60px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin: 0 auto 1.2rem;
    }

    /* Testimonials */
    .testimonials-section h2 { text-align: center; margin-bottom: 3rem; color: #0b2a4a; }
    .testimonial-card {
      background: white;
      padding: 1.8rem;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      text-align: center;
      min-height: 260px;
    }

    .stars { color: #ffc107; font-size: 1.4rem; margin-bottom: 1rem; }

    /* FAQ */
    .faq-section .accordion-button {
      background: rgba(255,255,255,0.1);
      color: white;
      font-weight: 600;
    }

    .faq-section .accordion-button:not(.collapsed) {
      background: var(--primary);
      color: white;
    }

    .faq-section .accordion-body { background: rgba(0,0,0,0.15); }

    /* Premium section */
    .premium-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .premium-image img {
      width: 100%;
      border-radius: 18px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .feature-box {
      background: #0f3a5e;
      padding: 1.8rem;
      border-radius: 14px;
      color: white;
      transition: 0.3s;
    }

    .feature-box:hover {
      transform: translateY(-8px);
    }

    /* Footer - Improved */
    .footer-section {
      background: var(--dark);
      color: #d0d8e0;
      padding: 5.5rem 0 2.5rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2.5rem;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .footer-col h4 {
      color: var(--primary);
      font-size: 1.35rem;
      margin-bottom: 1.4rem;
      font-weight: 700;
    }

    .footer-logo img {
      height: 70px;
      border-radius: 10px;
      margin-bottom: 1.2rem;
    }

    .social-icons a {
      width: 44px;
      height: 44px;
      background: rgba(255,255,255,0.13);
      border-radius: 50%;
      color: white;
      font-size: 1.4rem;
      transition: all 0.35s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .social-icons a:hover {
      background: var(--primary);
      transform: translateY(-5px) scale(1.08);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.12);
      margin-top: 3rem;
      padding-top: 1.8rem;
      text-align: center;
      font-size: 0.95rem;
      opacity: 0.85;
    }

    .footer-bottom a { color: var(--primary); }

    @media (max-width: 576px) {
      section { padding: 4.5rem 1rem; }
      .hero-heading { font-size: 2.3rem; }
      .footer-grid { gap: 2rem; }
    }