 
    :root {
      --orange: #4a0065;
      --orange-light: #4a0065;
      --green-dark: #5100b0;
      --green-mid: #5100b0;
      --text-dark: #5100b0;
      --text-muted: #555;
      --bg-light: #f8f9fa;
    }

    * { box-sizing: border-box; }

    body {
      font-family:'Manrope',sans-serif;
      margin: 0;
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5,h6,
    .hero-title,
    .section-title{
        font-family:'Outfit',sans-serif;
    }

    /* ── NAVBAR ── */
    .navbar{
        background:rgba(255,255,255,.85);
        backdrop-filter:blur(20px);
        -webkit-backdrop-filter:blur(20px);

        border-bottom:1px solid rgba(255,255,255,.4);

        box-shadow:
        0 10px 40px rgba(0,0,0,.06);

        padding:16px 0;

        transition:.4s;
    }
    .navbar {
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,.08);
      padding: 12px 0;
    }

    .navbar-brand-wrap {
          display: flex;
          align-items: center;
          gap: 10px;
          text-decoration: none;
        }

        .logo-icon{
        width:54px;
        height:54px;

        border-radius:18px;

        background:linear-gradient(
        135deg,
        #4a0065,
        #5100b0);

        box-shadow:
        0 15px 35px rgba(74,0,101,.25);

        font-size:22px;
    }

    .logo-icon {
      width: 44px;
      height: 44px;
      background: var(--green-dark);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 800;
      font-size: 18px;
      letter-spacing: -1px;
    }

    .logo-text {
      line-height: 1.1;
    }
    .logo-text .line1 { font-weight: 700; font-size: 15px; color: var(--text-dark); }
    .logo-text .line2 { font-size: 11px; color: var(--text-muted); font-weight: 500; }

    .nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-dark) !important;
      padding: 6px 14px !important;
      transition: color .2s;
    }

    .nav-link:hover, .nav-link.active { color: var(--orange) !important; }
    .nav-link.active { border-bottom: 2px solid var(--orange); }

    .btn-partner {
      background: var(--orange);
      color: #fff !important;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      padding: 8px 20px;
      border: none;
      transition: background .2s;
    }
    .btn-partner:hover { background: #e65100; }

    /* ── HERO ── */
    .hero{
        position:relative;

        background:
        radial-gradient(circle at top left,
        rgba(74,0,101,.08),
        transparent 40%),

        radial-gradient(circle at bottom right,
        rgba(81,0,176,.08),
        transparent 40%),

        #ffffff;

        padding:100px 0 40px;
    }

    .hero-title{
        font-size:clamp(46px,6vw,78px);
        font-weight:800;
        letter-spacing:-2px;
        line-height:1.05;
    }

    .hero img{
        filter:
        drop-shadow(0 40px 80px rgba(0,0,0,.15));

        transition:.5s;
    }

    .hero img:hover{
        transform:translateY(-10px);
    }

    .hero {
      background: linear-gradient(135deg, #fff 55%, #f0faf4 100%);
      min-height: 500px;
      position: relative;
      overflow: hidden;
      padding: 40px 0 0;
    }

    .hero-tag {
      color: var(--orange);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .hero-title {
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .hero-title span {
      color: var(--orange);
    }

    .hero-sub {
      font-size: 14.5px;
      color: var(--text-muted);
      max-width: 380px;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .btn-order {
      background: var(--orange);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 13px 28px;
      font-size: 15px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background .2s, transform .15s;
      text-decoration: none;
    }
    .btn-order:hover { background: #e65100; color: #fff; transform: translateY(-2px); }

    .btn-download {
      background: #fff;
      color: var(--text-dark);
      border: 2px solid #ddd;
      border-radius: 8px;
      padding: 11px 24px;
      font-size: 15px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: border-color .2s, transform .15s;
      text-decoration: none;
    }
    .btn-download:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

    /* hero image */
    .hero-img-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }

    .hero-delivery-guy {
      width: 340px;
      max-width: 100%;
      object-fit: cover;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 8px 24px rgba(0,0,0,.12));
      animation: float 4s ease-in-out infinite;
    }


    .stats-bar{
        background:#fff;

        border-radius:30px;

        margin-top:-50px;

        position:relative;
        z-index:10;

        box-shadow:
        0 30px 60px rgba(0,0,0,.08);
    }

    .stats-bar{
        background:#fff;

        border-radius:30px;

        margin-top:-50px;

        position:relative;
        z-index:10;

        box-shadow:
        0 30px 60px rgba(0,0,0,.08);
    }

    .city-card{
        border-radius:28px;

        overflow:hidden;

        background:#fff;

        box-shadow:
        0 20px 60px rgba(0,0,0,.08);

        transition:.5s;
    }

    .city-card{
        border-radius:28px;

        overflow:hidden;

        background:#fff;

        box-shadow:
        0 20px 60px rgba(0,0,0,.08);

        transition:.5s;
    }

    .city-card img{
        transition:.6s;
    }

    .city-card:hover img{
        transform:scale(1.08);
    }

    .premium-card{
        border-radius:30px;

        background:
        linear-gradient(
        180deg,
        #ffffff,
        #fcfcfc);

        border:1px solid rgba(0,0,0,.05);

        box-shadow:
        0 20px 60px rgba(0,0,0,.06);

        transition:.5s;
    }

    .premium-card:hover{
        transform:
        translateY(-15px);

        box-shadow:
        0 40px 80px rgba(74,0,101,.15);
    }

    .blob{
          position:fixed;
          border-radius:50%;
          filter:blur(120px);
          z-index:-1;
      }

      .blob1{
          width:300px;
          height:300px;

          background:rgba(74,0,101,.08);

          top:100px;
          left:-100px;
      }

      .blob2{
          width:350px;
          height:350px;

          background:rgba(81,0,176,.08);

          right:-120px;
          bottom:50px;
      }

    .btn-order,
      .btn-platform,
      .btn-contact,
      .btn-partner{
          border-radius:60px;

          padding:16px 34px;

          font-weight:700;

          box-shadow:
          0 12px 30px rgba(74,0,101,.25);

          transition:.4s;
      }

      .btn-order:hover,
      .btn-platform:hover,
      .btn-contact:hover,
      .btn-partner:hover{

          transform:
          translateY(-4px);

          box-shadow:
          0 20px 40px rgba(74,0,101,.35);
      }
 



    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
    }

    /* phone mockup */
    .phone-mockup {
      width: 180px;
      background: #fff;
      border-radius: 28px;
      box-shadow: 0 16px 48px rgba(0,0,0,.18);
      overflow: hidden;
      position: absolute;
      right: 20px;
      bottom: 20px;
      z-index: 3;
      border: 3px solid #eee;
      animation: float 4s ease-in-out 1s infinite;
    }

    .phone-top-bar {
      background: #fff;
      padding: 10px 12px 6px;
      display: flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1px solid #f0f0f0;
      font-size: 10px;
    }

    .phone-notch {
      width: 40px;
      height: 8px;
      background: #111;
      border-radius: 4px;
      margin: 0 auto 6px;
    }

    .phone-search {
      background: #f5f5f5;
      border-radius: 20px;
      padding: 5px 10px;
      font-size: 9px;
      color: #aaa;
      display: flex;
      align-items: center;
      gap: 4px;
      margin: 6px 10px;
    }

    .phone-banner {
      background: linear-gradient(135deg, #4CAF50, #2e7d32);
      margin: 0 8px 8px;
      border-radius: 10px;
      padding: 10px;
      color: #fff;
      font-size: 9px;
      font-weight: 700;
    }

    .phone-cats {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 4px;
      padding: 0 8px 8px;
    }

    .phone-cat {
      background: #f9f9f9;
      border-radius: 8px;
      padding: 6px 4px;
      text-align: center;
      font-size: 8px;
      color: #333;
    }

    .phone-cat-icon {
      font-size: 16px;
      display: block;
      margin-bottom: 2px;
    }

    /* cities panel */
    .cities-panel {
      text-align: center;
    }

    .cities-panel .serving-label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .cities-panel .cities-count {
      font-size: 38px;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1;
    }

    .cities-panel .cities-count span { color: var(--orange); }

    .city-item {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 10px 0;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
    }

    .city-dot {
      width: 22px;
      height: 22px;
      background: #ffeccc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--orange);
    }

    .btn-more-cities {
      background: var(--green-dark);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px 20px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      justify-content: center;
      margin-top: 16px;
      text-decoration: none;
      transition: background .2s;
    }
    .btn-more-cities:hover { background: #0d2b1f; color: #fff; }

    /* ── STATS BAR ── */
    .stats-bar {
      background: #fff;
      border-top: 1px solid #eee;
      padding: 28px 0;
    }

    .stat-item {
      display: flex;
      align-items: left;
      gap: 14px;
      padding: 0 24px;
      border-right: 1px solid #eee;
    }
    .stat-item:last-child { border-right: none; }

    .stat-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: left;
      justify-content: left;
      font-size: 40px;
      color: var(--green-dark);
      flex-shrink: 0;
    }

    .stat-num {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1;
    }

    .stat-label {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 2px;
    }

    /* map bg decorative */
    .map-bg {
      position: absolute;
      right: -60px;
      top: 50%;
      transform: translateY(-50%);
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(27,67,50,.07) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }

    /* responsive */
    @media (max-width: 991px) {
      .stat-item { border-right: none; border-bottom: 1px solid #eee; padding: 14px 0; }
      .stat-item:last-child { border-bottom: none; }
      .phone-mockup { display: none; }
      .hero-delivery-guy { width: 240px; }
    } 


    /* ── SECTION HEADERS ── */
  .section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-mid);
    display: block;
    margin-bottom: 8px;
  }
  .section-title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0;
  }

  /* ── OUR CITIES ── */
  .cities-section {
    background: #f5f9f7;
    padding: 72px 0 80px;
  }

  .city-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
  }
  .city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,.13);
  }

  .city-card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
  }

  /* SVG city illustration placeholder */
  .city-img-svg {
    width: 100%;
    height: 190px;
    display: block;
  }

  .city-card-body {
    padding: 20px 22px 24px;
  }

  .city-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 22px;
    color: #fff;
  }

  .city-card-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
  }

  .city-card-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .city-explore-link {
    color: var(--green-mid);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s, color .2s;
  }
  .city-explore-link:hover {
    color: var(--orange);
    gap: 10px;
  }

  /* ── WHAT WE DELIVER ── */
  .deliver-section {
    background: #fff;
    padding: 72px 0 80px;
  }

  .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform .25s;
  }
  .category-card:hover { transform: translateY(-5px); }

  .category-img-wrap {
    width: 110px;
    height: 110px;
    background: #f5f9f7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .25s;
  }
  .category-card:hover .category-img-wrap {
    box-shadow: 0 6px 20px rgba(245,124,0,.18);
  }

  .category-emoji {
    font-size: 52px;
    line-height: 1;
  }

  .category-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
  }


  .deliver-section{
    background:linear-gradient(180deg,#ffffff,#f8fafc);
    padding:90px 0;
}

.section-tag{
    display:inline-block;
    background:#fff4eb;
    color:#4a0065;
    padding:10px 22px;
    border-radius:50px;
    font-weight:700;
    font-size:13px;
    letter-spacing:2px;
}

.section-title{
    font-size:52px;
    font-weight:800;
    margin-top:15px;
    color:#111827;
}

.section-title span{
    color:#4a0065;
}

.section-desc{
    max-width:650px;
    margin:auto;
    color:#6b7280;
}

.premium-card{
    background:#fff;
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    height:100%;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    position:relative;
    overflow:hidden;
}

.premium-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#4a0065,#22c55e);
    transform:scaleX(0);
    transition:.4s;
}

.premium-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.premium-card:hover::before{
    transform:scaleX(1);
}

.premium-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#4a0065,#ff9248);
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
    box-shadow:0 15px 30px rgba(255,107,0,.25);
    transition:.4s;
}

.premium-card:hover .premium-icon{
    transform:rotateY(180deg);
}

.premium-card h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
    color:#111827;
}

.premium-card p{
    color:#6b7280;
    margin:0;
}

/* ── PLATFORM SECTION ── */
  .platform-section {
    background: linear-gradient(135deg, #eaf4ed 0%, #f5faf7 60%, #fff 100%);
    padding: 72px 0;
    overflow: hidden;
  }

  .platform-devices {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 280px;
  }

  /* laptop */
  .device-laptop {
    position: relative;
    z-index: 2;
  }
  .laptop-screen {
    width: 320px;
    background: #fff;
    border-radius: 12px 12px 0 0;
    border: 3px solid #ccc;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.14);
  }
  .laptop-base {
    width: 340px;
    height: 14px;
    background: #ddd;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
    position: relative;
  }
  .laptop-base::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #c5c5c5;
    border-radius: 0 0 4px 4px;
  }

  /* phones flanking laptop */
  .device-phone-left, .device-phone-right {
    width: 110px;
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    position: absolute;
    bottom: 14px;
    border: 3px solid #222;
  }
  .device-phone-left  { left: 0; z-index: 1; transform: rotate(-6deg); }
  .device-phone-right { right: 0; z-index: 3; transform: rotate(5deg); }

  .phone-notch-bar {
    width: 36px;
    height: 7px;
    background: #111;
    border-radius: 0 0 6px 6px;
    margin: 0 auto 4px;
  }

  /* dashboard inside laptop */
  .dash-header {
    background: #5100b0;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .dash-dot { width: 8px; height: 8px; border-radius: 50%; }

  .dash-stats {
    display: flex;
    gap: 8px;
    padding: 8px 10px 4px;
  }
  .dash-stat-box {
    flex: 1;
    background: #f5f5f5;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 9px;
    font-weight: 700;
    color: #333;
  }
  .dash-stat-box .val { font-size: 13px; font-weight: 800; color: var(--green-dark); }
  .dash-stat-box.red .val { color: #e53935; }
  .dash-stat-box.amber .val { color: var(--orange); }

  /* chart bars */
  .dash-chart {
    padding: 6px 10px 8px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 56px;
  }
  .dash-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: var(--green-mid);
    opacity: .7;
    transition: height .5s;
  }

  /* feature icons */
  .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px 24px;
    margin-top: 28px;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--orange);
    flex-shrink: 0;
  }

  .feature-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-top: 4px;
  }

  .btn-platform {
    background: var(--green-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    text-decoration: none;
    transition: background .2s, transform .15s;
  }
  .btn-platform:hover { background: #0d2b1f; color: #fff; transform: translateY(-2px); }

  /* ── WHY CHOOSE ── */
  .why-section {
    background: #fff;
    padding: 64px 0 56px;
    border-bottom: 1px solid #eee;
  }

  .why-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    border: 1.5px solid #eee;
    border-radius: 14px;
    background: #fff;
    height: 100%;
    transition: border-color .25s, box-shadow .25s;
  }
  .why-card:hover {
    border-color: var(--orange);
    box-shadow: 0 6px 20px rgba(245,124,0,.1);
  }

  .why-icon {
    width: 48px;
    height: 48px;
    background: #eaf4ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--green-dark);
    flex-shrink: 0;
  }

  .why-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
  .why-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0; }

  /* ── PARTNER SECTION ── */
  .partner-section {
    background: #f5f9f7;
    padding: 64px 0 72px;
  }

  .partner-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    height: 100%;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
    transition: transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
  }
  .partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,.12);
  }

  .partner-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
  }

  .partner-icon {
    width: 52px;
    height: 52px;
    background: #fff3e0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--orange);
    flex-shrink: 0;
  }

  .partner-name { font-size: 18px; font-weight: 700; color: var(--text-dark); }

  .partner-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }

  .partner-link {
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
  }
  .partner-link:hover { gap: 10px; color: var(--orange); }

  /* partner person SVG area */
  .partner-person {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: .18;
    pointer-events: none;
  }

  /* ── APP DOWNLOAD ── */
  .app-section {
    background: #f0f6f3;
    padding: 56px 0;
  }

  .app-phone-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none;
    width: 180px;
    transition: background .2s;
  }
  .app-store-btn:hover { background: #333; color: #fff; }
  .app-store-btn .store-sub  { font-size: 10px; opacity: .8; }
  .app-store-btn .store-name { font-size: 15px; font-weight: 700; }

  .qr-box {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--green-dark);
    color: #fff;
    padding: 56px 0 0;
  }

  .footer-brand { margin-bottom: 16px; }
  .footer-logo-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
  }
  .footer-brand-name { font-size: 14px; font-weight: 700; line-height: 1.2; }
  .footer-brand-sub  { font-size: 11px; opacity: .7; }

  .footer-about {
    font-size: 13px;
    opacity: .75;
    line-height: 1.7;
    margin: 14px 0 20px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.12);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: background .2s;
  }
  .footer-social a:hover { background: var(--orange); }

  .footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
  }

  .footer-links { list-style: none; padding: 0; margin: 0; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: color .2s;
  }
  .footer-links a:hover { color: #fff; }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: rgba(255,255,255,.8);
  }

  .footer-contact-item i { color: var(--orange); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

  .footer-bottom {
    background: rgba(0,0,0,.25);
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    padding: 16px;
    margin-top: 48px;
  }

  .footer-divider {
    border-color: rgba(255,255,255,.12);
  }





 
.contact-section{
    background:#f8fafc;
    padding:100px 0;
}

.contact-card,
.contact-form-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    height:100%;
}

.contact-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:linear-gradient(135deg,#4a0065,#ff944d);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.contact-item h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:5px;
}

.contact-item p{
    margin:0;
    color:#6b7280;
    line-height:1.8;
}

.contact-item a{
    color:#111827;
    text-decoration:none;
}

.contact-form-card .form-control{
    height:55px;
    border-radius:15px;
    border:1px solid #e5e7eb;
    box-shadow:none;
}

.contact-form-card textarea.form-control{
    height:auto;
}

.contact-form-card .form-control:focus{
    border-color:#4a0065;
    box-shadow:none;
}

.btn-contact{
    background:#4a0065;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-contact:hover{
    background:#e85f00;
    color:#fff;
}

.map-card{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.map-card iframe{
    display:block;
} 