    :root {
      --primary-dark: #1a1a1a;
      --primary-light: #f8f8f8;
      --accent-gold: #c9a96e;
      --accent-gold-dark: #a88f5c;
      --text-primary: #2d2d2d;
      --text-secondary: #6d6d6d;
      --border-light: #e8e8e8;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Prompt', sans-serif;
  background: url('../assets/img/reservation_bg.jpg') no-repeat center center fixed, url('../assets/img/bg.jpg') no-repeat center center fixed;
      background-size: cover;
      color: var(--text-primary);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.45);
      z-index: -1;
    }

    /* Header */
    .header {
      background: var(--primary-dark);
      color: white;
      padding: 40px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      min-height: 150px;
    }

    .header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, transparent 100%);
    }

    .header-content {
      position: relative;
      z-index: 1;
    }

    .logo-container {
      text-align: center;
      margin-bottom: 15px;
    }

    .logo-image {
      height: 50px;
      width: auto;
      filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.2));
      transition: transform 0.3s ease;
    }

    .logo-image:hover {
      transform: scale(1.05);
    }

    .logo {
      font-family: 'Prompt', sans-serif;
      font-size: 72px;
      font-weight: 400;
      letter-spacing: 6px;
      margin-bottom: 12px;
      color: var(--accent-gold);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .tagline {
      font-size: 24px;
      letter-spacing: 5px;
      text-transform: uppercase;
      opacity: 0.9;
      font-weight: 400;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Main Container */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    /* Progress Indicator - Simple Circle Design */
    .progress-wrapper {
      background: white !important;
      padding: 60px 40px;
      border-radius: 12px;
      margin-bottom: 60px;
      box-shadow: var(--shadow-sm);
    }

    .progress-steps {
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      position: relative !important;
      max-width: 600px !important;
      margin: 0 auto !important;
    }

    /* Connecting Line - FORCE */
    .progress-line {
      position: absolute !important;
      top: 45px !important;
      left: 100px !important;
      right: 100px !important;
      height: 3px !important;
      background: #e2e8f0 !important;
      z-index: 1 !important;
      border-radius: 2px !important;
    }

    .progress-line-fill {
      height: 100% !important;
      background: var(--accent-gold) !important;
      transition: none !important;
      width: 0% !important;
      border-radius: 2px !important;
    }

    /* Step Container - FORCE */
    .step {
      position: relative !important;
      z-index: 2 !important;
      text-align: center !important;
      flex: 0 0 auto !important;
    }

    /* Circle Step Number - Force Override */
    .step-number {
      width: 80px !important;
      height: 80px !important;
      border-radius: 50% !important;
      background: white !important;
      border: 5px solid #e2e8f0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 24px !important;
      font-weight: 700 !important;
      color: #64748b !important;
      margin: 0 auto 15px !important;
      transition: none !important;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    }

    /* Active Step - Force Override */
    .step.active .step-number {
      background: var(--accent-gold) !important;
      border-color: var(--accent-gold) !important;
      color: white !important;
    }

    /* Completed Step - Force Override */
    .step.completed .step-number {
      background: var(--primary-dark) !important;
      border-color: var(--primary-dark) !important;
      color: white !important;
      font-size: 24px !important;
    }

    .step.completed .step-number::before {
      content: none !important;
      display: none !important;
    }

    /* Step Labels - FORCE */
    .step-label {
      font-size: 16px !important;
      color: #64748b !important;
      font-weight: 500 !important;
      max-width: 120px !important;
      line-height: 1.4 !important;
      text-align: center !important;
      margin-top: 8px !important;
    }

    .step.active .step-label {
      color: var(--text-primary) !important;
      font-weight: 600 !important;
    }

    .step.completed .step-label {
      color: var(--primary-dark) !important;
      font-weight: 600 !important;
    }

    /* Content Section */
    .content-wrapper {
      background: white;
      box-shadow: var(--shadow-md);
      border-radius: 0;
    }

    .step-content {
      display: none;
      padding: 60px;
      min-height: 500px;
    }

    .step-content.active {
      display: block;
      animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .section-title {
      font-family: 'Prompt', sans-serif;
      font-size: 36px;
      font-weight: 300;
      color: var(--primary-dark);
      margin-bottom: 12px;
      text-align: center;
      letter-spacing: 1px;
    }

    .section-subtitle {
      text-align: center;
      color: var(--text-secondary);
      font-size: 15px;
      margin-bottom: 50px;
      font-weight: 300;
    }

    /* Two Column Layout */
    .two-column-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-top: 40px;
    }

    .column-left,
    .column-right {
      min-height: 500px;
    }

    .column-title {
      font-family: 'Prompt', sans-serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--primary-dark);
      margin-bottom: 30px;
      padding-bottom: 15px;
      border-bottom: 1px solid var(--border-light);
      letter-spacing: 0.5px;
    }

    @media (max-width: 968px) {
      .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* Form Elements */
    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-bottom: 40px;
    }

    .form-group {
      margin-bottom: 28px;
    }

    .form-label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-primary);
      margin-bottom: 10px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .form-note {
      color: #666;
      font-size: 12px;
      margin-top: 5px;
      display: block;
      font-family: inherit;
      font-weight: 400;
      line-height: 1.35;
      letter-spacing: 0.2px;
      margin-bottom: 0;
    }

    .form-input,
    .form-select {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--border-light);
      border-radius: 0;
      font-size: 15px;
      font-family: inherit;
      transition: all 0.2s ease;
      background: white;
      color: var(--text-primary);
    }

    .form-input:focus,
    .form-select:focus {
      outline: none;
      border-color: var(--accent-gold);
      box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
    }

    /* Custom Searchable Select */
    .searchable-select {
      position: relative;
      width: 100%;
    }

    .search-dropdown {
      width: 100%;
      cursor: pointer;
      padding-right: 40px;
    }

    .dropdown-arrow {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      color: #666;
      font-size: 12px;
    }

    .dropdown-content {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 1px solid var(--border-light);
      border-top: none;
      max-height: 300px;
      overflow-y: auto;
      z-index: 1000;
      display: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .dropdown-content.show {
      display: block;
    }

    .search-input {
      width: 100%;
      padding: 12px 16px;
      border: none;
      border-bottom: 1px solid var(--border-light);
      font-size: 14px;
      outline: none;
      background: #f8f9fa;
    }

    .search-input:focus {
      background: white;
      border-bottom-color: var(--accent-gold);
    }

    .options-container {
      max-height: 250px;
      overflow-y: auto;
    }

    .option {
      padding: 12px 16px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
      transition: background-color 0.2s;
    }

    .option:hover {
      background-color: #f8f9fa;
      color: #333;
      font-weight: 500;
    }

    .option.selected {
      background-color: var(--accent-gold);
      color: white;
    }

    .option:last-child {
      border-bottom: none;
    }

    .option.loading {
      color: #666;
      font-style: italic;
      pointer-events: none;
    }

    /* Time Slots */
    .time-slots {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    .time-slot {
      background: white;
      border: 1px solid var(--border-light);
      padding: 32px 24px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .time-slot:hover {
      border-color: var(--accent-gold);
      box-shadow: var(--shadow-md);
    }

    .time-slot.selected {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: white;
    }

    .time-slot.selected::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--accent-gold);
    }

    .time-value {
      font-family: 'Prompt', sans-serif;
      font-size: 36px;
      font-weight: 300;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }

    .time-period {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2px;
      opacity: 0.7;
      font-weight: 400;
    }

    .time-slot.selected .time-period {
      opacity: 0.8;
    }

    /* Expired time slots */
    .time-slot.expired {
      opacity: 0.5;
      background: #f5f5f5;
      border-color: #ddd;
      cursor: not-allowed;
      pointer-events: none;
    }

    .time-slot.expired .time-value,
    .time-slot.expired .time-period {
      color: #999;
    }

    .time-slot.expired:hover {
      border-color: #ddd;
      box-shadow: none;
    }

    /* Expired notification */
    .expired-notification {
      margin: 24px 0;
      padding: 20px;
      background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
      border: 1px solid #feb2b2;
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
    }

    .expired-message {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .expired-message i {
      color: #dc3545;
      font-size: 24px;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .expired-text strong {
      color: #dc3545;
      font-size: 16px;
      display: block;
      margin-bottom: 8px;
    }

    .expired-text p {
      color: #721c24;
      font-size: 14px;
      line-height: 1.5;
      margin: 0;
    }

    .expired-text a {
      color: #dc3545;
      text-decoration: none;
      font-weight: 600;
    }

    .expired-text a:hover {
      text-decoration: underline;
    }

    /* Table Map */
    .map-container {
      margin: 40px 0;
      text-align: center;
    }

    .map-image {
      max-width: 100%;
      height: auto;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

    .map-note {
      margin-top: 16px;
      font-size: 13px;
      color: var(--text-secondary);
      font-style: italic;
    }

    /* Buttons */
    .button-group {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-top: 50px;
      padding-top: 40px;
      border-top: 1px solid var(--border-light);
    }

    .btn {
      padding: 16px 48px;
      border: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: inherit;
      border-radius: 0;
      text-align: center;
      text-decoration: none !important;
    }

    .btn-primary {
      background: var(--primary-dark);
      color: white;
      text-align: center;
      text-decoration: none !important;
    }

    .btn-primary:hover {
      background: var(--accent-gold);
    }

    .btn-primary:disabled {
      background: #ccc;
      cursor: not-allowed;
      opacity: 0.5;
    }

    .btn-secondary {
      background: transparent;
      color: var(--text-primary);
      border: 1px solid var(--border-light);
      text-align: center;
      text-decoration: none !important;
    }

    .btn-secondary:hover {
      border-color: var(--primary-dark);
      background: var(--primary-dark);
      color: white;
      text-decoration: none !important;
    }

    /* Modal */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.75);
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .modal-overlay.active {
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
    }

    .modal {
      background: white;
      max-width: 600px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: var(--shadow-lg);
      transform: translateY(20px);
      transition: transform 0.3s ease;
    }

    .modal-overlay.active .modal {
      transform: translateY(0);
    }

    .modal-header {
      padding: 40px 40px 30px;
      border-bottom: 1px solid var(--border-light);
    }

    .modal-title {
      font-family: 'Prompt', sans-serif;
      font-size: 32px;
      font-weight: 300;
      color: var(--primary-dark);
      margin-bottom: 8px;
    }

    .modal-body {
      padding: 40px;
    }

    .payment-confirm-section {
      background: #f8f9fa;
      border-radius: 16px;
      padding: 32px;
      margin-bottom: 32px;
      border: 2px solid var(--border-light);
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .payment-confirm-section h4 {
      font-size: 22px;
      margin-bottom: 24px;
      color: var(--accent-gold);
      font-family: 'Prompt', sans-serif;
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 600;
    }

    .payment-confirm-section h4 i {
      font-size: 20px;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
      border-bottom: 1px solid #e9ecef;
      gap: 20px;
    }

    .summary-row:last-child {
      border-bottom: none;
      background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
      color: white;
      padding: 24px;
      border-radius: 12px;
      margin-top: 20px;
      box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
    }

    .summary-label {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      flex-shrink: 0;
      min-width: 140px;
      font-family: 'Prompt', sans-serif;
    }

    .summary-value {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-primary);
      text-align: right;
      word-break: break-word;
      font-family: 'Prompt', sans-serif;
    }

    .summary-row:last-child .summary-label {
      color: white;
      font-weight: 600;
      font-size: 16px;
    }

    .summary-row:last-child .summary-value {
      color: white;
      font-weight: 700;
      font-size: 24px;
    }

    .summary-value {
      font-size: 15px;
      color: var(--text-primary);
      font-weight: 400;
    }

    .modal-footer {
      padding: 0 40px 40px;
      display: flex;
      gap: 16px;
    }

      /* Warning section styling for mobile */
      .modal-body > div[style*="background: #2c3e50"] {
        background: var(--primary-dark) !important;
        padding: 16px !important;
        margin: 16px 0 !important;
        border-radius: 8px !important;
        border-left: 4px solid var(--accent-gold) !important;
      }

      .modal-body > div[style*="background: #2c3e50"] > div {
        font-size: 14px !important;
        margin-bottom: 12px !important;
        font-family: 'Prompt', sans-serif !important;
      }

      .modal-body > div[style*="background: #2c3e50"] ul {
        margin: 12px 0 !important;
        padding-left: 0 !important;
      }

      .modal-body > div[style*="background: #2c3e50"] li {
        font-size: 12px !important;
        margin-bottom: 8px !important;
        padding-left: 24px !important;
        line-height: 1.4 !important;
        font-family: 'Prompt', sans-serif !important;
      }

      .modal-body > div[style*="background: #2c3e50"] li i {
        margin-right: 8px !important;
        color: var(--accent-gold) !important;
        width: 14px !important;
      }

      .modal-footer .btn {
        flex: 1;
        padding: 12px 16px;
        font-size: 14px;
        font-family: 'Prompt', sans-serif;
        border-radius: 8px;
        font-weight: 500;
      }

      .btn-secondary {
        background: #6c757d !important;
        border-color: #6c757d !important;
        color: white !important;
      }

      .btn-primary {
        background: var(--accent-gold) !important;
        border-color: var(--accent-gold) !important;
        color: white !important;
      }    /* File Upload */
    .upload-area {
      border: 2px dashed var(--border-light);
      padding: 60px 40px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      background: #fafafa;
    }

    .upload-area:hover {
      border-color: var(--accent-gold);
      background: white;
    }

    .upload-area.drag-over {
      border-color: var(--accent-gold);
      background: rgba(201, 169, 110, 0.08);
    }

    .upload-area.has-file {
      border-color: var(--accent-gold);
      border-style: solid;
      background: white;
    }

    .upload-icon {
      font-size: 48px;
      color: var(--text-secondary);
      margin-bottom: 20px;
    }

    .upload-text {
      font-size: 15px;
      color: var(--text-secondary);
      margin-bottom: 8px;
    }

    .upload-subtext {
      font-size: 13px;
      color: var(--text-secondary);
      opacity: 0.7;
    }

    .file-info {
      margin-top: 20px;
      padding: 20px;
      background: #f8f9fa;
      border: 1px solid #ececec;
      border-radius: 12px;
      display: none;
    }

    .file-info.visible {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .file-preview {
      width: 140px;
      height: 140px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.05);
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .file-preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .file-details {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .file-name {
      font-weight: 600;
      color: var(--text-primary);
      font-size: 15px;
    }

    .processing-status {
      font-size: 14px;
      color: #777;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .processing-status.processing {
      color: #f59e0b;
    }

    .processing-status.success {
      color: #22c55e;
    }

    .processing-status.error {
      color: #ef4444;
    }

    .processing-status.pending {
      color: #0ea5e9;
    }

    .loading-spinner {
      width: 18px;
      height: 18px;
      border: 2px solid rgba(245, 158, 11, 0.2);
      border-top: 2px solid #f59e0b;
      border-radius: 50%;
      animation: spin 0.9s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .verification-result {
      padding: 12px 16px;
      border-radius: 10px;
      font-size: 14px;
      line-height: 1.4;
      border: 1px solid transparent;
      display: none;
    }

    .verification-result.auto-approved {
      background: rgba(34, 197, 94, 0.1);
      border-color: rgba(34, 197, 94, 0.2);
      color: #166534;
    }

    .verification-result.manual-review {
      background: rgba(14, 165, 233, 0.1);
      border-color: rgba(14, 165, 233, 0.2);
      color: #075985;
    }

    .verification-result.rejected {
      background: rgba(239, 68, 68, 0.1);
      border-color: rgba(239, 68, 68, 0.2);
      color: #7f1d1d;
    }

    /* Info Box */
    .info-box {
      background: #fafafa;
      border-left: 3px solid var(--accent-gold);
      padding: 32px;
      margin-top: 40px;
    }

    .info-title {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-primary);
      margin-bottom: 20px;
    }

    .info-list {
      list-style: none;
      padding: 0;
    }

    .info-list li {
      padding: 10px 0;
      padding-left: 24px;
      position: relative;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .info-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--accent-gold);
    }

    .info-list li strong {
      color: var(--text-primary);
    }

    /* Payment Info */
    .payment-info {
      background: var(--primary-dark);
      color: white;
      padding: 32px;
      margin-bottom: 40px;
    }

    .payment-info h3 {
      font-family: 'Prompt', sans-serif;
      font-size: 24px;
      font-weight: 300;
      margin-bottom: 24px;
      color: var(--accent-gold);
    }

    /* Regular Payment Section */
    .regular-payment {
      margin-bottom: 40px;
    }

    .payment-label {
      opacity: 0.7;
    }

    .payment-value {
      font-weight: 500;
    }

    .payment-amount {
      font-size: 28px;
      font-family: 'Prompt', sans-serif;
      font-weight: 300;
      color: var(--accent-gold);
    }

    /* Success Screen */
    .success-screen {
      text-align: center;
      padding: 80px 40px;
    }

    .success-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--accent-gold);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 32px;
      font-size: 40px;
    }

    .success-title {
      font-family: 'Prompt', sans-serif;
      font-size: 42px;
      font-weight: 300;
      color: var(--primary-dark);
      margin-bottom: 16px;
    }

    .success-message {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.8;
      max-width: 500px;
      margin: 0 auto 40px;
    }

    .booking-reference {
      background: #fafafa;
      padding: 24px;
      margin: 40px 0;
      border-left: 3px solid var(--accent-gold);
    }

    .reference-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-secondary);
      margin-bottom: 8px;
    }

    .reference-code {
      font-family: 'Prompt', sans-serif;
      font-size: 24px;
      font-weight: 600;
      color: var(--primary-dark);
    }

    /* Responsive */
    /* Medium Laptop Styles */
    @media (min-width: 1025px) and (max-width: 1366px) {
      .header {
        padding: 35px 0;
        min-height: 130px;
      }

      .logo {
        font-size: 68px;
        letter-spacing: 7px;
        margin-bottom: 14px;
      }

      .tagline {
        font-size: 22px;
        letter-spacing: 5px;
      }

      .logo-image {
        height: 70px;
      }
    }

    /* Tablet Styles */
    @media (min-width: 769px) and (max-width: 1024px) {
      /* Header adjustments for tablet/laptop */
      .header {
        padding: 30px 0;
        min-height: 120px;
      }

      .logo {
        font-size: 40px;
        letter-spacing: 3px;
        margin-bottom: 6px;
      }

      .tagline {
        font-size: 15px;
        letter-spacing: 2px;
      }

      .logo-image {
        height: 45px;
      }

      .progress-wrapper {
        padding: 32px 24px;
        margin-bottom: 50px;
      }

      .progress-steps {
        gap: 15px;
      }

      .step {
        max-width: 100px;
      }

      .step-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
      }

      .step-label {
        font-size: 12px;
      }

      .progress-line {
        left: calc(18% + 18px);
        right: calc(18% + 18px);
        top: 18px;
      }
    }

    /* Mobile Styles - Improved Layout */
    @media (max-width: 768px) {
      body {
        padding: 0;
        margin: 0;
      }

      /* Header Improvements - Keep consistent with tablet */
      .header {
        padding: 20px;
        text-align: center;
        background: linear-gradient(135deg, var(--primary-dark), #2c2c2c);
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        min-height: 100px;
      }

      .logo {
        font-size: 24px;
        margin-bottom: 4px;
        font-family: 'Prompt', sans-serif;
        letter-spacing: 0.5px;
        font-weight: 600;
      }

      .tagline {
        font-size: 12px;
        opacity: 0.85;
        font-family: 'Prompt', sans-serif;
        margin: 0;
        font-weight: 400;
      }

      /* Language Switcher */
      .language-switcher {
        position: fixed;
        top: 16px;
        right: 20px;
        font-size: 14px;
        z-index: 1000;
        font-family: 'Prompt', sans-serif;
      }

      /* Main Container */
      .container {
        padding: 20px 12px;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
        overflow-x: hidden;
      }

      .step-content {
        padding: 20px 16px;
        border-radius: 12px;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        margin-bottom: 20px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
      }
      
      /* Prevent horizontal scroll */
      .form-section, .section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }
      
      /* Form row responsive */
      .form-row {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
      }
      
      .form-group {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-right: 0 !important;
        margin-right: 0 !important;
      }

      .section-title {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
        font-family: 'Prompt', sans-serif;
        color: var(--primary-dark);
        font-weight: 600;
        letter-spacing: 0.3px;
      }

      .time-value {
        font-size: 24px !important;
        font-family: 'Prompt', sans-serif;
        font-weight: 200 !important;
        line-height: 1.2;
        letter-spacing: 0.5px;
      }
      
      /* Additional specificity for Thai time display */
      .time-slot .time-value {
        font-weight: 200 !important;
        font-size: 24px !important;
      }

      .button-group {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
      }

      .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        font-family: 'Prompt', sans-serif;
        border-radius: 10px;
        font-weight: 600;
        letter-spacing: 0.3px;
      }

      /* Step Process Mobile Improvements */
      .progress-wrapper {
        padding: 20px 16px;
        margin-bottom: 24px;
        background: rgba(255,255,255,0.95);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      }

      .progress-steps {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 300px;
        margin: 0 auto;
        position: relative;
      }

      .step {
        flex: 1;
        text-align: center;
        max-width: 80px;
      }

      .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
        font-family: 'Prompt', sans-serif;
        font-weight: 600;
      }

      .step-label {
        font-size: 11px;
        line-height: 1.3;
        margin-top: 8px;
        font-family: 'Prompt', sans-serif;
        font-weight: 500;
        color: var(--text-secondary);
        max-width: 70px;
        margin-left: auto;
        margin-right: auto;
      }

      .step.active .step-label,
      .step.completed .step-label {
        font-weight: 500 !important;
        color: var(--primary-dark) !important;
      }

      /* Time Slots Mobile */
      .time-slots {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 20px !important;
      }

      .time-slot {
        padding: 20px 16px !important;
        border-radius: 8px !important;
        background: white !important;
        border: 2px solid var(--border-light) !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.06) !important;
        transition: all 0.3s ease !important;
      }

      /* Form Elements Mobile */
      .form-group {
        margin-bottom: 16px !important;
      }

      .form-label {
        font-size: 14px !important;
        font-weight: 500 !important;
        margin-bottom: 6px !important;
        font-family: 'Prompt', sans-serif !important;
        color: var(--text-primary) !important;
      }

      .form-input,
      .form-control {
        width: 100% !important;
        padding: 12px 16px !important;
        border: 2px solid var(--border-light) !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        font-family: 'Prompt', sans-serif !important;
        background: white !important;
        transition: border-color 0.3s ease !important;
      }

      .form-input:focus,
      .form-control:focus {
        border-color: var(--accent-gold) !important;
        outline: none !important;
      }

      /* Date Input Mobile Specific */
      input[type="date"] {
        width: calc(100% - 4px) !important;
        padding: 10px 12px !important;
        border: 2px solid var(--border-light) !important;
        border-radius: 8px !important;
        font-size: 14px !important;
        font-family: 'Prompt', sans-serif !important;
        background: white !important;
        box-sizing: border-box !important;
        -webkit-appearance: none !important;
        -moz-appearance: textfield !important;
        appearance: none !important;
        max-width: calc(100vw - 48px) !important;
        overflow: hidden !important;
        margin: 0 !important;
      }
      
      input[type="date"]::-webkit-calendar-picker-indicator {
        background-color: var(--accent-gold);
        border-radius: 3px;
        padding: 4px;
        cursor: pointer;
      }
      
      input[type="date"]:focus {
        border-color: var(--accent-gold) !important;
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1) !important;
      }
      
      /* Extra date input constraints */
      .form-group input[type="date"],
      .date-input,
      input[name*="date"] {
        width: calc(100% - 8px) !important;
        max-width: calc(100vw - 56px) !important;
        box-sizing: border-box !important;
        padding: 10px 12px !important;
        margin: 0 auto !important;
        display: block !important;
      }

      /* Table Selection Mobile */
      .searchable-select {
        width: 100% !important;
      }

      .search-dropdown {
        padding: 12px 16px !important;
        border: 2px solid var(--border-light) !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        font-family: 'Prompt', sans-serif !important;
      }

      .dropdown-content {
        border-radius: 8px !important;
        border: 1px solid var(--border-light) !important;
        max-height: 200px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
      }

      .option {
        padding: 12px 16px !important;
        font-size: 15px !important;
        font-family: 'Prompt', sans-serif !important;
        border-bottom: 1px solid #f0f0f0 !important;
      }

      .option:hover,
      .option.selected {
        background: var(--accent-gold) !important;
        color: white !important;
      }

      /* File Upload Mobile */
      .upload-area {
        padding: 20px !important;
        border: 2px dashed var(--border-light) !important;
        border-radius: 8px !important;
        text-align: center !important;
        background: #fafafa !important;
      }

      .upload-area.dragover {
        border-color: var(--accent-gold) !important;
        background: rgba(201, 169, 110, 0.05) !important;
      }

      /* Success Screen Mobile */
      .success-screen {
        padding: 40px 16px !important;
        text-align: center !important;
      }

      .success-title {
        font-size: 24px !important;
        margin-bottom: 12px !important;
        font-family: 'Prompt', sans-serif !important;
        line-height: 1.3 !important;
      }

      .success-message {
        font-size: 14px !important;
        line-height: 1.5 !important;
        font-family: 'Prompt', sans-serif !important;
        color: var(--text-secondary) !important;
        margin-bottom: 20px !important;
      }

      .booking-summary {
        background: #f8f9fa !important;
        padding: 16px !important;
        margin: 20px 0 !important;
        border-radius: 8px !important;
        text-align: left !important;
      }

      .booking-summary h3 {
        font-size: 16px !important;
        margin-bottom: 16px !important;
        font-family: 'Prompt', sans-serif !important;
      }

      .booking-summary div[style*="display: flex"] {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid #dee2e6 !important;
      }

      .booking-summary span {
        font-size: 13px !important;
        font-family: 'Prompt', sans-serif !important;
      }

      /* General Typography Improvements */
      h1, h2, h3, h4, h5, h6 {
        font-family: 'Prompt', sans-serif !important;
      }

      p, span, div {
        font-family: 'Prompt', sans-serif !important;
      }

      /* Better Button Styles */
      .btn, 
      .btn-primary, 
      .btn-secondary,
      button {
        text-decoration: none !important;
      }

      .btn-primary {
        background: var(--accent-gold) !important;
        border-color: var(--accent-gold) !important;
        color: white !important;
        box-shadow: 0 2px 8px rgba(201, 169, 110, 0.3) !important;
        text-decoration: none !important;
      }

      .btn-secondary {
        background: #6c757d !important;
        border-color: #6c757d !important;
        color: white !important;
        text-decoration: none !important;
      }

      .btn:hover,
      .btn-primary:hover,
      .btn-secondary:hover,
      button:hover {
        text-decoration: none !important;
      }

      .modal {
        width: 95%;
        max-width: 500px;
        margin: 20px auto;
      }

      .modal-header {
        padding: 20px 24px 16px;
        border-bottom: 1px solid var(--border-light);
      }

      .modal-body {
        padding: 24px;
        max-height: 70vh;
        overflow-y: auto;
      }

      .modal-footer {
        padding: 16px 24px 24px;
        border-top: 1px solid var(--border-light);
        gap: 12px;
      }

      .modal-title {
        font-size: 18px !important;
        margin-bottom: 0;
        color: var(--primary-dark);
        font-family: 'Prompt', sans-serif;
      }

      .progress-wrapper {
        padding: 20px 12px;
        margin-bottom: 40px;
      }

      .progress-steps {
        gap: 10px;
        max-width: 100%;
      }

      .step {
        max-width: 80px;
      }

      .step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
        margin-bottom: 8px;
      }

      .step.active .step-number {
        transform: scale(1.05);
      }

      .step.completed .step-number {
        transform: scale(1.02);
      }

      .step-label {
        font-size: 10px;
        line-height: 1.2;
      }

      .progress-line {
        left: calc(20% + 16px);
        right: calc(20% + 16px);
        top: 16px;
      }
    }

    /* Loading State */
    .btn.loading {
      position: relative;
      color: transparent;
      pointer-events: none;
    }

    .btn.loading::after {
      content: '';
      position: absolute;
      width: 16px;
      height: 16px;
      top: 50%;
      left: 50%;
      margin-left: -8px;
      margin-top: -8px;
      border: 2px solid transparent;
      border-top-color: white;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Hide file input */
    input[type="file"] {
      display: none;
    }

    /* Special Price Badges */
    .price-badge {
      display: inline-block;
      padding: 2px 8px;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 600;
      margin-left: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .price-badge.special-price {
      background: rgba(234, 179, 8, 0.15);
      color: #ca8a04;
      border: 1px solid rgba(234, 179, 8, 0.3);
    }

    .price-badge.festival-price {
      background: rgba(219, 39, 119, 0.15);
      color: #be185d;
      border: 1px solid rgba(219, 39, 119, 0.3);
    }

    .price-badge.discount-price {
      background: rgba(34, 197, 94, 0.15);
      color: #16a34a;
      border: 1px solid rgba(34, 197, 94, 0.3);
    }

    .original-price {
      text-decoration: line-through;
      color: var(--text-secondary);
      font-size: 14px;
      margin-right: 8px;
    }

    /* ========================= */
    /* Modal สำหรับแสดงรูปผัง */
    /* ========================= */
    .map-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }

    .map-modal-content {
      background: white;
      border-radius: 12px;
      width: 90%;
      max-width: 1200px;
      height: 90%;
      max-height: 800px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .map-modal-header {
      padding: 20px;
      border-bottom: 1px solid #e0e0e0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(135deg, #c9a96e, #a5885a);
      color: white;
      border-radius: 12px 12px 0 0;
    }

    .map-modal-header h3 {
      margin: 0;
      font-size: 1.5rem;
      font-weight: 600;
    }

    .map-controls {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .map-controls button {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: white;
      padding: 8px 12px;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 14px;
    }

    .map-controls button:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-1px);
    }

    .map-controls .close-btn {
      background: rgba(220, 53, 69, 0.8);
      border-color: rgba(220, 53, 69, 0.9);
    }

    .map-controls .close-btn:hover {
      background: rgba(220, 53, 69, 1);
    }

    .zoom-level {
      background: rgba(255, 255, 255, 0.2);
      padding: 6px 12px;
      border-radius: 6px;
      font-weight: 600;
      min-width: 50px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .map-modal-body {
      flex: 1;
      padding: 20px;
      overflow: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #f8f9fa;
    }

    .map-modal-body img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: none; /* ปิด transition เพื่อให้การเลื่อนนิ่มนวล */
      cursor: default;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      user-select: none; /* ป้องกันการเลือกรูป */
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
    }

    .map-modal-body img.draggable {
      cursor: grab;
    }

    .map-modal-body img.dragging {
      cursor: grabbing;
    }

    /* การทำให้รูปเดิมมี hover effect */
    .map-image {
      transition: all 0.3s ease;
    }

    .map-image:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
    }

    /* ปรับแต่งสำหรับ Modal ในหน้าจอเล็ก */
    @media (max-width: 768px) {
      .map-modal-content {
        width: 95%;
        height: 95%;
      }

      .map-modal-header {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
      }

      .map-modal-header h3 {
        font-size: 1.2rem;
      }

      .map-controls {
        flex-wrap: wrap;
        justify-content: center;
      }

      .map-controls button {
        padding: 10px;
        font-size: 16px;
      }

      .map-modal-body {
        padding: 10px;
      }
    }

    /* ===== RESPONSIVE DESIGN FOR MOBILE ===== */
    
    /* Mobile First - Base styles for mobile */
    @media (max-width: 768px) {
      /* Header responsive with better spacing */
      .header {
        padding: 30px 15px !important;
        min-height: 180px !important;
        background-attachment: scroll !important;
      }
      
      .header h1 {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
        font-weight: 600 !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
      }
      
      .header p {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
        opacity: 0.95 !important;
        line-height: 1.4 !important;
      }
      
      /* Language switcher more elegant */
      .language-switcher {
        top: 12px !important;
        right: 12px !important;
        font-size: 0.8rem !important;
        backdrop-filter: blur(10px) !important;
        background: rgba(255,255,255,0.15) !important;
        border-radius: 20px !important;
        padding: 2px !important;
      }
      
      .language-switcher a {
        padding: 8px 12px !important;
        margin: 0 1px !important;
        border-radius: 18px !important;
        transition: all 0.3s ease !important;
      }
      
      .language-switcher a.active {
        background: rgba(201, 169, 110, 0.9) !important;
        color: white !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
      }
      
      /* Container with better margins */
      .container {
        padding: 12px !important;
        margin: 0 8px !important;
        max-width: 100% !important;
      }
      
      /* Cards with modern styling */
      .card {
        margin: 12px 0 !important;
        padding: 18px !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
      }
      
      /* Form styling improvements */
      .form-group {
        margin-bottom: 18px !important;
      }
      
      .form-label {
        font-size: 0.9rem !important;
        margin-bottom: 6px !important;
        font-weight: 500 !important;
        color: var(--text-primary) !important;
      }
      
      .form-input, .form-control {
        padding: 14px 16px !important;
        font-size: 16px !important;
        border-radius: 12px !important;
        border: 2px solid var(--border-light) !important;
        transition: all 0.3s ease !important;
        background: rgba(255,255,255,0.95) !important;
      }
      
      .form-input:focus, .form-control:focus {
        border-color: var(--accent-gold) !important;
        box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1) !important;
        outline: none !important;
      }
      
      /* Modern button styling */
      .btn {
        padding: 14px 24px !important;
        font-size: 0.95rem !important;
        border-radius: 12px !important;
        width: 100% !important;
        margin-bottom: 8px !important;
        font-weight: 500 !important;
        transition: all 0.3s ease !important;
        border: none !important;
        position: relative !important;
        overflow: hidden !important;
        text-align: center !important;
      }
      
      .btn-primary {
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark)) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3) !important;
      }
      
      .btn-secondary {
        background: rgba(255,255,255,0.9) !important;
        color: var(--text-primary) !important;
        border: 2px solid var(--border-light) !important;
      }
      
      .btn:active {
        transform: translateY(1px) !important;
      }
      
      .btn-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
      }
      
      .btn-group .btn {
        width: 100% !important;
        margin: 0 !important;
      }
      
      /* Enhanced steps design */
      .steps {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-bottom: 25px !important;
        padding: 0 5px !important;
      }
      
      /* Removed step background - using original step design */
      
      /* Removed step.active background - using step-number only */
      
      .step-number {
        font-size: 1rem !important;
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
        margin-right: 12px !important;
        background: rgba(255,255,255,0.2) !important;
        border-radius: 50% !important;
        text-align: center !important;
        font-weight: bold !important;
      }
      
      .step-title {
        font-weight: 500 !important;
        font-size: 0.9rem !important;
      }
      
      /* Enhanced time slots */
      .time-slots {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        margin-bottom: 20px !important;
      }
      
      .time-slot {
        padding: 12px 8px !important;
        font-size: 0.85rem !important;
        text-align: center !important;
        border-radius: 10px !important;
        border: 2px solid var(--border-light) !important;
        background: rgba(255,255,255,0.9) !important;
        transition: all 0.3s ease !important;
        font-weight: 500 !important;
      }
      
      .time-slot.selected {
        background: var(--primary-dark) !important;
        border-color: var(--primary-dark) !important;
        color: white !important;
      }

      .time-slot.selected::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 4px !important;
        height: 100% !important;
        background: var(--accent-gold) !important;
      }
      
      .time-slot:hover:not(.disabled):not(.selected) {
        border-color: var(--accent-gold) !important;
        box-shadow: var(--shadow-md) !important;
        background: white !important;
      }
      
      /* Table selection improvements */
      .searchable-select {
        position: relative !important;
      }
      
      .search-dropdown {
        padding-right: 45px !important;
        border-radius: 12px !important;
        border: 2px solid var(--border-light) !important;
        transition: all 0.3s ease !important;
      }
      
      .dropdown-arrow {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 0.8rem !important;
        color: var(--text-secondary) !important;
        transition: transform 0.3s ease !important;
      }
      
      .searchable-select.open .dropdown-arrow {
        transform: translateY(-50%) rotate(180deg) !important;
      }
      
      .dropdown-content {
        position: absolute !important;
        top: calc(100% + 5px) !important;
        left: 0 !important;
        right: 0 !important;
        max-height: 220px !important;
        z-index: 1000 !important;
        background: white !important;
        border-radius: 12px !important;
        border: 2px solid var(--border-light) !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
        overflow: hidden !important;
      }
      
      .search-input {
        padding: 12px 15px !important;
        font-size: 16px !important;
        border: none !important;
        border-bottom: 1px solid var(--border-light) !important;
        border-radius: 0 !important;
        background: rgba(249,249,249,0.9) !important;
      }
      
      .option {
        padding: 12px 15px !important;
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
      }
      
      .option:hover {
        background: rgba(201, 169, 110, 0.1) !important;
        color: #2c3e50 !important;
        font-weight: 500 !important;
      }
      
      .option:last-child {
        border-bottom: none !important;
      }
      
      /* Selected tables styling */
      .selected-tables {
        margin-bottom: 18px !important;
      }
      
      .selected-table {
        padding: 10px 12px !important;
        margin-bottom: 8px !important;
        border-radius: 10px !important;
        font-size: 0.8rem !important;
        background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05)) !important;
        border: 1px solid rgba(201, 169, 110, 0.3) !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
      }
      
      .remove-table {
        background: rgba(220, 53, 69, 0.1) !important;
        color: #dc3545 !important;
        border: none !important;
        border-radius: 50% !important;
        width: 24px !important;
        height: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.7rem !important;
      }
      
      /* Map styling improvements */
      .map-container {
        margin: 15px 0 !important;
      }
      
      .map-image {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        transition: all 0.3s ease !important;
      }
      
      .map-image:hover {
        box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3) !important;
      }
      
      .map-note {
        font-size: 0.75rem !important;
        text-align: center !important;
        margin-top: 8px !important;
        color: var(--text-secondary) !important;
        line-height: 1.4 !important;
      }
      
      /* Payment section enhancements */
      .payment-info {
        padding: 15px !important;
        margin-bottom: 18px !important;
        background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), rgba(201, 169, 110, 0.02)) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(201, 169, 110, 0.2) !important;
      }
      

      
      /* Upload area improvements */
      .upload-area {
        padding: 25px 15px !important;
        text-align: center !important;
        border-radius: 12px !important;
        border: 2px dashed var(--accent-gold) !important;
        background: rgba(201, 169, 110, 0.02) !important;
        transition: all 0.3s ease !important;
      }
      
      .upload-area:hover {
        background: rgba(201, 169, 110, 0.05) !important;
        border-color: var(--accent-gold-dark) !important;
      }
      
      .upload-icon {
        margin-bottom: 12px !important;
      }
      
      .upload-icon i {
        color: var(--accent-gold) !important;
        font-size: 2.5rem !important;
      }
      
      .upload-text {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
        color: var(--text-primary) !important;
        font-weight: 500 !important;
      }
      
      .upload-subtext {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        color: var(--text-secondary) !important;
      }
      
      /* Transfer details improvements */
      .transfer-details {
        margin-top: 18px !important;
      }
      
      .transfer-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
      }
      
      .transfer-col {
        width: 100% !important;
      }
      
      /* Summary card enhancements */
      .summary-card {
        margin: 18px 0 !important;
        padding: 18px !important;
        background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.03)) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(201, 169, 110, 0.2) !important;
      }
      
      .summary-row {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 4px !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
      }
      
      .summary-row:last-child {
        border-bottom: none !important;
        font-weight: 600 !important;
        background: rgba(201, 169, 110, 0.1) !important;
        border-radius: 8px !important;
        margin-top: 8px !important;
      }
      
      .summary-label {
        font-size: 0.8rem !important;
        color: var(--text-secondary) !important;
        font-weight: 500 !important;
      }
      
      .summary-value {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: var(--text-primary) !important;
      }
      
      /* Instructions improvements */
      .instructions {
        background: rgba(255,255,255,0.95) !important;
        border-radius: 12px !important;
        padding: 15px !important;
        margin: 15px 0 !important;
      }
      
      .instructions ul {
        padding-left: 15px !important;
      }
      
      .instructions li {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 8px !important;
        color: var(--text-primary) !important;
      }
      
      /* Success page improvements */
      .success-container {
        padding: 18px !important;
        margin: 0 8px !important;
        text-align: center !important;
      }
      
      .success-icon {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        background: var(--accent-gold) !important;
        color: white !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 18px !important;
        font-size: 24px !important;
        box-shadow: 0 4px 12px rgba(201, 169, 110, 0.4) !important;
      }

      .success-icon i,
      .success-icon .fas {
        color: white !important;
        font-size: 24px !important;
      }
      
      .booking-details {
        padding: 18px !important;
        margin: 18px 0 !important;
        background: rgba(255,255,255,0.95) !important;
        border-radius: 12px !important;
        border: 1px solid var(--border-light) !important;
      }
      
      .detail-row {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 4px !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
      }
      
      .detail-row:last-child {
        border-bottom: none !important;
      }
      
      .detail-label {
        font-size: 0.8rem !important;
        color: var(--text-secondary) !important;
        font-weight: 500 !important;
      }
      
      .detail-value {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: var(--text-primary) !important;
      }
      
      /* Footer improvements */
      .footer {
        padding: 25px 15px !important;
        text-align: center !important;
        background: var(--primary-dark) !important;
        color: white !important;
        margin-top: 30px !important;
      }
      
      .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
      }
      
      .footer-section {
        text-align: center !important;
      }
      
      .footer-section h4 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
        color: var(--accent-gold) !important;
      }
      
      .footer-section p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        opacity: 0.9 !important;
      }
    }
    
    /* Tablet styles - Enhanced */
    @media (min-width: 769px) and (max-width: 1024px) {
      .container {
        padding: 25px !important;
        max-width: 900px !important;
        margin: 0 auto !important;
      }
      
      .header {
        padding: 70px 30px !important;
        min-height: 250px !important;
      }
      
      .header h1 {
        font-size: 2.8rem !important;
        margin-bottom: 15px !important;
      }
      
      .header p {
        font-size: 1.1rem !important;
        max-width: 600px !important;
        margin: 0 auto 25px !important;
      }
      
      .language-switcher {
        top: 20px !important;
        right: 25px !important;
        font-size: 0.9rem !important;
      }
      
      .language-switcher a {
        padding: 10px 16px !important;
        margin: 0 3px !important;
      }
      
      .card {
        padding: 30px !important;
        margin: 25px 0 !important;
        border-radius: 16px !important;
      }
      
      .steps {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 15px !important;
        margin-bottom: 35px !important;
      }
      
      /* Removed step background - using original design */
      
      .step-number {
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
        font-size: 1.2rem !important;
        margin: 0 auto 10px !important;
      }
      
      .time-slots {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        max-width: 600px !important;
        margin: 0 auto 25px !important;
      }
      
      .time-slot {
        padding: 18px 15px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
      }
      
      .transfer-row {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px !important;
      }
      
      .transfer-col {
        flex: 1 !important;
      }
      
      .btn-group {
        display: flex !important;
        flex-direction: row !important;
        gap: 15px !important;
        justify-content: center !important;
      }
      
      .btn-group .btn {
        flex: 1 !important;
        max-width: 200px !important;
      }
      
      .payment-info {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 25px !important;
      }
      

      
      .summary-card {
        max-width: 600px !important;
        margin: 25px auto !important;
      }
      
      .summary-row {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: left !important;
        padding: 15px 0 !important;
      }
      
      .footer-content {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        text-align: center !important;
      }
    }
    
    /* Desktop styles - Enhanced */
    @media (min-width: 1025px) {
      .container {
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 40px !important;
      }
      
      .header {
        padding: 100px 40px !important;
        min-height: 350px !important;
      }
      
      .header h1 {
        font-size: 3.5rem !important;
        margin-bottom: 20px !important;
        font-weight: 700 !important;
      }
      
      .header p {
        font-size: 1.2rem !important;
        max-width: 700px !important;
        margin: 0 auto 30px !important;
      }
      
      .language-switcher {
        top: 25px !important;
        right: 40px !important;
        font-size: 1rem !important;
      }
      
      .language-switcher a {
        padding: 12px 20px !important;
        margin: 0 5px !important;
      }
      
      .card {
        padding: 40px !important;
        margin: 30px 0 !important;
        border-radius: 20px !important;
        box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important;
      }
      
      .steps {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 30px !important;
        margin-bottom: 40px !important;
        max-width: 800px !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }
      
      .step {
        flex: 1 !important;
        text-align: center !important;
        padding: 25px 20px !important;
        border-radius: 16px !important;
        transition: all 0.3s ease !important;
      }
      
      /* Remove step hover effect for mobile */
      .step:hover {
        transform: none !important;
        box-shadow: inherit !important;
      }
      
      .step-number {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        font-size: 16px !important;
        margin: 0 auto 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
      }
      
      .step-title {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
      }
      
      .time-slots {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        max-width: 700px !important;
        margin: 0 auto 30px !important;
      }
      
      .time-slot {
        padding: 20px 25px !important;
        font-size: 1.1rem !important;
        border-radius: 14px !important;
        transition: all 0.3s ease !important;
      }
      
      .time-slot:hover:not(.disabled) {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3) !important;
      }
      
      .form-input, .form-control {
        padding: 16px 20px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
        transition: all 0.3s ease !important;
      }
      
      .form-input:focus, .form-control:focus {
        transform: translateY(-1px) !important;
        box-shadow: 0 8px 25px rgba(201, 169, 110, 0.15) !important;
      }
      
      .btn {
        padding: 16px 32px !important;
        font-size: 1rem !important;
        border-radius: 14px !important;
        transition: all 0.3s ease !important;
        font-weight: 600 !important;
      }
      
      .btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
      }
      
      .btn-group {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px !important;
        justify-content: center !important;
        max-width: 500px !important;
        margin: 0 auto !important;
      }
      
      .btn-group .btn {
        flex: 1 !important;
      }
      
      .transfer-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
      }
      
      .payment-info {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
        padding: 30px !important;
      }
      

      
      .upload-area {
        padding: 40px 30px !important;
        border-radius: 16px !important;
        transition: all 0.3s ease !important;
      }
      
      .upload-area:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 30px rgba(201, 169, 110, 0.2) !important;
      }
      
      .summary-card {
        max-width: 700px !important;
        margin: 30px auto !important;
        padding: 30px !important;
      }
      
      .payment-confirm-section {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 20px;
        border: 1px solid var(--border-light);
      }

      .payment-confirm-section h4 {
        font-size: 16px !important;
        margin-bottom: 16px !important;
        color: var(--accent-gold) !important;
        font-family: 'Prompt', sans-serif;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .summary-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid #e9ecef !important;
        gap: 12px;
      }
      
      .summary-row:last-child {
        border-bottom: none !important;
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark)) !important;
        color: white !important;
        padding: 16px !important;
        border-radius: 8px !important;
        margin-top: 12px !important;
      }

      .summary-label {
        font-size: 12px !important;
        font-weight: 500 !important;
        color: var(--text-secondary) !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        flex-shrink: 0;
        min-width: 100px;
        font-family: 'Prompt', sans-serif;
      }

      .summary-value {
        font-size: 13px !important;
        font-weight: 600 !important;
        color: var(--text-primary) !important;
        text-align: right;
        word-break: break-word;
        font-family: 'Prompt', sans-serif;
      }

      .summary-row:last-child .summary-label,
      .summary-row:last-child .summary-value {
        color: white !important;
        font-weight: 700 !important;
      }
      
      .searchable-select {
        max-width: 600px !important;
        margin: 0 auto !important;
      }
      
      .dropdown-content {
        max-height: 300px !important;
        border-radius: 14px !important;
      }
      
      .option {
        padding: 15px 20px !important;
        font-size: 0.95rem !important;
        transition: all 0.2s ease !important;
      }
      
      .option:hover {
        background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05)) !important;
        padding-left: 25px !important;
        color: #2c3e50 !important;
        font-weight: 500 !important;
      }
      
      .footer-content {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px !important;
        text-align: center !important;
      }
      
      .footer-section h4 {
        font-size: 1.2rem !important;
        margin-bottom: 15px !important;
      }
      
      .footer-section p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
      }
    }
    
    /* Large mobile landscape and Small tablet portrait */
    @media (max-width: 480px) {
      .header h1 {
        font-size: 1.6rem !important;
      }
      
      .header p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
      }
      
      .language-switcher {
        font-size: 0.75rem !important;
        top: 8px !important;
        right: 8px !important;
      }
      
      .language-switcher a {
        padding: 6px 8px !important;
      }
      
      .container {
        margin: 0 5px !important;
        padding: 8px !important;
      }
      
      .card {
        padding: 12px !important;
        margin: 8px 0 !important;
        border-radius: 12px !important;
      }
      
      .time-slots {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
      }
      
      .time-slot {
        padding: 14px 8px !important;
        font-size: 0.8rem !important;
      }
      

      
      .btn {
        padding: 16px 20px !important;
        font-size: 0.95rem !important;
      }
      
      .form-input, .form-control {
        padding: 14px 12px !important;
        font-size: 16px !important;
      }
      
      .step {
        padding: 10px !important;
      }
      
      .step-number {
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
        font-size: 0.9rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
      }
      
      .step-title {
        font-size: 0.8rem !important;
      }
      
      .upload-area {
        padding: 20px 10px !important;
      }
      
      .upload-icon i {
        font-size: 2rem !important;
      }
      
      .upload-text {
        font-size: 0.8rem !important;
      }
      
      .upload-subtext {
        font-size: 0.7rem !important;
      }
    }
    
    /* Ultra-wide desktop screens */
    @media (min-width: 1400px) {
      .container {
        max-width: 1400px !important;
        padding: 50px !important;
      }
      
      .header {
        padding: 120px 50px !important;
        min-height: 400px !important;
      }
      
      .header h1 {
        font-size: 4rem !important;
      }
      
      .header p {
        font-size: 1.3rem !important;
        max-width: 800px !important;
      }
      
      .card {
        padding: 50px !important;
        border-radius: 24px !important;
      }
      
      .steps {
        max-width: 1000px !important;
        gap: 40px !important;
      }
      
      .time-slots {
        max-width: 800px !important;
        gap: 25px !important;
      }
      
      .payment-info {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
        padding: 40px !important;
      }
      
      .summary-card {
        max-width: 800px !important;
        padding: 40px !important;
      }
    }
    
    /* High DPI / Retina displays */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .header h1 {
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
      }
      
      .btn, .form-input, .time-slot {
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
      }
      
      .map-image {
        image-rendering: -webkit-optimize-contrast !important;
        image-rendering: crisp-edges !important;
      }
    }
    
    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
      .card {
        background: rgba(40, 40, 40, 0.95) !important;
        color: #f0f0f0 !important;
      }
      
      .form-input, .form-control {
        background: rgba(60, 60, 60, 0.9) !important;
        color: #f0f0f0 !important;
        border-color: rgba(255,255,255,0.2) !important;
      }
      
      .option {
        background: rgba(50, 50, 50, 0.9) !important;
        color: #f0f0f0 !important;
      }
      
      .option:hover {
        background: rgba(201, 169, 110, 0.2) !important;
        color: #2c3e50 !important;
        font-weight: 600 !important;
      }
    }
    
    /* Reduced motion preferences */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      
      .btn:hover, .time-slot:hover, .step:hover {
        transform: none !important;
      }

      /* Force success icon to be gold with white check */
      .success-icon,
      .success-icon i,
      .success-icon .fas {
        background: var(--accent-gold) !important;
        color: white !important;
      }
    }
    
    /* Mobile form and input improvements */
    @media (max-width: 768px) {
      /* Form styling to match tablet */
      .form-group {
        margin-bottom: 20px;
      }

      .form-group label {
        font-size: 15px;
        font-family: 'Prompt', sans-serif;
        font-weight: 500;
        color: var(--text-primary);
        margin-bottom: 8px;
        display: block;
      }

      .form-group input,
      .form-group select,
      .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        font-family: 'Prompt', sans-serif;
        border: 1.5px solid #e0e0e0;
        border-radius: 8px;
        background: white;
        transition: all 0.3s ease;
      }

      .form-group input:focus,
      .form-group select:focus,
      .form-group textarea:focus {
        border-color: var(--primary-dark);
        box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
        outline: none;
      }

      /* Time slots consistency */
      .time-slot {
        padding: 16px 12px;
        font-family: 'Prompt', sans-serif;
        border-radius: 10px;
      }

      .time-slot .time-value {
        font-size: 28px;
        font-weight: 600;
        font-family: 'Prompt', sans-serif;
      }

      .time-slot .time-label {
        font-size: 13px;
        font-family: 'Prompt', sans-serif;
        font-weight: 400;
      }

      /* Table options consistency */
      .option {
        padding: 20px 16px;
        margin-bottom: 16px;
        border-radius: 10px;
        font-family: 'Prompt', sans-serif;
      }

      .option h3 {
        font-size: 18px;
        font-family: 'Prompt', sans-serif;
        font-weight: 600;
        margin-bottom: 8px;
      }

      .option p {
        font-size: 14px;
        font-family: 'Prompt', sans-serif;
        font-weight: 400;
        line-height: 1.4;
      }

      .option .price {
        font-size: 20px;
        font-family: 'Prompt', sans-serif;
        font-weight: 600;
      }

      /* Payment details consistency */
      .payment-details,
      .booking-summary {
        font-family: 'Prompt', sans-serif;
      }

      .payment-details h3,
      .booking-summary h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 16px;
      }

      .payment-details p,
      .booking-summary p {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
      }

      /* Touch states */
      .time-slot:active,
      .time-slot:focus {
        outline: none;
        background: white;
        transform: none;
      }
      
      .time-slot.selected:active,
      .time-slot.selected:focus {
        background: var(--primary-dark);
        color: white;
        transform: none;
      }

      /* Success modal consistency */
      .success-modal h2 {
        font-family: 'Prompt', sans-serif;
        font-weight: 600;
        font-size: 20px;
      }

      .success-modal p {
        font-family: 'Prompt', sans-serif;
        font-weight: 400;
        font-size: 15px;
        line-height: 1.5;
      }

      /* General text consistency */
      h1, h2, h3, h4, h5, h6 {
        font-family: 'Prompt', 'Prompt', sans-serif !important;
      }

      p, span, div, label {
        font-family: 'Prompt', 'Prompt', sans-serif;
      }

      .btn, button {
        font-family: 'Prompt', 'Prompt', sans-serif !important;
      }

      /* Override for Thai language on mobile */
      html[lang="th"] h1, 
      html[lang="th"] h2, 
      html[lang="th"] h3, 
      html[lang="th"] h4, 
      html[lang="th"] h5, 
      html[lang="th"] h6,
      html[lang="th"] p, 
      html[lang="th"] span, 
      html[lang="th"] div, 
      html[lang="th"] label,
      html[lang="th"] .btn, 
      html[lang="th"] button,
      html[lang="th"] input,
      html[lang="th"] textarea,
      html[lang="th"] select {
        font-family: 'Prompt', sans-serif !important;
      }
      
      /* Remove webkit tap highlight */
      .time-slot {
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
      }
    }

    /* Focus management for accessibility */
    @media (max-width: 768px) {
      .btn:focus,
      .form-input:focus,
      .form-control:focus {
        outline: 3px solid var(--accent-gold) !important;
        outline-offset: 2px !important;
      }
      
      .language-switcher a:focus {
        outline: 2px solid var(--accent-gold) !important;
        outline-offset: 1px !important;
      }

      /* Ensure success icon stays gold on mobile */
      .success-icon {
        background: var(--accent-gold) !important;
        color: white !important;
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 18px !important;
        box-shadow: 0 4px 12px rgba(201, 169, 110, 0.4) !important;
      }

      .success-icon i,
      .success-icon .fas,
      .success-icon .fa-check {
        color: white !important;
        font-size: 24px !important;
        background: transparent !important;
      }
    }
    
    /* Landscape orientation specific */
    @media (max-width: 768px) and (orientation: landscape) {
      .header {
        padding: 15px !important;
        min-height: 100px !important;
      }
      
      .header h1 {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
      }
      
      .header p {
        font-size: 0.8rem !important;
        margin-bottom: 10px !important;
      }
      
      .time-slots {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
      }
      
      .time-slot {
        padding: 10px 6px !important;
        font-size: 0.75rem !important;
      }
      
      .container {
        padding: 8px !important;
      }
      
      .card {
        padding: 12px !important;
        margin: 6px 0 !important;
      }
      
      .btn {
        padding: 10px 20px !important;
      }
      
      .steps {
        flex-direction: row !important;
        gap: 8px !important;
        margin-bottom: 15px !important;
      }
      
      .step {
        padding: 8px 6px !important;
      }
      
      .step-number {
        width: 24px !important;
        height: 24px !important;
        line-height: 24px !important;
        font-size: 0.7rem !important;
        margin-bottom: 5px !important;
      }
      
      .step-title {
        font-size: 0.7rem !important;
      }
    }
    
    /* Ensure proper touch targets */
    @media (pointer: coarse) {
      .btn, .time-slot, .option {
        min-height: 44px !important;
        min-width: 44px !important;
      }
      
      .language-switcher a {
        min-height: 36px !important;
        min-width: 36px !important;
      }
    }
    
    /* Fix iOS safari input zoom issue */
    @supports (-webkit-touch-callout: none) {
      .form-input, .form-control, .search-input {
        font-size: 16px !important;
      }
    }
    
    /* Improve scrolling on mobile */
    @media (max-width: 768px) {
      body {
        -webkit-overflow-scrolling: touch;
      }
      
      .dropdown-content {
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
      }
      
      /* Better text selection */
      .selected-table, .summary-row {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
      }
      
      /* Improve button hover states for touch */
      .btn:hover {
        transform: none !important;
      }
      
      .btn:active {
        transform: scale(0.98) !important;
      }
      
      /* Hide scrollbars but keep functionality */
      .dropdown-content::-webkit-scrollbar {
        width: 3px;
      }
      
      .dropdown-content::-webkit-scrollbar-track {
        background: transparent;
      }
      
      .dropdown-content::-webkit-scrollbar-thumb {
        background: rgba(201, 169, 110, 0.3);
        border-radius: 3px;
      }
    }
    
    /* Orientation handling */
    @media (max-width: 768px) and (orientation: landscape) {
      .header {
        padding: 20px !important;
        min-height: 120px !important;
      }
      
      .header h1 {
        font-size: 1.8rem !important;
      }
      
      .time-slots {
        grid-template-columns: repeat(2, 1fr) !important;
      }
      
      .container {
        padding: 10px !important;
      }
      
      .card {
        padding: 15px !important;
        margin: 10px 0 !important;
      }
    }
    
    /* Print styles */
    @media print {
      .language-switcher,
      .btn:not(.btn-secondary),
      .upload-area,
      .transfer-details {
        display: none !important;
      }
      
      body {
        background: white !important;
        color: black !important;
      }
      
      .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
      }
      
      .header {
        background: white !important;
        color: black !important;
        border-bottom: 2px solid #333 !important;
      }
    }

    /* Progress Steps Mobile Responsive */
    @media (max-width: 768px) {
      .progress-wrapper {
        padding: 15px 10px;
        margin-bottom: 25px;
      }

      .progress-steps {
        max-width: 250px;
      }

      .progress-line {
        top: 14px !important;
        left: 35px !important;
        right: 35px !important;
        height: 1px !important;
      }

      .progress-wrapper .step-number {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
        border: 1px solid #e2e8f0 !important;
        margin: 0 auto 6px !important;
      }

      .step-label {
        font-size: 10px !important;
        max-width: 50px !important;
      }
    }

    @media (max-width: 480px) {
      .progress-wrapper {
        padding: 12px 8px;
      }

      .progress-steps {
        max-width: 200px;
      }

      .progress-line {
        top: 12px !important;
        left: 28px !important;
        right: 28px !important;
        height: 1px !important;
      }

      .progress-wrapper .step-number {
        width: 24px !important;
        height: 24px !important;
        font-size: 10px !important;
        border: 1px solid #e2e8f0 !important;
        margin: 0 auto 4px !important;
      }

      .step-label {
        font-size: 9px !important;
        max-width: 40px !important;
      }
    }

    /* FINAL OVERRIDE - Large Desktop Circular Step Process */
    .progress-wrapper .step-number {
      width: 80px !important;
      height: 80px !important;
      border-radius: 50% !important;
      background: white !important;
      border: 5px solid #e2e8f0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 24px !important;
      font-weight: 700 !important;
      color: #64748b !important;
      margin: 0 auto 15px !important;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    }

    /* Override for tablet and mobile */
    @media (max-width: 768px) {
      .progress-wrapper .step-number {
        width: 28px !important;
        height: 28px !important;
        font-size: 14px !important;
        border: 1px solid #e2e8f0 !important;
        margin: 0 auto 6px !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
      }

      .progress-wrapper .step.completed .step-number,
      .progress-wrapper .step.active .step-number {
        font-size: 14px !important;
      }
    }

    @media (max-width: 480px) {
      .progress-wrapper .step-number {
        width: 24px !important;
        height: 24px !important;
        font-size: 12px !important;
        border: 1px solid #e2e8f0 !important;
        margin: 0 auto 4px !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
      }

      .progress-wrapper .step.completed .step-number,
      .progress-wrapper .step.active .step-number {
        font-size: 12px !important;
      }
    }

    .progress-wrapper .step.active .step-number {
      background: var(--accent-gold) !important;
      border-color: var(--accent-gold) !important;
      color: white !important;
      box-shadow: 0 8px 24px rgba(201, 169, 110, 0.5) !important;
    }

    .progress-wrapper .step.completed .step-number {
      background: var(--primary-dark) !important;
      border-color: var(--primary-dark) !important;
      color: white !important;
      box-shadow: 0 6px 20px rgba(26, 26, 26, 0.4) !important;
    }

    .progress-wrapper .step.completed .step-number::before {
      content: none !important;
      display: none !important;
    }

    /* DISABLE ALL STEP PROCESS INTERACTIONS */
    .progress-wrapper .step,
    .progress-wrapper .step-number,
    .progress-wrapper .step-label {
      pointer-events: none !important;
      cursor: default !important;
    }

    /* Remove ALL hover/focus/active effects for step process */
    .progress-wrapper .step:hover,
    .progress-wrapper .step:focus,
    .progress-wrapper .step:active,
    .progress-wrapper .step-number:hover,
    .progress-wrapper .step-number:focus,
    .progress-wrapper .step-number:active,
    .progress-wrapper .step.active:hover,
    .progress-wrapper .step.completed:hover,
    .progress-wrapper .step.active .step-number:hover,
    .progress-wrapper .step.completed .step-number:hover,
    .progress-wrapper .step-label:hover,
    .progress-wrapper .step-label:focus {
      transform: none !important;
      box-shadow: inherit !important;
      background: inherit !important;
      border: inherit !important;
      border-radius: 50% !important;
      color: inherit !important;
      transition: none !important;
      animation: none !important;
    }

    /* Ensure steps remain circular (no size override) */
    .progress-wrapper .step-number,
    .progress-wrapper .step-number:hover,
    .progress-wrapper .step-number:focus,
    .progress-wrapper .step-number:active {
      border-radius: 50% !important;
      transition: none !important;
    }

    /* Thai language specific font styling */
    html[lang="th"] body,
    html[lang="th"] h1,
    html[lang="th"] h2,
    html[lang="th"] h3,
    html[lang="th"] h4,
    html[lang="th"] h5,
    html[lang="th"] h6,
    html[lang="th"] p,
    html[lang="th"] span,
    html[lang="th"] div,
    html[lang="th"] label,
    html[lang="th"] button,
    html[lang="th"] .btn,
    html[lang="th"] input,
    html[lang="th"] textarea,
    html[lang="th"] select {
      font-family: 'Prompt', sans-serif !important;
    }

    /* Ensure Thai text always uses Prompt */
    [lang="th"] *,
    .thai-text {
      font-family: 'Prompt', sans-serif !important;
    }

    .reservation-site-footer {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 20;
      padding: 0;
    }

    .privacy-policy-trigger {
      display: inline-flex;
      gap: 7px;
      align-items: center;
      padding: 8px 16px;
      border: 1px solid rgba(201, 169, 110, 0.3);
      border-radius: 20px;
      background: rgba(0, 0, 0, 0.7);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      color: var(--accent-gold);
      font-family: inherit;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .privacy-policy-trigger:hover,
    .privacy-policy-trigger:focus-visible {
      color: var(--accent-gold);
      border-color: var(--accent-gold);
      background: rgba(201, 169, 110, 0.2);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transform: translateY(-2px);
    }

    body.privacy-modal-open {
      overflow: hidden;
    }

    .privacy-policy-modal {
      position: fixed;
      inset: 0;
      z-index: 250000;
      display: grid;
      place-items: center;
      padding: 22px;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .privacy-policy-modal.is-open {
      visibility: visible;
      opacity: 1;
    }

    .privacy-policy-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(7, 7, 7, 0.78);
      backdrop-filter: blur(5px);
    }

    .privacy-policy-dialog {
      position: relative;
      display: flex;
      flex-direction: column;
      width: min(100%, 880px);
      max-height: min(86vh, 820px);
      background: #fdfcf9;
      border: 1px solid rgba(201, 169, 110, 0.9);
      border-radius: 2px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
      transform: translateY(12px);
      transition: transform 0.25s ease;
    }

    .privacy-policy-modal.is-open .privacy-policy-dialog {
      transform: translateY(0);
    }

    .privacy-policy-dialog::before {
      content: "";
      position: absolute;
      inset: 7px;
      border: 1px solid rgba(201, 169, 110, 0.25);
      pointer-events: none;
    }

    .privacy-policy-dialog-header {
      position: relative;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      padding: 27px 30px 23px;
      color: #25221d;
      background: #f8f5ef;
      border-bottom: 1px solid var(--accent-gold);
    }

    .privacy-policy-eyebrow {
      display: block;
      margin-bottom: 5px;
      color: var(--accent-gold);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.24em;
    }

    .privacy-policy-dialog-header h2 {
      margin: 0;
      color: #25221d;
      font-size: clamp(20px, 3vw, 27px);
      font-weight: 400;
      letter-spacing: 0.02em;
    }

    .privacy-policy-close {
      width: 35px;
      height: 35px;
      padding: 0;
      flex: 0 0 auto;
      border: 1px solid rgba(155, 121, 61, 0.65);
      border-radius: 0;
      background: transparent;
      color: #39342b;
      font-size: 25px;
      font-weight: 200;
      line-height: 1;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .privacy-policy-close:hover,
    .privacy-policy-close:focus-visible {
      background: var(--accent-gold);
      color: #25221d;
    }

    .privacy-policy-dialog-content {
      position: relative;
      padding: 28px 34px;
      overflow-y: auto;
      color: #333;
      font-size: 14px;
      line-height: 1.8;
      scrollbar-color: var(--accent-gold) #eeeae2;
      scrollbar-width: thin;
    }

    .privacy-policy-dialog-content h2,
    .privacy-policy-dialog-content h3 {
      margin: 25px 0 8px;
      color: #1d1d1d;
      font-size: 17px;
      font-weight: 600;
    }

    .privacy-policy-dialog-content p {
      margin: 0 0 13px;
    }

    .privacy-policy-dialog-content ul,
    .privacy-policy-dialog-content ol {
      margin: 0 0 18px;
      padding-left: 22px;
    }

    .privacy-policy-dialog-content a {
      color: #7a5b25;
    }

    .privacy-policy-dialog-footer {
      position: relative;
      padding: 16px 30px 20px;
      text-align: right;
      border-top: 1px solid #e4dfd5;
      background: #f8f5ef;
    }

    .privacy-policy-done {
      min-width: 120px;
      padding: 10px 20px;
      border: 1px solid #292929;
      border-radius: 0;
      background: #292929;
      color: #fff;
      font-family: inherit;
      font-size: 13px;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .privacy-policy-done:hover,
    .privacy-policy-done:focus-visible {
      border-color: #9b793d;
      background: #9b793d;
    }

    .privacy-policy-page {
      width: min(100% - 32px, 960px);
      margin: 28px auto 40px;
    }

    .privacy-policy-card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
      overflow: hidden;
    }

    .privacy-policy-heading {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 24px 30px;
      color: #fff;
      background: linear-gradient(135deg, #1a1a1a, #3b3428);
      border-bottom: 3px solid var(--accent-gold);
    }

    .privacy-policy-heading h1 {
      margin: 0;
      font-size: clamp(22px, 4vw, 32px);
    }

    .privacy-policy-heading i {
      color: var(--accent-gold);
      font-size: 24px;
    }

    .privacy-policy-content {
      padding: 30px;
      color: #333;
      font-size: 15px;
      line-height: 1.8;
    }

    .privacy-policy-content h2,
    .privacy-policy-content h3 {
      margin: 26px 0 8px;
      color: #1a1a1a;
      line-height: 1.35;
    }

    .privacy-policy-content p {
      margin: 0 0 14px;
    }

    .privacy-policy-content ul,
    .privacy-policy-content ol {
      margin: 0 0 18px;
      padding-left: 24px;
    }

    .privacy-policy-content a {
      color: #8a682c;
    }

    @media (max-width: 600px) {
      .reservation-site-footer {
        right: 15px;
        bottom: 15px;
      }

      .privacy-policy-trigger {
        padding: 6px 10px;
        font-size: 12px;
      }

      .privacy-policy-modal {
        padding: 12px;
      }

      .privacy-policy-dialog {
        max-height: 90vh;
      }

      .privacy-policy-dialog-header {
        padding: 22px 20px 18px;
      }

      .privacy-policy-dialog-content {
        padding: 22px 20px;
        font-size: 13px;
      }

      .privacy-policy-dialog-footer {
        padding: 13px 20px 17px;
      }

      .privacy-policy-heading,
      .privacy-policy-content {
        padding: 20px;
      }
    }
