    /* Carrier Form Page Styles - matching contract page aesthetic */
    :root {
      --accent-carrier: #ff5f13;
      --accent-blue: #0e1d34;
    }
    
    /* Hero Section */
    .page-title {
      position: relative;
      overflow: hidden;
      background-image: url('assets/img/carrier-application-bg.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 50vh;
    }
    
    .page-title::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #0e1d34 0%, #1a2f4e 100%);
      opacity: 0.85;
      z-index: 1;
    }
    
    .page-title::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255,95,19,0.15) 0%, rgba(255,95,19,0) 70%);
      border-radius: 50%;
      z-index: 2;
    }
    
    .page-title .container {
      position: relative;
      z-index: 10;
    }
    
    /* Floating icons */
    .floating-icon {
      position: absolute;
      opacity: 0.1;
      pointer-events: none;
      z-index: 3;
      color: #ff5f13;
      filter: drop-shadow(0 0 20px rgba(255, 95, 19, 0.3));
      animation: floatIcon 15s ease-in-out infinite;
    }
    
    .floating-icon i {
      font-size: 80px;
    }
    
    .floating-icon-1 {
      top: 10%;
      left: 3%;
      animation: floatIcon 18s ease-in-out infinite;
    }
    
    .floating-icon-2 {
      top: 20%;
      right: 2%;
      animation: floatIcon 22s ease-in-out infinite reverse;
    }
    
    .floating-icon-3 {
      bottom: 15%;
      left: 5%;
      animation: floatIcon 20s ease-in-out infinite 2s;
    }
    
    .floating-icon-4 {
      bottom: 25%;
      right: 5%;
      animation: floatIcon 25s ease-in-out infinite 1s;
    }
    
    @keyframes floatIcon {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(20px, -15px) rotate(5deg); }
      50% { transform: translate(-15px, -25px) rotate(10deg); }
      75% { transform: translate(-25px, -10px) rotate(5deg); }
    }
    
    /* Badge styling */
    .badge-carrier {
      background: rgba(255,95,19,0.15);
      color: #fff;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255,95,19,0.3);
      margin-bottom: 20px;
    }
    
    /* Form Container */
    .form-container {
      background: #fff;
      border-radius: 30px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.1);
      padding: 40px;
      margin-top: -80px;
      position: relative;
      z-index: 20;
      border: 1px solid rgba(255,95,19,0.1);
    }
    
    /* Progress Bar */
    .progress-container {
      margin-bottom: 40px;
    }
    
    .progress-steps {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }
    
    .progress-steps::before {
      content: '';
      position: absolute;
      top: 25px;
      left: 0;
      width: 100%;
      height: 2px;
      background: #e9ecef;
      z-index: 1;
    }
    
    .step-item {
      position: relative;
      z-index: 2;
      text-align: center;
      flex: 1;
      min-width: 80px;
    }
    
    .step-number {
      width: 50px;
      height: 50px;
      background: #fff;
      border: 2px solid #e9ecef;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      font-weight: 700;
      color: #6c757d;
      transition: 0.3s;
    }
    
    .step-item.active .step-number {
      background: #ff5f13;
      border-color: #ff5f13;
      color: #fff;
      box-shadow: 0 10px 20px rgba(255,95,19,0.2);
    }
    
    .step-item.completed .step-number {
      background: #28a745;
      border-color: #28a745;
      color: #fff;
    }
    
    .step-label {
      font-size: 12px;
      font-weight: 600;
      color: #6c757d;
    }
    
    .step-item.active .step-label {
      color: #ff5f13;
    }
    
    .progress-bar-fill {
      position: absolute;
      top: 25px;
      left: 0;
      height: 2px;
      background: #ff5f13;
      z-index: 2;
      transition: width 0.3s ease;
    }
    
    /* Form Steps */
    .form-step {
      display: none;
    }
    
    .form-step.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* Section Titles */
    .form-section-title {
      margin-bottom: 30px;
      padding-bottom: 15px;
      border-bottom: 2px solid rgba(255,95,19,0.1);
    }
    
    .form-section-title h3 {
      font-size: 24px;
      font-weight: 700;
      color: #0e1d34;
      margin-bottom: 5px;
    }
    
    .form-section-title p {
      color: #6c757d;
      margin: 0;
      font-size: 14px;
    }
    
    /* Form Groups */
    .form-group {
      margin-bottom: 25px;
    }
    
    .form-label {
      font-weight: 600;
      color: #0e1d34;
      margin-bottom: 8px;
      font-size: 15px;
    }
    
    .form-label i {
      color: #ff5f13;
      margin-right: 5px;
    }
    
    .form-label .required {
      color: #dc3545;
      margin-left: 3px;
    }
    
    .form-control, .form-select {
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 12px 15px;
      font-size: 15px;
      transition: 0.3s;
    }
    
    .form-control:focus, .form-select:focus {
      border-color: #ff5f13;
      box-shadow: 0 0 0 0.2rem rgba(255,95,19,0.1);
      outline: none;
    }
    
    /* Country Tabs */
    .country-tabs {
      border-bottom: 2px solid #e9ecef;
      padding-bottom: 10px;
      margin-bottom: 25px;
    }
    
    .country-tab {
      background: none;
      border: none;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      color: #6c757d;
      transition: 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
    }
    
    .country-tab .country-flag i {
      font-size: 24px;
    }
    
    .country-tab:hover {
      color: #ff5f13;
      background: rgba(255,95,19,0.05);
    }
    
    .country-tab.active {
      background: #ff5f13;
      color: #fff;
    }
    
    .country-tab.active .country-flag i {
      color: #fff;
    }
    
    .country-content {
      display: none;
      animation: fadeIn 0.5s ease;
    }
    
    .country-content.active {
      display: block;
    }
    
    /* Verification status */
    .verification-status .alert {
      border-radius: 12px;
      border: none;
      padding: 15px 20px;
    }
    
    .btn-outline-primary {
      border: 2px solid #ff5f13;
      color: #ff5f13;
      border-radius: 50px;
      padding: 10px 25px;
      font-weight: 600;
    }
    
    .btn-outline-primary:hover {
      background: #ff5f13;
      color: #fff;
    }
    
    /* Equipment Table */
    .equipment-table-container {
      background: #f8f9fc;
      border-radius: 15px;
      padding: 20px;
      margin-bottom: 30px;
      overflow-x: auto;
    }
    
    .equipment-table {
      width: 100%;
    }
    
    .equipment-table th {
      font-weight: 700;
      color: #0e1d34;
      font-size: 14px;
      padding: 10px 5px;
      text-align: left;
    }
    
    .equipment-table td {
      padding: 8px 5px;
    }
    
    .equipment-table input {
      width: 100%;
      padding: 8px 10px;
      border: 1px solid #dee2e6;
      border-radius: 8px;
    }
    
    .equipment-table input:focus {
      border-color: #ff5f13;
      outline: none;
    }
    
    /* Checkbox Group */
    .checkbox-group {
      background: #f8f9fc;
      border-radius: 12px;
      padding: 20px;
      max-height: 300px;
      overflow-y: auto;
    }
    
    .form-check {
      margin-bottom: 15px;
      padding-left: 35px;
    }
    
    .form-check-input {
      width: 20px;
      height: 20px;
      margin-left: -35px;
      border: 2px solid #dee2e6;
    }
    
    .form-check-input:checked {
      background-color: #ff5f13;
      border-color: #ff5f13;
    }
    
    .form-check-label {
      font-weight: 500;
      color: #0e1d34;
    }
    
    /* Signature Area */
    .signature-area {
      background: #f8f9fc;
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      border: 2px dashed #dee2e6;
      min-height: 160px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .signature-canvas {
      border: 2px solid #dee2e6;
      border-radius: 10px;
      background: #fff;
      width: 100%;
      max-width: 620px;
      height: 160px;
      cursor: crosshair;
    }
    
    .signature-actions {
      margin-top: 10px;
      display: flex;
      gap: 15px;
      justify-content: center;
    }
    
    .signature-actions a {
      color: #ff5f13;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }
    
    .signature-actions a:hover {
      text-decoration: underline;
    }
    
    /* File Upload */
    .file-upload-area {
      background: #f8f9fc;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      border: 2px dashed #dee2e6;
      cursor: pointer;
      transition: 0.3s;
    }
    
    .file-upload-area:hover {
      border-color: #ff5f13;
      background: #fff3e6;
    }
    
    .file-upload-area i {
      font-size: 48px;
      color: #ff5f13;
      opacity: 0.5;
      margin-bottom: 15px;
    }
    
    .file-upload-area p {
      margin-bottom: 5px;
      color: #0e1d34;
      font-weight: 600;
    }
    
    .file-upload-area small {
      color: #6c757d;
    }
    
    /* Info Box */
    .info-box {
      background: #fff3e6;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 25px;
      border-left: 4px solid #ff5f13;
    }
    
    .info-box i {
      color: #ff5f13;
      margin-right: 10px;
      font-size: 20px;
    }
    
    .info-box p {
      margin-bottom: 5px;
      color: #0e1d34;
    }
    
    /* Copy Link */
    .copy-link {
      color: #ff5f13;
      text-decoration: none;
      font-weight: 600;
      cursor: pointer;
      display: inline-block;
      margin-bottom: 20px;
    }
    
    .copy-link:hover {
      text-decoration: underline;
    }
    
    .copy-link i {
      margin-right: 5px;
    }
    
    /* Navigation Buttons */
    .form-navigation {
      display: flex;
      justify-content: space-between;
      margin-top: 40px;
      padding-top: 30px;
      border-top: 2px solid #e9ecef;
    }
    
    .btn-nav {
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.3s;
      border: none;
    }
    
    .btn-prev {
      background: #f8f9fc;
      color: #0e1d34;
    }
    
    .btn-prev:hover:not(:disabled) {
      background: #e9ecef;
    }
    
    .btn-prev:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    
    .btn-next {
      background: #ff5f13;
      color: #fff;
    }
    
    .btn-next:hover {
      background: #e65510;
      transform: translateX(5px);
    }
    
    .btn-submit {
      background: #0e1d34;
      color: #fff;
      padding: 12px 40px;
    }
    
    .btn-submit:hover {
      background: #1a2f4e;
      transform: translateX(5px);
    }
    
    /* Sidebar Progress */
    .progress-sidebar {
      position: sticky;
      top: 120px;
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      border: 1px solid rgba(255,95,19,0.1);
    }
    
    .progress-sidebar h5 {
      color: #0e1d34;
      font-weight: 700;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 2px solid rgba(255,95,19,0.1);
    }
    
    .sidebar-step {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      color: #6c757d;
    }
    
    .sidebar-step.active {
      color: #ff5f13;
      font-weight: 600;
    }
    
    .sidebar-step.completed {
      color: #28a745;
    }
    
    .sidebar-step i {
      font-size: 18px;
      width: 24px;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .progress-steps {
        justify-content: flex-start;
        gap: 10px;
      }
      
      .step-item {
        flex: 0 0 calc(25% - 10px);
      }
      
      .progress-steps::before {
        display: none;
      }
      
      .progress-bar-fill {
        display: none;
      }
    }
    
    @media (max-width: 768px) {
      .page-title h1 {
        font-size: 32px;
      }
      
      .form-container {
        padding: 25px;
        margin-top: -40px;
      }
      
      .step-item {
        flex: 0 0 calc(33.333% - 10px);
      }
      
      .step-label {
        font-size: 10px;
      }
      
      .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
      }
      
      .country-tab {
        padding: 10px 20px;
        font-size: 14px;
      }
      
      .floating-icon i {
        font-size: 50px;
      }
    }
    
    @media (max-width: 576px) {
      .country-tabs .d-flex {
        flex-direction: column;
        gap: 10px;
      }
      
      .country-tab {
        width: 100%;
        justify-content: center;
      }
      
      .step-item {
        flex: 0 0 calc(50% - 10px);
      }
      
      .form-navigation {
        flex-direction: column;
        gap: 15px;
      }
      
      .btn-nav {
        width: 100%;
      }
    }
  
