    /* ============ RESET & BASE ============ */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
             font-family: 'Montserrat', sans-serif;

      background: #f5f7fa;
      color: #1a1a1a;
      line-height: 1.6;
    }

    /* ============ CONTAINER ============ */
    .transport-container {
      display: flex;
      min-height: 100vh;
    }

    /* ============ SIDEBAR ============ */
    .sidebar {
      width: 280px;
      background-color: #000038;
      color: white;
      padding: 30px 20px;
      position: sticky;
      top: 0;
      height: 100vh;
      overflow-y: auto;
    }
    .sidebar h2 {
  font-size: 22px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #ff6a00;
  letter-spacing: 1.5px;
  font-weight: 800;
  position: relative;
  padding-bottom: 10px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* add a subtle gradient underline accent */
.sidebar h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff6a00, #ffcc66);
  box-shadow: 0 2px 6px rgba(255,102,0,0.4);
  transition: width 0.4s ease;
}

/* hover animation: underline expands for a modern accent */
.sidebar h2:hover::after {
  width: 100%;
}

    .sidebar ul {
      list-style: none;
      padding: 0;
    }
    .sidebar ul li {
      margin-bottom: 15px;
      font-size: .9rem;
      cursor: pointer;
      padding: 10px;
      border-radius: 5px;
      transition: background 0.3s, transform 0.2s;
    }
    .sidebar ul li:hover,
    .sidebar ul li.active {
      background-color: #ff6a00;
      transform: translateX(5px);
    }

    /* ============ MAIN AREA ============ */
    .main-area {
      flex: 1;
      padding: 40px;
    }
    .transport-section {
      display: none;
      opacity: 0;
      transform: translateY(20px);
      transition: 0.6s;
    }
    .transport-section.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }
/* =============================================
   💻 TABLET VIEW (771px → 1024px)
   ============================================= */
@media (max-width: 1024px) and (min-width: 771px) {
  .transport-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    background-color: magenta;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 18px 15px 22px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    border-bottom: 4px solid #ff6a00;
  }

  .sidebar h2 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    color: white;
  }

  .sidebar ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: center;
  }

  .sidebar ul li {
    display: inline-block;
    border-radius: 25px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .sidebar ul li:hover,
  .sidebar ul li.active {
    background-color: #ff6a00;
    color: #fff;
  }

  .main-area {
    padding: 30px 25px;
  }
}
/* =============================================
   📱 MOBILE VIEW (max-width: 770px)
   ============================================= */
@media (max-width: 770px) {
  .transport-container {
    flex-direction: column; /* Sidebar on top */
  }

  .sidebar {
    width: 100%;
    height: auto;
    background-color: #43092d ;
    position: sticky;
    top: 0;
    z-index: 10;
  /*  padding: 12px 8px;*/
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    border-bottom: 3px solid #ff6a00;
  }

  .sidebar h2 {
    display: none; /* Hide heading for small screens */
  }

  .sidebar ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: flex-start;
  }

  .sidebar ul li {
    margin: 0;
    display: inline-block;
    border-radius: 25px;
    padding: 8px 14px;
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    transition: background 0.3s ease;
    white-space: nowrap;
  }

  .sidebar ul li:hover,
  .sidebar ul li.active {
    background-color: #ff6a00;
    color: #fff;
  }

  .main-area {
    padding: 20px 15px;
  }
}

    /* ============ INFO CARDS (default) ============ */
    .info-card {
      background: #fff;
      padding: 24px;
      border-radius: 12px;
      margin-bottom: 25px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
      border-left: 6px solid #ff6a00;
    }
    .info-card h3 {
      margin-bottom: 12px;
      color: #000038;
    }

    /* ============ FREE SERVICES PREMIUM THEME ============ */
    #free {
      position: relative;
      background: linear-gradient(135deg,#fdfdfd,#f3f6fb);
      border-radius: 18px;
      padding: 40px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
      margin-bottom: 30px;
    }
    #free .free-title {
      font-size: 32px;
      font-weight: 800;
      color: #000038;
      margin-bottom: 24px;
      letter-spacing: -0.5px;
    }
    #free .free-title span {
      color: #ff6600;
      font-style: italic;
    }
    .free-layout {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }
    .free-left { flex: 2; min-width: 320px; }
    .free-right { flex: 1; min-width: 300px; }

    /* Premium info blocks */
    #free .info-block {
      background: #fff;
      border-radius: 14px;
      padding: 26px 28px;
      margin: 20px 0;
      box-shadow: 0 8px 22px rgba(0,0,0,0.06);
      border-left: 6px solid #ff6600;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards;
    }
    #free .info-block:nth-child(1) { animation-delay: 0.2s; }
    #free .info-block:nth-child(2) { animation-delay: 0.4s; }
    #free .info-block:nth-child(3) { animation-delay: 0.6s; }
    #free .info-block:nth-child(4) { animation-delay: 0.8s; }
    #free .info-block:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    }
    #free .info-title {
      font-size: 20px;
      font-weight: 700;
      color: #000038;
      margin-bottom: 10px;
    }
    #free .info-body {
      color: #333;
      font-size: 15px;
    }

    /* Duration pills */
    .duration-wrap {
      display: flex; 
      gap: 12px; 
      flex-wrap: wrap; 
      margin-top: 12px;
    }
    .duration-pill {
      background: linear-gradient(135deg,#ff6600,#ff8a33);
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      padding: 10px 16px;
      border-radius: 999px;
      box-shadow: 0 4px 10px rgba(255,102,0,0.3);
      transition: transform 0.3s ease;
    }
    .duration-pill b { color: #fff; }
    .duration-pill:hover {
      transform: scale(1.08);
      animation: pulseGlow 1.5s infinite;
    }

    /* Form panel */
    .form-panel {
      background: linear-gradient(160deg,rgba(0,0,56,0.92),rgba(27,27,108,0.9));
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 16px 40px rgba(0,0,0,.25);
      color: #fff;
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUp 1s ease forwards;
      animation-delay: 1s;
    }
    .form-panel h3 {
      color: #ffcc66;
      font-size: 20px;
      margin-bottom: 12px;
    }
    .form-panel p { color: #e6e7ff; }
    .form-panel iframe {
      width: 100%;
      min-height: 500px;
      border: none;
      border-radius: 12px;
      box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    }

    /* ============ ANIMATIONS ============ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulseGlow {
      0% { box-shadow: 0 0 0 0 rgba(255,102,0,0.4); }
      70% { box-shadow: 0 0 0 15px rgba(255,102,0,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,102,0,0); }
    }
    @media (max-width: 770px) {
  /* Container */
  #free {
    padding: 25px 18px;
    border-radius: 12px;
  }

  #free .free-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 20px;
  }

  .free-layout {
    flex-direction: column;
    gap: 25px;
  }

  .free-left,
  .free-right {
    min-width: 100%;
  }

  /* Info Blocks */
  #free .info-block {
    padding: 20px;
    margin: 15px 0;
    border-left: 5px solid #ff6600;
  }

  #free .info-title {
    font-size: 18px;
  }

  #free .info-body {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Duration Pills */
  .duration-wrap {
    justify-content: center;
  }

  .duration-pill {
    font-size: 13px;
    padding: 8px 14px;
  }

  /* Form Panel */
  .form-panel {
    padding: 22px 18px;
    border-radius: 14px;
    text-align: center;
  }

  .form-panel h3 {
    font-size: 18px;
  }

  .form-panel iframe {
    min-height: 380px;
  }
}
@media (max-width: 1024px) and (min-width: 771px) {
  /* Container */
  #free {
    padding: 35px 28px;
    border-radius: 16px;
  }

  #free .free-title {
    font-size: 28px;
    margin-bottom: 22px;
  }

  .free-layout {
    gap: 30px;
  }

  .free-left {
    flex: 1.8;
    min-width: 380px;
  }

  .free-right {
    flex: 1;
    min-width: 320px;
  }

  /* Info Blocks */
  #free .info-block {
    padding: 22px 25px;
    margin: 18px 0;
    border-left: 5px solid #ff6600;
  }

  #free .info-title {
    font-size: 19px;
  }

  #free .info-body {
    font-size: 15px;
  }

  /* Duration Pills */
  .duration-wrap {
    gap: 10px;
  }

  .duration-pill {
    font-size: 13.5px;
    padding: 9px 15px;
  }

  /* Form Panel */
  .form-panel {
    padding: 25px 22px;
    border-radius: 16px;
  }

  .form-panel iframe {
    min-height: 460px;
  }
}

    /*-------------------Airport services---------------------*/

 .airport-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #000038;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
  position: relative;
}

/* Accent underline bar */
.airport-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff6600, #ffcc66);
}

/* Layout */
.airport-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.boarding-pass { 
  flex: 2; min-width: 340px; 
  background: #fff; 
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 2px dashed #ff6600; /* boarding pass feel */
}
.airport-form { flex: 1; min-width: 320px; }

/* Boarding Pass Header */
.bp-header {
  background: linear-gradient(135deg,#000038,#1a1a6c);
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bp-header h3 {
  margin: 0;
  font-size: 20px;
}
.bp-tag {
  background: #ff6600;
  color: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

/* Boarding Pass Body */
.bp-body {
  padding: 24px;
}
.bp-body p { margin-bottom: 16px; }

/* Benefits */
.bp-benefits h4 {
  margin: 18px 0 10px;
  font-size: 18px;
  color: #ff6600;
}
.bp-benefits ul { list-style: none; padding: 0; }
.bp-benefits li {
  margin: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Steps */
.bp-steps h4 {
  margin: 20px 0 12px;
  font-size: 18px;
  color: #ff6600;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.step-badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg,#ff6600,#ffcc66);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(255,102,0,0.3);
}
.step p { margin: 0; font-size: 15px; }

/* Footer */
.bp-footer {
  background: #f9fafc;
  padding: 12px 20px;
  border-top: 1px solid #eee;
}
.bp-footer .note {
  font-size: 13px;
  color: #666;
}

/* Form Panel (premium reuse) */
#air .form-panel {
  background: linear-gradient(160deg,rgba(0,0,56,0.95),rgba(27,27,108,0.9));
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  color: #fff;
}
#air .form-panel h3 {
  color: #ffcc66;
  font-size: 20px;
  margin-bottom: 10px;
}
#air .form-panel p { color: #e6e7ff; }
#air .form-panel iframe {
  width: 100%;
  min-height: 450px;
  border: none;
  border-radius: 12px;
  margin-top: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
/* =============================================
   📱 MOBILE VIEW (max-width: 770px)
   ============================================= */
@media (max-width: 770px) {
  .airport-title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .airport-title::after {
    width: 70px;
    height: 3px;
  }

  .airport-container {
    flex-direction: column;
    gap: 24px;
  }

  .boarding-pass {
    min-width: 100%;
    border-radius: 14px;
    border: 2px dashed #ff6600;
  }

  .bp-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .bp-header h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .bp-tag {
    align-self: flex-start;
    font-size: 12px;
    padding: 5px 10px;
  }

  .bp-body {
    padding: 18px;
  }

  .bp-body p {
    font-size: 14px;
    line-height: 1.6;
  }

  .bp-benefits h4,
  .bp-steps h4 {
    font-size: 16px;
  }

  .bp-benefits li,
  .step p {
    font-size: 14px;
    line-height: 1.5;
  }

  .step {
    gap: 10px;
  }

  .step-badge {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .bp-footer {
    padding: 10px 16px;
  }

  .bp-footer .note {
    font-size: 12px;
  }

  /* Form panel */
  #air .form-panel {
    padding: 22px 18px;
    border-radius: 14px;
    text-align: center;
  }

  #air .form-panel h3 {
    font-size: 18px;
  }

  #air .form-panel iframe {
    min-height: 380px;
  }
}
/* =============================================
   💻 TABLET VIEW (771px → 1024px)
   ============================================= */
@media (max-width: 1024px) and (min-width: 771px) {
  .airport-title {
    font-size: 30px;
    margin-bottom: 32px;
  }

  .airport-container {
    gap: 30px;
    align-items: flex-start;
  }

  .boarding-pass {
    flex: 1.5;
    min-width: 360px;
    border-radius: 18px;
    border: 2px dashed #ff6600;
  }

  .bp-header {
    padding: 18px 20px;
  }

  .bp-header h3 {
    font-size: 19px;
  }

  .bp-body {
    padding: 22px;
  }

  .bp-body p {
    font-size: 15px;
  }

  .bp-benefits h4,
  .bp-steps h4 {
    font-size: 17px;
  }

  .bp-benefits li,
  .step p {
    font-size: 14.5px;
  }

  .bp-footer {
    padding: 12px 18px;
  }

  /* Form panel */
  #air .form-panel {
    padding: 24px 20px;
    border-radius: 16px;
  }

  #air .form-panel iframe {
    min-height: 420px;
  }
}

/*--------------Nol card ------------------------*/
/* Nol Title */
.nol-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #000038;
  margin-bottom: 36px;
}
.nol-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg,#ff6600,#ffcc66);
}

/* Nol Card Container */
.nol-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-left: 6px solid #ff6600;
}

/* Intro */
.nol-intro {
  margin-bottom: 25px;
  font-size: 15px;
  color: #333;
}
.nol-intro .nol-link {
  color: #ff6600;
  font-weight: 600;
  text-decoration: none;
}
.nol-intro .nol-link:hover {
  text-decoration: underline;
}

/* Timeline */
.nol-timeline {
  border-left: 3px solid #ff6600;
  margin: 20px 0;
  padding-left: 25px;
}
.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
  position: relative;
}
.step-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg,#ff6600,#ffcc66);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 4px 10px rgba(255,102,0,0.3);
}
.step-text h4 {
  margin: 0 0 5px;
  font-size: 17px;
  color: #000038;
}
.step-text p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

/* Note */
.nol-note {
  margin: 20px 0;
  padding: 14px 16px;
  background: #fff4e6;
  border-left: 5px solid #ff6600;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

/* Contact */
.nol-contact {
  margin-top: 20px;
  font-size: 15px;
}
/* =============================================
   📱 MOBILE VIEW (max-width: 770px)
   ============================================= */
@media (max-width: 770px) {
  .nol-title {
    font-size: 26px;
    margin-bottom: 26px;
  }

  .nol-title::after {
    width: 80px;
    height: 3px;
  }

  .nol-card {
    padding: 22px 18px;
    border-radius: 14px;
    border-left: 5px solid #ff6600;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  }

  .nol-intro {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }

  .nol-timeline {
    padding-left: 20px;
    margin: 18px 0;
    border-left-width: 2px;
  }

  .step {
    flex-direction: row;
    margin-bottom: 18px;
  }

  .step-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
    margin-right: 12px;
  }

  .step-text h4 {
    font-size: 16px;
  }

  .step-text p {
    font-size: 13px;
    line-height: 1.5;
  }

  .nol-note {
    font-size: 13px;
    padding: 12px 14px;
    border-left: 4px solid #ff6600;
    border-radius: 5px;
  }

  .nol-contact {
    text-align: center;
    font-size: 14px;
    margin-top: 18px;
  }
}
/* =============================================
   💻 TABLET VIEW (771px → 1024px)
   ============================================= */
@media (max-width: 1024px) and (min-width: 771px) {
  .nol-title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .nol-card {
    padding: 26px 22px;
    border-radius: 16px;
    border-left: 6px solid #ff6600;
  }

  .nol-intro {
    font-size: 15px;
    line-height: 1.7;
  }

  .nol-timeline {
    padding-left: 25px;
    border-left-width: 3px;
  }

  .step-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .step-text h4 {
    font-size: 17px;
  }

  .step-text p {
    font-size: 14px;
  }

  .nol-note {
    padding: 14px 16px;
    font-size: 14px;
    border-left: 5px solid #ff6600;
  }

  .nol-contact {
    margin-top: 20px;
    font-size: 15px;
  }
}

/*-------------Routes------------------------*/
/* Section Title */
.routes-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}
.routes-title::after {
  content: "";
  display: block;
  width: 160px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg,#ff6600,#ffcc66);
}

/* Background */
#routes {
  background: #000038;
  padding: 80px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

/* Vertical Line */
.routes-map.vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  margin: 0 auto;
  max-width: 600px;
}
.routes-map.vertical::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 4px;
  background: linear-gradient(180deg,#ff6600,#ffcc66);
  border-radius: 2px;
  z-index: 0;
}

/* Station Cards */
.route-station {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 20px 28px;
  margin-left: 60px;
  color: #fff;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(40px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.route-station:nth-child(1){ animation-delay:0.2s; }
.route-station:nth-child(2){ animation-delay:0.4s; }
.route-station:nth-child(3){ animation-delay:0.6s; }
.route-station:nth-child(4){ animation-delay:0.8s; }
.route-station:nth-child(5){ animation-delay:1s; }
.route-station:nth-child(6){ animation-delay:1.2s; }

.route-station h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffcc66;
}
.route-station p {
  font-size: 15px;
  line-height: 1.5;
  color: #eee;
}

/* Station Circle */
.station-circle {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg,#ff6600,#ffcc66);
  border-radius: 50%;
  position: absolute;
  left: -48px;
  top: 22px;
  box-shadow: 0 0 12px rgba(255,102,0,0.6);
  z-index: 2;
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
/*-----------------------------------------*/
/* ===== Base Section ===== */
.contact-section {
  border-top: 3px solid #000038;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #fafbff 100%);
  padding: 45px 50px;
  border-radius: 20px;
  overflow: hidden;
}

/* ===== Title ===== */
.contact-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #000038;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
  position: relative;
}
.contact-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #ff6600, #ffcc66);
}

/* ===== Layout ===== */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ===== Contact Info Card ===== */
.contact-card {
  flex: 1;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 35px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}
.info-item:hover {
  transform: translateX(8px);
}
.icon {
  font-size: 24px;
  color: #ff6600;
  flex-shrink: 0;
}
.contact-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000038;
  margin-bottom: 4px;
}
.contact-card p,
.contact-card a {
  font-size: 15px;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
}
.contact-card a:hover {
  color: #ff6600;
  text-decoration: underline;
}

/* ===== Right Panel ===== */
.contact-panel {
  flex: 1;
  min-width: 340px;
  background: linear-gradient(135deg, #000038, #1b1b6c);
  color: #fff;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  animation: fadeUp 1.1s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

/* glowing overlay */
.panel-overlay {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.4), transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.panel-content {
  position: relative;
  padding: 60px 40px;
  text-align: left;
  z-index: 2;
}
.panel-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffcc66;
  margin-bottom: 18px;
}
.panel-content p {
  font-size: 16px;
  color: #e6e7ff;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 420px;
}
.cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(90deg, #ff6600, #ffcc66);
  color: #000038;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #ffcc66, #ff6600);
  transform: translateY(-2px);
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ===== Media Queries ===== */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 50px;
  }
  .contact-panel,
  .contact-card {
    width: 100%;
    min-width: unset;
  }
  .panel-content {
    padding: 50px 30px;
    text-align: center;
  }
  .panel-content p {
    margin: 0 auto 30px;
  }
}

@media (max-width: 600px) {
  .contact-title {
    font-size: 30px;
  }
  .contact-card {
    padding: 28px 22px;
  }
  .panel-content h3 {
    font-size: 20px;
  }
  .panel-content p {
    font-size: 15px;
  }
  .cta-btn {
    padding: 10px 26px;
    font-size: 14px;
  }
}
