 :root {
      --primary: #1a4f8a;
      --accent: #f5a623;
      --dark: #0d2137;
      --light-bg: #f4f7fc;
      --text: #444;
      --white: #fff;
    }

    * { box-sizing: border-box; }

    body {
      font-family: 'Barlow', sans-serif;
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    .navbar {
      background: var(--white);
      box-shadow: 0 2px 12px rgba(0,0,0,.08);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .navbar-brand {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--primary) !important;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .navbar-brand i { color: var(--accent); font-size: 1.4rem; }
    .nav-phone {
      font-weight: 700;
      color: var(--primary);
      font-size: .95rem;
    }
    .nav-phone i { color: var(--accent); margin-right: 5px; }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 520px;
      background: linear-gradient(100deg, var(--dark) 48%, transparent 48%),
                  url('../images/photo-1507003211169-0a1dd7228f2d.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(13,33,55,.92) 48%, rgba(13,33,55,.15));
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-eyebrow {
      font-size: .8rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 10px;
    }
    .hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.8rem, 6vw, 4.2rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.05;
      text-transform: uppercase;
    }
    .hero h1 span { color: var(--accent); }
    .hero p { color: rgba(255,255,255,.72); font-size: 1rem; max-width: 420px; margin: 16px 0 30px; }
    .btn-primary-custom {
      background: var(--accent);
      color: var(--dark);
      font-weight: 700;
      border: none;
      border-radius: 4px;
      padding: 12px 28px;
      font-size: .95rem;
      text-decoration: none;
      display: inline-block;
      transition: transform .2s, box-shadow .2s;
    }
    .btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,166,35,.4); color: var(--dark); }
    .btn-outline-custom {
      background: transparent;
      color: var(--white);
      font-weight: 700;
      border: 2px solid rgba(255,255,255,.5);
      border-radius: 4px;
      padding: 10px 26px;
      font-size: .95rem;
      text-decoration: none;
      display: inline-block;
      transition: all .2s;
      margin-left: 12px;
    }
    .btn-outline-custom:hover { border-color: var(--accent); color: var(--accent); }

    /* ── SECTION LABELS ── */
    .section-eyebrow {
      font-size: .75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }
    .section-eyebrow::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--accent);
      display: inline-block;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.1;
      text-transform: uppercase;
    }

    /* ── ABOUT ── */
    .about-section { padding: 90px 0; }
    .about-img-wrap {
      position: relative;
      border-radius: 8px;
      overflow: visible;
    }
    .about-img-wrap img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
      height: 380px;
    }
    .about-badge {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--accent);
      color: var(--dark);
      width: 120px;
      height: 120px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      box-shadow: 0 8px 30px rgba(245,166,35,.5);
    }
    .about-badge .num { font-size: 2.2rem; line-height: 1; }
    .about-badge .label { font-size: .65rem; text-align: center; line-height: 1.2; }
    .about-features { margin-top: 28px; }
    .about-feature {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid #eee;
    }
    .about-feature i { font-size: 1.8rem; color: var(--primary); width: 44px; }
    .about-feature strong { display: block; color: var(--dark); font-weight: 700; }
    .about-feature span { font-size: .85rem; color: #888; }
    .btn-link-custom {
      color: var(--primary);
      font-weight: 700;
      text-decoration: none;
      font-size: .9rem;
      border-bottom: 2px solid var(--accent);
      padding-bottom: 2px;
      transition: color .2s;
    }
    .btn-link-custom:hover { color: var(--accent); }

    /* ── WHAT WE DO ── */
    .services-section {
      background: var(--primary);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .services-section::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 300px; height: 300px;
      border: 60px solid rgba(255,255,255,.05);
      border-radius: 50%;
    }
    .services-section .section-title { color: var(--white); }
    .services-section .section-eyebrow { color: rgba(255,255,255,.6); }
    .services-section .section-eyebrow::before { background: rgba(255,255,255,.4); }
    .service-desc { color: rgba(255,255,255,.75); font-size: .95rem; }
    .service-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
    }
    .service-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: transform .4s;
    }
    .service-card:hover img { transform: scale(1.06); }
    .service-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,33,55,.85) 40%, transparent);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
    }
    .service-tag {
      font-size: .7rem;
      color: rgba(255,255,255,.6);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .service-name {
      color: var(--white);
      font-weight: 700;
      font-size: 1.05rem;
      margin: 4px 0 0;
    }
    .service-price {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--accent);
      color: var(--dark);
      font-size: .75rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 3px;
    }
    .btn-quotation {
      color: var(--accent);
      font-weight: 700;
      text-decoration: none;
      font-size: .9rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-quotation:hover { color: var(--white); }

    /* ── BEST FEATURE ── */
    .feature-section { padding: 90px 0; background: var(--light-bg); }
    .feature-list { margin-top: 28px; }
    .feature-item {
      display: flex;
      gap: 18px;
      margin-bottom: 28px;
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      background: var(--white);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(0,0,0,.08);
    }
    .feature-icon i { color: var(--primary); font-size: 1.2rem; }
    .feature-item h6 { color: var(--dark); font-weight: 700; margin: 0 0 4px; }
    .feature-item p { font-size: .88rem; color: #888; margin: 0; }
    .feature-images { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .feature-images img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
    }
    .feature-images img:first-child { height: 220px; }
    .feature-images img:last-child { height: 220px; }

    /* ── DELIVERY WAYS ── */
    .delivery-section { padding: 90px 0; }
    .delivery-card {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .delivery-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      filter: brightness(.45);
      transition: filter .4s, transform .4s;
    }
    .delivery-card:hover img { filter: brightness(.6); transform: scale(1.05); }
    .delivery-card-content {
      position: absolute;
      inset: 0;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .delivery-icon {
      width: 52px;
      height: 52px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(6px);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .delivery-icon i { color: var(--white); font-size: 1.4rem; }
    .delivery-title { color: var(--white); font-weight: 700; font-size: 1.2rem; margin: 0; }
    .delivery-arrow {
      width: 36px;
      height: 36px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--dark);
      font-size: .85rem;
      transition: transform .2s;
    }
    .delivery-card:hover .delivery-arrow { transform: translate(3px, -3px); }

    /* ── HOW IT WORKS ── */
    .process-section { padding: 90px 0; background: var(--light-bg); }
    .process-step { text-align: center; padding: 0 10px; }
    .process-img-wrap {
      position: relative;
      width: 130px;
      height: 130px;
      margin: 0 auto 20px;
    }
    .process-img-wrap img {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid var(--white);
      box-shadow: 0 8px 30px rgba(0,0,0,.12);
    }
    .process-num {
      position: absolute;
      top: 0;
      right: 0;
      width: 34px;
      height: 34px;
      background: var(--accent);
      color: var(--dark);
      border-radius: 50%;
      font-weight: 800;
      font-size: .85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 3px solid var(--white);
    }
    .process-connector {
      position: absolute;
      top: 50%;
      right: -50%;
      width: 100%;
      height: 2px;
      background: linear-gradient(to right, var(--accent) 50%, transparent 50%);
      background-size: 8px 2px;
    }
    .process-step h6 { font-weight: 700; color: var(--dark); font-size: .95rem; margin-bottom: 6px; }
    .process-step p { font-size: .82rem; color: #888; }

    /* ── CTA ── */
    .cta-section {
      background: var(--light-bg);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-person {
      position: absolute;
      bottom: 0;
      left: 50px;
      height: 95%;
      object-fit: contain;
    }
    .cta-box {
      background: var(--white);
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 20px 60px rgba(0,0,0,.1);
    }
    .cta-box .section-title { font-size: 1.9rem; }
    .form-control-custom {
      background: var(--light-bg);
      border: 1px solid #e0e6ef;
      border-radius: 6px;
      padding: 12px 16px;
      font-size: .9rem;
      width: 100%;
      outline: none;
      transition: border .2s;
      margin-bottom: 14px;
      font-family: 'Barlow', sans-serif;
    }
    .form-control-custom:focus { border-color: var(--primary); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .btn-submit {
      background: var(--primary);
      color: var(--white);
      font-weight: 700;
      border: none;
      border-radius: 6px;
      padding: 14px 36px;
      font-size: .95rem;
      cursor: pointer;
      width: 100%;
      transition: background .2s, transform .2s;
      font-family: 'Barlow', sans-serif;
    }
    .btn-submit:hover { background: var(--accent); color: var(--dark); transform: translateY(-2px); }
    .cta-yellow-block {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 200px;
      height: 140px;
      background: var(--accent);
      border-top-left-radius: 80px;
      opacity: .35;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,.6);
      padding: 32px 0;
      text-align: center;
      font-size: .88rem;
    }
    footer strong { color: var(--white); }

    /* ── UTILITIES ── */
    section { scroll-margin-top: 70px; }
    @media (max-width: 767px) {
      .hero { min-height: 420px; background: linear-gradient(180deg, var(--dark) 100%, transparent), url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=800') center/cover; }
      .hero::after { background: rgba(13,33,55,.82); }
      .about-badge { width: 90px; height: 90px; left: 0; bottom: -10px; }
      .cta-person { display: none; }
      .form-row { grid-template-columns: 1fr; }
    }