/* Reuse the CSS variables and base styles from the main page */
    :root{
      --primary:#0b0f17;
      --primary-2:#111827;
      --accent:#d61f26;
      --accent-dark:#b3151b;
      --bg:#f6f7f9;
      --surface:#ffffff;
      --text:#0f172a;
      --muted:#6b7280;
      --border:#e5e7eb;

      --radius:18px;
      --radius-sm:12px;
      --shadow: 0 14px 40px rgba(15,23,42,.10);
      --shadow-sm: 0 10px 24px rgba(15,23,42,.08);
      --shadow-xs: 0 6px 16px rgba(15,23,42,.08);

      --container-max: 1320px;
    }

    /* ----------------------------
       GLOBAL BASE
    ---------------------------- */
    html, body{ height:100%; }
    body{
      font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      background: #fff;
    }
    .container-xl{ max-width: var(--container-max); }
    h1,h2,h3,h4,h5,h6{
      font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      letter-spacing: -0.01em;
    }
    .text-muted{ color: var(--muted) !important; }
    .bg-light{ background: var(--bg) !important; }
    .rounded-4{ border-radius: var(--radius) !important; }
    .rounded-3{ border-radius: var(--radius-sm) !important; }

    /* smoothness */
    a, button, .card{
      transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
    }

    /* buttons */
    .btn-danger{
      background: var(--accent) !important;
      border-color: var(--accent) !important;
    }
    .btn-danger:hover{
      background: var(--accent-dark) !important;
      border-color: var(--accent-dark) !important;
      transform: translateY(-1px);
      box-shadow: var(--shadow-xs);
    }
    .btn-outline-light:hover,
    .btn-outline-dark:hover{
      transform: translateY(-1px);
      box-shadow: var(--shadow-xs);
    }
    .btn-lg{ border-radius: 999px; padding: .9rem 1.25rem; }
    .btn-sm{ border-radius: 999px; }

    /* badges */
    .badge.text-bg-danger{ background: var(--accent) !important; }
    .text-danger{ color: var(--accent) !important; }
    .bg-danger{ background: var(--accent) !important; }

    /* cards */
    .card{
      border-radius: var(--radius);
    }
    .shadow-sm{
      box-shadow: var(--shadow-sm) !important;
    }

    /* helper for object-fit */
    .object-fit-cover{ object-fit: cover; }

    /* ----------------------------
       HEADER / NAV (same as index)
    ---------------------------- */
    .topbar{
      background: #0b0f17;
      color: rgba(255,255,255,.85);
      font-size: .9rem;
    }
    .topbar a{
      color: rgba(255,255,255,.85);
      text-decoration: none;
    }
    .topbar a:hover{ color: #fff; }
    .topbar .divider{
      width: 1px;
      height: 18px;
      background: rgba(255,255,255,.18);
      margin: 0 .75rem;
    }
    .topbar .socials a{
      width: 30px;
      height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
    }
    .topbar .socials a:hover{
      background: rgba(255,255,255,.18);
    }
    header{ position: sticky; top:0; z-index: 1020; }
    header .navbar{
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(10px);
    }
    .navbar-brand span:last-child{
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    .navbar-brand .logo-full{
      width: 180px;
      height: 48px;
      object-fit: contain;
    }
    .navbar-nav .nav-link{
      color: #1f2937 !important;
      font-weight: 700;
      position: relative;
      padding: .55rem .9rem !important;
    }
    .navbar-nav .nav-link::after{
      content:"";
      position:absolute;
      left:.9rem; right:.9rem; bottom:.35rem;
      height:2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s ease;
      opacity:.9;
    }
    .navbar-nav .nav-link:hover::after{ transform: scaleX(1); }

    /* logo pill */
    .navbar-brand .bg-danger{
      box-shadow: 0 10px 24px rgba(214,31,38,.25);
    }

    /* ----------------------------
       PAGE HERO (Services specific)
    ---------------------------- */
    #page-hero{
      background: linear-gradient(120deg, rgba(11,15,23,.85), rgba(11,15,23,.95)), 
                  url('../images/vecteezy_containers-and-cranes-at-the-docks-3d-rendering_22653784.webp');
      background-size: cover;
      background-position: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    #page-hero::before{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(900px 500px at 15% 35%, rgba(214,31,38,.22), transparent 60%),
        radial-gradient(700px 520px at 70% 35%, rgba(255,255,255,.08), transparent 65%);
      pointer-events:none;
    }
    #page-hero h1{
      position: relative;
      padding-left: 18px;
    }
    #page-hero h1::before{
      content:"";
      position:absolute;
      left:0; top:.22em;
      width: 6px; height: 1.35em;
      background: var(--accent);
      border-radius: 999px;
      box-shadow: 0 10px 24px rgba(214,31,38,.35);
    }
    #page-hero .breadcrumb-item a{
      color: rgba(255,255,255,.75);
      text-decoration: none;
    }
    #page-hero .breadcrumb-item.active{
      color: var(--accent);
    }
    #page-hero .breadcrumb-item + .breadcrumb-item::before{
      color: rgba(255,255,255,.4);
    }

    /* ----------------------------
       SERVICES MAIN CONTENT
    ---------------------------- */
    /* Service Categories */
    .service-category-card{
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }
    .service-category-card:hover{
      border-color: var(--accent);
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }
    .service-category-card.active{
      border-color: var(--accent);
      background: rgba(214,31,38,0.03);
    }
    .service-icon{
      width: 70px;
      height: 70px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      box-shadow: 0 10px 25px rgba(214,31,38,0.2);
    }

    /* Service Details */
    .service-detail-section{
      scroll-margin-top: 100px;
    }
    .service-feature-list li{
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .service-feature-list li:last-child{
      border-bottom: none;
    }
    .clearance-process{
      position: relative;
    }
    .steps-row{
      position: relative;
    }
    @media (min-width: 992px){
      .steps-row::before{
        content: "";
        position: absolute;
        left: 6%;
        right: 6%;
        top: 48px;
        height: 2px;
        background-image: linear-gradient(to right, rgba(214,31,38,.6) 40%, rgba(214,31,38,0) 0%);
        background-position: top;
        background-size: 16px 2px;
        background-repeat: repeat-x;
        opacity: .8;
        pointer-events: none;
      }
    }
    .step-card{
      background: #fff;
      border: 1px solid var(--border);
      border-radius: calc(var(--radius) + 8px);
      padding: 2.25rem 2rem;
      box-shadow: 0 20px 50px rgba(15,23,42,.08);
    }
    .step-icon{
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: var(--accent);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin: 0 auto 1.25rem;
      box-shadow: 0 18px 40px rgba(214,31,38,.3);
    }

    /* Service Comparison Table */
    .comparison-table th{
      background: rgba(214,31,38,0.08);
      border-bottom: 2px solid var(--accent);
    }
    .comparison-table .fa-check{
      color: var(--accent);
    }
    .comparison-table .fa-times{
      color: var(--muted);
    }

    /* FAQ Section */
    .faq-item{
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      overflow: hidden;
      margin-bottom: 1rem;
    }
    .faq-button{
      width: 100%;
      padding: 1.25rem 1.5rem;
      text-align: left;
      background: white;
      border: none;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
    }
    .faq-button:hover,
    .faq-button[aria-expanded="true"]{
      background: rgba(214,31,38,0.05);
      color: var(--accent);
    }
    .faq-button[aria-expanded="true"] .faq-icon{
      transform: rotate(45deg);
    }
    .faq-content{
      padding: 0 1.5rem 1.5rem;
      border-top: 1px solid var(--border);
    }

    /* ----------------------------
       CTA SECTION
    ---------------------------- */
    .cta-section{
      background: transparent;
    }
    .cta-strip{
      background: linear-gradient(90deg, rgba(214,31,38,.98), rgba(214,31,38,.92));
      border-radius: calc(var(--radius) + 12px);
      padding: 2.2rem 2.4rem;
      color: #fff;
      box-shadow: 0 18px 40px rgba(214,31,38,.25);
      display: grid;
      grid-template-columns: auto auto 1fr;
      gap: 1.5rem;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .cta-strip::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(180px 120px at 15% 50%, rgba(255,255,255,.12), transparent 65%),
        radial-gradient(240px 160px at 80% 10%, rgba(255,255,255,.08), transparent 60%);
      pointer-events:none;
    }
    .cta-strip > *{
      position: relative;
      z-index: 1;
    }
    .cta-strip-icon{
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.18);
      font-size: 1.4rem;
    }
    .cta-strip-title{
      min-width: 160px;
    }
    .cta-strip-title .small{
      opacity: .85;
      letter-spacing: .08em;
    }
    .cta-strip-actions{
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      justify-content: flex-end;
    }
    .cta-strip-actions .btn{
      border-radius: 12px;
      padding: .9rem 1.4rem;
      box-shadow: 0 16px 30px rgba(0,0,0,.2);
      white-space: nowrap;
    }
    .cta-strip-note{
      grid-column: 1 / -1;
      font-size: .9rem;
      opacity: .85;
      margin-top: .4rem;
    }

    /* ----------------------------
       FOOTER (same as index)
    ---------------------------- */
    footer{
      background: #0b0f17 !important;
    }
    .footer-logo{
      display: inline-flex;
      align-items: center;
      gap: .65rem;
    }
    .footer-logo .logo-full{
      background: #ffffff;
      padding: .35rem .5rem;
      border-radius: 12px;
      box-shadow: 0 12px 26px rgba(0,0,0,.25);
    }
    footer a.link-light{
      color: rgba(255,255,255,.80) !important;
    }
    footer a.link-light:hover{
      color: #fff !important;
      transform: translateY(-1px);
    }
    footer .btn-outline-light{
      border-radius: 999px;
    }
    footer hr{ opacity:.15; }
    footer .bg-danger{
      box-shadow: 0 16px 30px rgba(214,31,38,.18);
    }

    /* ----------------------------
       FLOATING ACTIONS
    ---------------------------- */
    .floating-actions{
      position: fixed;
      right: 18px;
      bottom: 18px;
      display: grid;
      gap: 10px;
      z-index: 1050;
    }
    .floating-actions .fab{
      width: 52px;
      height: 52px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 14px 28px rgba(0,0,0,.28);
      border: 1px solid rgba(255,255,255,.15);
    }
    .floating-actions .fab--whatsapp{ background: #25d366; }
    .floating-actions .fab--call{ background: #0f172a; }
    .floating-actions .fab--top{ background: var(--accent); }
    .floating-actions .fab:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(0,0,0,.32);
    }

    /* ----------------------------
       RESPONSIVE
    ---------------------------- */
    @media (max-width: 991.98px){
      .cta-strip{
        grid-template-columns: 1fr;
        text-align: left;
      }
      .cta-strip-actions{
        justify-content: flex-start;
      }
      .service-icon{
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
      }
    }

    @media (max-width: 767.98px){
      .step-card{
        padding: 1.8rem 1.4rem;
      }
      .step-icon{
        width: 72px;
        height: 72px;
      }
    }
