/**
 * Modern Order Form Styles
 * Bootstrap 5.3+ Compatible
 * Updated: 2026
 */

/* =========================================================
   CATEGORY ICON FILTER BAR - Platform Filters
   ========================================================== */
.cat-icon-filter-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin: 0 0 15px 0;
  justify-content: flex-start;
  width: 100%;
}

.catf-btn {
  flex: none;
  box-sizing: border-box;
  position: relative;
  border: none;
  color: #333;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08),
              0 1px 3px rgba(0, 0, 0, 0.05),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.catf-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  border-radius: 12px;
}

.catf-btn i { 
  font-size: 16px; 
  line-height: 1;
  z-index: 2;
  position: relative;
}

.catf-btn span {
  pointer-events: none;
  z-index: 2;
  position: relative;
}

.catf-btn:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  box-shadow: 0 8px 20px rgba(0, 86, 179, 0.15),
              0 1px 3px rgba(0, 0, 0, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #0056b3;
}

.catf-btn:active {
  box-shadow: 0 2px 8px rgba(0, 86, 179, 0.15),
              inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ACTIVE STATE - 3D EFFECT */
.catf-btn.active {
  background: linear-gradient(135deg, #0066cc 0%, #0056b3 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 86, 179, 0.35),
              0 4px 12px rgba(0, 86, 179, 0.25),
              inset 0 -2px 4px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(0, 86, 179, 0.3);
  position: relative;
  z-index: 10;
}

.catf-btn.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  border-radius: 12px;
}

.catf-btn.active i {
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.catf-btn.active:hover {
  background: linear-gradient(135deg, #0073cc 0%, #005ba3 100%);
  box-shadow: 0 16px 32px rgba(0, 86, 179, 0.4),
              0 6px 16px rgba(0, 86, 179, 0.3),
              inset 0 -2px 4px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.catf-btn.active:active {
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25),
              inset 0 2px 4px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.catf-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.2),
              0 4px 15px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   ANNOUNCEMENT CONTAINER
   ========================================================== */
.announcement-container {
  margin: 20px auto !important;
  padding: 20px !important;
  color: #ffffff !important;
  border: 0.5px solid #0e4c75 !important;
  border-radius: 15px !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4) !important;
  text-align: center !important;
}

.announcement-heading {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #00c4ff !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
}

.announcement-body {
  font-size: 1rem !important;
  font-weight: 500 !important;
  text-align: justify !important;
  word-spacing: -1px !important;
  line-height: 1.5 !important;
  padding: 10px !important;
  margin: 0 !important;
}

.emoji-highlight {
  font-size: 1.5rem !important;
  vertical-align: middle !important;
  margin-right: 10px !important;
}

/* =========================================================
   PAGE TITLE
   ========================================================== */
.page-title h1 {
  margin-bottom: 5px; 
}

.page-title .border-line {
  height: 5px;
  width: 250px;
  background: linear-gradient(45deg, #eca28d, #f98c6b) !important;
  position: relative;
  border-radius: 30px; 
}

.page-title .border-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: -2.7px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #fa6d7e;
  animation: moveIcon 6s linear infinite;
}

@keyframes moveIcon {
  from {
    transform: translateX(0);
  }
  to { 
    transform: translateX(250px);
  }
}

/* =========================================================
   ORDER RESUME SECTION
   ========================================================== */
#order_resume.order-resume-section {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-description {
  min-height: 120px;
  max-height: 300px;
  overflow-y: auto;
  resize: vertical;
}

/* =========================================================
   DRIP FEED SECTION
   ========================================================== */
.drip-feed-label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.custom-switch-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-switch-indicator {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
  background-color: #ccc;
  border-radius: 24px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.custom-switch-indicator::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.custom-switch-input:checked + .custom-switch-indicator {
  background-color: #0056b3;
}

.custom-switch-input:checked + .custom-switch-indicator::before {
  transform: translateX(24px);
}

.custom-switch-input:focus + .custom-switch-indicator {
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.custom-switch-description {
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================================
   TOTAL CHARGE SECTION
   ========================================================== */
.total_charge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 
    0 6px 16px rgba(0, 86, 179, 0.25),
    0 2px 6px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  color: #ffffff !important;
  overflow: hidden;
}

.charge_number {
  color: #ffffff !important;
  font-weight: 700;
}

.custom-rate-text {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 12px;
}

.insufficient-funds-alert {
  border-radius: 8px;
  margin-top: 10px;
  padding: 12px 16px;
}

/* =========================================================
   FORM LABELS & INPUTS
   ========================================================== */
.text-lbl {
  margin-top: 0px;
  margin-bottom: 2px;
  font-weight: 550;
  color: #fff;
}

label {
  color: #fff;
}

/* Modern Form Inputs - Enhanced Bootstrap 5 Styling */
.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 16px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #0056b3;
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.15);
  outline: none;
}

.form-control::placeholder {
  color: #999;
  opacity: 1;
}

/* Form Validation Styles */
.form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:invalid ~ .invalid-feedback,
.form-control.is-valid ~ .valid-feedback,
.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Modern Checkbox and Radio Styles */
.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  vertical-align: top;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0.25em;
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background-color: #0056b3;
  border-color: #0056b3;
}

.form-check-input:focus {
  border-color: #0056b3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.15);
}

.form-check-label {
  color: #fff !important;
  margin-left: 0.5rem;
}

/* Modern Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #04a9f4 0%, #0288d1 100%);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(4, 169, 244, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0288d1 0%, #01579b 100%);
  box-shadow: 0 6px 12px rgba(4, 169, 244, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(4, 169, 244, 0.3);
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(4, 169, 244, 0.5);
}

.btn-submit-order {
  min-width: 180px;
  font-size: 15px;
  padding: 14px 28px;
}

.btn-submit-order i {
  font-size: 16px;
}

/* Updates Badge */
.updates-badge {
  background: #04a9f4 !important;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

/* Updates Content Section */
.updates-content-section {
  max-height: calc(80vh - 180px);
  overflow-y: auto;
}

.updates-content-section::-webkit-scrollbar {
  width: 8px;
}

.updates-content-section::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.updates-content-section::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.updates-content-section::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   SELECT2 ICON STYLES (For Dynamic JS Content)
   ========================================================== */
.cat-icon-img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 3px;
}

.service-icon {
  margin-right: 8px;
}

/* =========================================================
   SEARCH RESULTS STYLING
   ========================================================== */
.search-results-container {
  padding: 10px;
}

.search-results-header {
  padding: 8px 12px;
  background: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.search-result-item {
  padding: 12px;
  margin-bottom: 8px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-result-item:hover {
  background: #f0f8ff;
  border-color: #0056b3;
  transform: translateX(5px);
}

.search-result-content {
  flex: 1;
}

.search-result-title {
  font-weight: 600;
  color: #0056b3;
  margin-bottom: 4px;
}

.search-result-id {
  background: #0056b3;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
  margin-right: 5px;
}

.search-result-meta {
  font-size: 12px;
  color: #666;
}

.search-no-results {
  padding: 20px;
  text-align: center;
  color: #999;
}

.search-no-results i {
  font-size: 32px;
  margin-bottom: 10px;
  opacity: 0.5;
}

/* Modern Modal Styles */
.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 24px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.modal-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.btn-close {
  background-color: transparent;
  border: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.btn-close:hover {
  opacity: 1;
}

/* Enhanced Alert Styles */
.alert {
  border-radius: 8px;
  border: none;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border-left: 4px solid #ffc107;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  padding: 0.5rem;
}

/* =========================================================
   GLOBAL SEARCH STYLES
   ========================================================== */
.global-search-wrapper {
  position: relative;
}

/* Global Search Styles */
#globalServiceSearch {
  transition: all 0.3s ease;
}

#globalServiceSearch:focus {
  border-color: #0056b3 !important;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
  outline: none;
}

.search-results-dropdown {
  display: none;
  position: relative;
  margin-top: 10px;
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid #ddd;
}

#searchResults {
  z-index: 1000;
  animation: slideDown 0.3s ease;
}

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

#searchResults::-webkit-scrollbar {
  width: 8px;
}

#searchResults::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

#searchResults::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

#searchResults::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* =========================================================
   ORDER FORM CARD STYLING
   ========================================================== */
.order-form-card {
  border: none;
  border-radius: 12px;
  background: #003a74;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.order-form-header {
  padding: 20px 30px;
  border-bottom: 2px solid #04a9f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.order-form-title {
  color: #fff !important;
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.order-form-title i {
  color: #04a9f4;
}

.order-form-body {
  padding: 30px;
}

/* =========================================================
   VIDEO SECTION
   ========================================================== */
.video-section {
  padding: 30px 20px;
}

.tabs-list {
  width: 100%;
}

.video-tabs {
  border: none;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.video-item {
  list-style: none;
  width: 100%;
}

.video-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Video Title */
.video-title {
  color: #ffffff !important;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.video-title i {
  color: #04a9f4;
  font-size: 18px;
}

/* Video Container - Gradient Border */
.video-container {
  display: inline-block;
  padding: 8px;
  border-radius: 24px;
  background: linear-gradient(135deg, #05cbfd 0%, #203d9d 100%);
  box-shadow: 0 8px 20px rgba(4, 169, 244, 0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  max-width: 400px;
}

.video-container:hover {
  box-shadow: 0 12px 28px rgba(4, 169, 244, 0.4);
  transform: translateY(-4px);
}

/* Video iFrame */
.video-iframe {
  border-radius: 20px;
  background: #fff;
  border: none;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 100%;
  aspect-ratio: 9 / 16;
}

/* Watch Button Wrapper */
.video-button-wrapper {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Watch Button */
.btn-watch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #04a9f4 0%, #0288d1 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(4, 169, 244, 0.35);
  white-space: nowrap;
}

.btn-watch:hover {
  background: linear-gradient(135deg, #0288d1 0%, #01579b 100%);
  box-shadow: 0 6px 16px rgba(4, 169, 244, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

.btn-watch:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(4, 169, 244, 0.3);
}

.btn-watch i {
  font-size: 16px;
}

/* =========================================================
   VERTICAL IMAGE MODAL
   ========================================================== */
#verticalImageModal .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
  position: relative;
  padding: 0;
}

#verticalImageModal .modal-dialog {
  max-width: 95vw;
  width: auto;
  margin: 0 auto;
}

#verticalImageModal .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  width: 100%;
  padding: 12px;
}

#verticalImageModal img {
  border-radius: 18px;
  width: 95vw;
  max-width: 100%;
  max-height: 95vh;
  height: auto;
  object-fit: cover;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
  display: block;
  margin: 0 auto;
}

.vertical-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  transition: transform 0.08s ease, background 0.08s ease;
  outline: none;
}

.vertical-modal-close:hover,
.vertical-modal-close:focus {
  transform: scale(1.04);
  background: rgba(0,0,0,0.75);
  color: #fff;
}

/* =========================================================
   RESPONSIVE DESIGN - Tablets
   ========================================================== */
@media (max-width: 900px) {
  .cat-icon-filter-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .catf-btn {
    font-size: 13px;
    padding: 11px 14px;
    border-radius: 11px;
  }
}

/* =========================================================
   RESPONSIVE DESIGN - Mobile
   ========================================================== */
@media (max-width: 600px) {
  .cat-icon-filter-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .catf-btn {
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    gap: 6px;
  }

  .catf-btn i { 
    font-size: 15px; 
  }

  .catf-btn span {
    font-size: 12px;
  }
}

/* =========================================================
   RESPONSIVE DESIGN - Extra Small Screens
   ========================================================== */
@media (max-width: 380px) {
  .cat-icon-filter-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .catf-btn {
    font-size: 11px;
    padding: 8px 10px;
    gap: 4px;
    border-radius: 9px;
  }

  .catf-btn i { 
    font-size: 14px; 
  }

  .vertical-modal-close {
    width: 48px;
    height: 48px;
    top: 10px;
    right: 10px;
  }
}

/* =========================================================
   RESPONSIVE VIDEO SECTION - Tablets
   ========================================================== */
@media (max-width: 768px) {
  .video-section {
    padding: 25px 15px;
  }

  .video-title {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .video-container {
    padding: 6px;
    max-width: 350px;
  }

  .video-iframe {
    aspect-ratio: 9 / 16;
  }

  .btn-watch {
    padding: 11px 25px;
    font-size: 13px;
  }
}

/* =========================================================
   RESPONSIVE VIDEO SECTION - Mobile
   ========================================================== */
@media (max-width: 600px) {
  .video-section {
    padding: 20px 12px;
  }

  .video-title {
    font-size: 14px;
    margin-bottom: 16px;
    gap: 8px;
  }

  .video-title i {
    font-size: 16px;
  }

  .video-container {
    padding: 5px;
    max-width: 100%;
    border-radius: 20px;
  }

  .video-iframe {
    border-radius: 18px;
    aspect-ratio: 9 / 16;
  }

  .video-button-wrapper {
    margin-top: 20px;
  }

  .btn-watch {
    padding: 10px 20px;
    font-size: 12px;
    gap: 8px;
  }

  .btn-watch i {
    font-size: 14px;
  }
}

/* =========================================================
   RESPONSIVE VIDEO SECTION - Small Mobile
   ========================================================== */
@media (max-width: 480px) {
  .video-section {
    padding: 18px 10px;
  }

  .video-title {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .video-container {
    padding: 4px;
    max-width: 100%;
    box-shadow: 0 6px 16px rgba(4, 169, 244, 0.25);
  }

  .video-container:hover {
    box-shadow: 0 8px 20px rgba(4, 169, 244, 0.3);
    transform: translateY(-2px);
  }

  .video-iframe {
    border-radius: 16px;
  }

  .btn-watch {
    padding: 9px 18px;
    font-size: 11px;
    width: 100%;
    max-width: 280px;
  }

  .btn-watch i {
    font-size: 13px;
  }
}

/* =========================================================
   RESPONSIVE VIDEO SECTION - Extra Small Mobile
   ========================================================== */
@media (max-width: 380px) {
  .video-section {
    padding: 16px 8px;
  }

  .video-title {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .video-container {
    padding: 3px;
  }

  .video-iframe {
    border-radius: 14px;
  }

  .btn-watch {
    padding: 8px 16px;
    font-size: 11px;
    width: 100%;
  }
.form-label {
  color: #fff !important;
}
}