@media (max-width: 1440px) {
  body {
    zoom: 0.9;

  }

  .modal-backdrop,
  .modal-wrapper {
    zoom: 1.1111;
  }

  @media only screen and (max-device-width: 1399px) {}

  @media only screen and (max-device-width: 1200px) {}

  @media only screen and (min-width: 992px) {
    .navbar-ui-wrapper {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex: 1;
      justify-content: center;
    }


  }

  /* ===== VENDOR PAGE RESPONSIVE ===== */
  @media (max-width: 991px) {
    .vendor-hero-banner {
      min-height: 400px;
      padding: 40px 20px;
      border-radius: 30px;
    }

    body {
      zoom: 1 !important;
    }


    .vendor-hero-title {
      font-size: 48px;
    }

    .vendor-search-wrap {
      flex-direction: column;
      border-radius: 30px;
      padding: 20px;
      gap: 15px;
    }

    .vendor-search-group {
      width: 100%;
    }

    .btn-vendor-search {
      width: 100%;
    }
  }

  @media (max-width: 576px) {
    .vendor-hero-title {
      font-size: 36px;
    }

    .vendor-hero-subtitle {
      font-size: 16px;
      margin-bottom: 30px;
    }

    .vendor-card {
      height: 380px;
      border-radius: 25px;
    }

    .vendor-card-title {
      font-size: 20px;
    }
  }

  @media only screen and (max-width: 991px) {
    .navbar-pro-inner {
      padding: 5px 0;
    }

    .navbar-pro-inner .brand-logo {
      width: 158px;
    }

    .hero-couple-img {
      max-width: 100%;
    }

    .checkout-grid {
      flex-direction: column;
    }

    .checkout-left {
      flex: 0 0 100%;
      margin: 0 auto;
      width: 100%;
      max-width: 420px;
    }

    .pricing-card.highlight {
      width: 100%;
      margin-top: 0;
      margin-bottom: 0;
      padding: 40px;
    }

    .navbar-ui-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 310px;
      height: 100vh;
      background-color: var(--white-color);
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1050;
      overflow-y: auto;
      border-radius: 0px 30px 30px 0px;
      padding: 30px 24px;
      box-shadow: 15px 0 60px rgba(0, 0, 0, 0.12);
      transform: translateX(-105%);
      display: block !important;
    }

    .navbar-ui-wrapper.active {
      transform: translateX(0);
    }

    .navbar-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.65);
      backdrop-filter: blur(8px);
      z-index: 1040;
      opacity: 0;
      visibility: hidden;
      transition: all 0.5s ease;
    }

    .navbar-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .navbar-pro-inner .navbar-toggler {
      background: var(--primary);
      height: 42px;
      width: 42px;
      border: none;
      border-radius: 12px;
      color: var(--white-color);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      padding: 0;
      box-shadow: 0 4px 12px rgba(155, 0, 0, 0.25);
    }

    .navbar-pro-inner .navbar-toggler:active {
      transform: scale(0.9);
    }

    .mobile-nav-header {
      margin-bottom: 25px;
      padding-bottom: 15px !important;
    }

    .mobile-nav-header .brand-logo {
      width: 150px !important;
    }

    .close-toggle {
      background: var(--bg-light);
      height: 38px;
      width: 38px;
      border-radius: 50%;
      color: var(--title-color);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border-color);
      transition: all 0.3s;
    }

    .close-toggle:hover {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
      transform: rotate(90deg);
    }

    .navbar-ui {
      align-items: flex-start !important;
      gap: 6px !important;
      width: 100%;
      background: transparent !important;
    }

    .navbar-ui .nav-item-wrap {
      width: 100%;
    }

    .navbar-ui .nav-item {
      font-size: 16px;
      display: flex;
      padding: 14px 20px !important;
      border-radius: 14px;
      align-items: center;
      color: var(--title-color) !important;
      font-weight: 600;
      transition: all 0.3s;
      width: 100%;
      border: 1px solid transparent;
    }

    .navbar-ui .nav-item:hover,
    .navbar-ui .nav-item.active {
      background: rgba(155, 0, 0, 0.05);
      color: var(--primary) !important;
      padding-left: 24px !important;
      border-color: rgba(155, 0, 0, 0.08);
    }

    .navbar-ui-wrapper .nav-dropdown-menu {
      position: static !important;
      transform: none !important;
      width: 100% !important;
      background: var(--bg-light) !important;
      border: none !important;
      box-shadow: none !important;
      margin-top: 0 !important;
      padding: 10px !important;
      border-radius: 14px !important;
    }

    .navbar-ui-wrapper .nav-dropdown-menu .dropdown-item {
      padding: 12px 18px !important;
      font-size: 15px;
      border-radius: 12px;
      color: var(--subtitle-color) !important;
      font-weight: 500;
    }

    .navbar-ui-wrapper .nav-dropdown-menu .dropdown-item:hover {
      background: rgba(155, 0, 0, 0.05) !important;
      color: var(--primary) !important;
      transform: translateX(4px) !important;
    }

    .navbar-ui-wrapper .btn-register,
    .navbar-ui-wrapper .btn-login {
      width: 100% !important;
      justify-content: center;
      margin-top: 10px;
      padding: 14px !important;
      font-size: 16px !important;
      font-weight: 700 !important;
      letter-spacing: 0.3px;
    }

    .navbar-ui-wrapper .btn-register {
      border-color: var(--primary) !important;
      color: var(--primary) !important;
      background: transparent !important;
      border-width: 2px !important;
    }

    .navbar-ui-wrapper .btn-login {
      background: var(--primary) !important;
      color: white !important;
      border-color: var(--primary) !important;
      box-shadow: 0 8px 20px rgba(155, 0, 0, 0.25);
    }

    .hero-section {
      padding-top: 100px;
      height: auto;
      min-height: 100vh;
    }

    .footer-section {
      padding: 60px 0 20px;
    }

    .footer-col {
      margin-bottom: 30px;
    }

    .footer-col h5 {
      font-size: 18px;
      margin-bottom: 20px;
    }

    .footer-bottom {
      margin-top: 40px;
      padding-top: 30px;
    }

    .footer-logo {
      height: 40px;
      margin-bottom: 20px;
    }

    .footer-social {
      margin: 20px 0;
    }

    /* From AfterLogin.css */
    .dashboard-page .navbar-menu-side {
      width: auto !important;
      flex-grow: 1;
      justify-content: flex-end;
    }

    .navbar-ui-wrapper ul.navbar-ui {
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 10px !important;
      width: 100%;
      margin-top: 20px;
      background: transparent !important;
    }

    .navbar-ui-wrapper .navbar-ui li {
      width: 100%;
    }

    .navbar-ui-wrapper div.navbar-ui {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: space-between !important;
      width: 100%;
    }

    .dashboard-page .navbar-pro-matrimony {
      padding: 5px 0 !important;
    }

    .dashboard-page .navbar-actions {
      gap: 15px !important;
    }


    .profile-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .user-details-list-v2 {
      grid-template-columns: repeat(2, 1fr) !important;
      text-align: left;
    }

    .profile-header-details .d-flex.gap-3 {
      flex-wrap: wrap;
      justify-content: center;
    }

    .stories-layout {
      grid-template-columns: 1fr;
    }

    .story-featured {
      min-height: 400px;
    }

    .auth-card {
      flex-direction: column;
    }

    .auth-hero-side {
      min-height: 300px;
    }

    .auth-form-side {
      padding: 40px;
    }

    .hero-title {
      font-size: 42px;
    }

    .hero-floating-card {
      display: none;
    }

    .section-title {
      font-size: 32px;
    }

    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .app-card {
      padding: 40px 30px;
    }

    .app-content h2 {
      font-size: 30px;
    }
  }

  @media only screen and (max-width: 768px) {
    .hero-section {
      padding-top: 70px;
    }

    .hero-title {
      font-size: 34px;
    }

    .hero-subtitle {
      font-size: 15px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
      padding: 12px 24px;
      font-size: 14px;
    }

    .section-title {
      font-size: 28px;
    }

    .search-card {
      padding: 24px 20px;
    }

    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .stat-number {
      font-size: 28px;
    }

    .features-showcase {
      padding: 24px;
    }

    .app-card {
      padding: 30px 20px;
    }

    .app-content h2 {
      font-size: 26px;
    }

    .profile-img-wrap {
      position: relative;
      overflow: hidden;
      height: 430px !important;
    }

    .hero-trust-bar {
      justify-content: center;
    }

    .main-photo-box {
      width: 100%;
      aspect-ratio: 1/1.2;
      border-radius: 16px;
      overflow: hidden;
      background: #f1f5f9;
      height: 370px;
    }

    .profile-top-tabs {
      flex-direction: column;
      max-width: 100%;
    }

    .profile-tab {
      width: 100%;
      justify-content: center;
    }

    .quick-action-icons {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .match-badge {
      font-size: 12px;
    }

    .user-name-title {
      font-size: 20px;
    }

    .match-profile-card {
      height: 420px;
    }

    .search-form-card {
      padding: 25px;
    }

    .search-tabs-wrapper {
      background: var(--white-color);
      border-radius: 20px;
      padding: 18px;
      display: inline-flex;
      gap: 5px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      margin-bottom: 40px;
      border: 1px solid var(--border-color);
      flex-direction: column;
      width: 100%;
    }

    .search-nav-pill {
      /* width: max-content; */
      justify-content: center;
      background: #f7f7f7;
      margin: 8px;
    }

    .detail-story-title {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--title-color);
      margin-bottom: 15px;
    }

    .subpage-header h1 {
      font-size: 28px;
    }
  }

  @media only screen and (max-width: 767px) {
    .profile-main-card {
      padding: 20px;
    }

    .profile-left-side {
      width: 100%;
    }

    .profile-avatar-box {
      width: 180px;
      height: 220px;
    }

    .profile-header-top {
      flex-direction: column;
      align-items: center;
      margin-bottom: 15px;
    }

    .completion-container {
      width: 100%;
      max-width: 300px;
    }

    .verification-status {
      max-width: 100%;
    }

    .user-details-list {
      display: flex;
      gap: 30px 20px;
      background: #F8FAFC;
      padding: 30px;
      border-radius: 15px;
      margin-top: 25px;
      flex-flow: wrap;
      justify-content: space-between;
      text-align: left;
    }

    .profile-actions-sidebar {
      gap: 15px;
      padding: 9px 15px;
      justify-content: space-between;
      width: 100%;
    }

    .form-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--title-color);
    }

    .action-circle-btn {
      width: 58px !important;
      height: 58px !important;
      font-size: 26px !important;
    }

    .user-details-list-v2 {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .action-card-v2 {
      min-width: 120px;
    }

    .stories-section {
      padding: 40px 0 60px;
    }

    .story-card-title {
      font-size: 20px;
    }
  }

  @media only screen and (max-width: 576px) {
    .story-mini-img {
      width: 70px;
      height: 70px;
      min-width: 70px;
    }

    .story-featured-content {
      padding: 24px;
    }

    .story-featured-content h3 {
      font-size: 24px;
    }

    .hero-title {
      font-size: 28px;
    }

    .hero-cta-group {
      flex-direction: column;
    }

    .stats-grid {
      grid-template-columns: 1fr 1fr;
    }

    .app-stores img {
      width: 130px;
    }
  }

  @media only screen and (max-device-width: 570px) {
    .story-img {
      height: 320px;
    }

    .success-stories-slider .slick-dots {
      bottom: -20px;
    }
  }

  /* ===== AUTH & OTP PAGES RESPONSIVE STYLES ===== */
  @media (min-width: 992px) {
    .auth-form-side {
      padding: 60px 80px;
    }
  }

  @media (max-width: 576px) {
    .otp-input {
      width: 40px;
      height: 48px;
      font-size: 18px;
    }

    .otp-inputs-wrapper {
      gap: 5px;
    }
  }

  @media (max-width: 576px) {
    .gender-btn {
      padding: 10px 14px;
      font-size: 14px;
    }
  }

  /* ===== CONTACT US PAGE RESPONSIVE ===== */
  @media (max-width: 991px) {
    .contact-main-card {
      padding: 25px;
    }
  }

  /* ===== SEARCH RESULTS PAGE RESPONSIVE ===== */
  @media (max-width: 1200px) {
    .sr-card-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .sr-grid-item:nth-child(2n) {
      border-right: none;
    }
  }

  @media (max-width: 991px) {
    .sr-card {
      flex-direction: column;
    }

    .sr-card-img-col {
      width: 100%;
      min-width: unset;
      height: 460px;
    }

    .sr-card-img-actions {
      opacity: 1;
      transform: translateY(0) translateX(-50%);
    }
  }

  @media (max-width: 576px) {
    .sr-card-bottom {
      flex-direction: column;
      gap: 20px;
      align-items: stretch;
    }

    .sr-card-btns {
      flex-direction: column;
    }

    .sr-btn-ignore {
      align-self: flex-end;
    }
  }

  /* ============================================================ 
   COMMUNITY DETAIL RESPONSIVE 
   ============================================================ */
  @media (min-width: 992px) {
    .cd-profile-grid .col-lg-3 {
      width: 25% !important;
    }
  }

  @media (max-width: 768px) {
    .cd-banner-box {
      height: 200px;
    }

    .cd-title {
      font-size: 24px;
    }

    .cd-tab-btn {
      padding: 10px;
      font-size: 14px;
    }
  }

  /* ===== HELP PAGE RESPONSIVE ===== */
  @media (max-width: 991px) {
    .help-form-card {
      padding: 40px 30px;
      border-radius: 24px;
    }
  }

  @media (max-width: 768px) {
    .help-form-card {
      padding: 30px 20px;
    }

    .form-card-main {
      background: var(--white-color);
      border-radius: 20px;
      padding: 20px;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
      margin-bottom: 20px;
    }

    .profile-top-tabs {
      display: flex;
      gap: 15px;
      margin-bottom: 30px;
      background: transparent;
      border-radius: 100px;
      padding: 5px;
      border: none;
    }

    .help-footer-actions {
      flex-direction: column;
      gap: 25px;
      align-items: flex-start;
    }

    .help-btn-submit {
      width: 100%;
      justify-content: center;
    }
  }

  /* ===== VENDOR LIST RESPONSIVE ===== */
  @media (max-width: 991px) {
    .vendor-list-card {
      flex-direction: column;
      padding: 20px;
      gap: 20px;
      border-radius: 25px;
    }

    .vendor-list-img-wrap {
      flex: 0 0 auto;
      width: 100%;
      height: 300px;
    }

    .vendor-list-title {
      font-size: 22px;
    }
  }

  @media (max-width: 576px) {
    .vendor-list-img-wrap {
      height: 220px;
    }

    .vendor-list-title {
      font-size: 20px;
    }

    .vendor-list-location {
      font-size: 14px;
    }

    .btn-view-details {
      width: 100%;
      text-align: center;
    }
  }

  /* Pagination Responsive Fix */
  @media (max-width: 576px) {
    .matches-pagination {
      gap: 8px !important;
    }

    .matches-pagination .page-link {
      width: 40px !important;
      height: 40px !important;
      font-size: 14px !important;
    }

    .matches-pagination .page-dots {
      font-size: 16px !important;
    }
  }

  /* ===== VENDOR DETAILS RESPONSIVE ===== */
  @media (max-width: 991px) {
    .vd-main-layout {
      flex-direction: column;
      gap: 40px;
    }

    .vd-sidebar-col {
      flex: 0 0 100%;
      width: 100%;
    }

    .vd-img-active {
      height: 400px;
    }
  }

  @media (max-width: 768px) {
    .vd-card {
      padding: 25px;
    }

    .vd-title {
      font-size: 26px;
    }

    .vd-header-flex {
      flex-direction: column;
      gap: 20px;
    }

    .vd-price-badge {
      width: 100%;
    }
  }

  @media (max-width: 576px) {
    .vd-img-active {
      height: 280px;
    }

    .vd-thumb-item {
      width: 80px;
      height: 60px;
    }

    .vd-section-title {
      font-size: 22px;
    }
  }

  /* ===== CHAT PAGE RESPONSIVE ===== */
  @media (max-width: 767px) {
    .chats-section {
      padding: 20px;
    }

    .chat-actions-bar {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .chat-btn-group {
      width: 100%;
      justify-content: space-between;
    }

    .btn-chat-action {
      flex: 1;
      justify-content: center;
      padding: 10px 15px;
      font-size: 13px;
    }

    .chat-item {
      padding: 15px;
      gap: 12px;
    }

    .chat-avatar {
      width: 50px;
      height: 50px;
      border-radius: 12px;
    }

    .chat-name {
      font-size: 16px;
    }

    .chat-msg-preview {
      font-size: 13px;
      max-width: 200px;
    }

    .chat-select-circle {
      width: 22px;
      height: 22px;
      font-size: 12px;
    }
  }

  @media (max-width: 767px) {
    .info-column {
      padding-left: 0;
      border-bottom: 1px solid #f1f5f9;
    }

    .info-column::before {
      display: none;
    }

    .common-actions-bar {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .photo-req-card-v2 {

      flex-direction: column;
    }

    .req-img-wrapper {
      position: relative;
      width: 100%;
      height: 244px;
      border-radius: 20px;
      overflow: hidden;
    }

    .req-rec-left {
      flex-direction: column;
    }

    .req-rec-img {
      width: 100%;
      height: 310px;
      border-radius: 24px;
      overflow: hidden;
      flex-shrink: 0;
    }
  }

  @media (max-width: 991px) {
    .chat-conversation-card {
      height: 700px;
    }

    .msg-group {
      max-width: 90%;
    }

    .chat-conv-header,
    .chat-conv-footer {
      padding: 18px 20px;
    }
  }

  @media (max-width: 768px) {
    .shortlist-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
      border-radius: 15px;
      padding: 20px;
    }

    .shortlist-item .photo-req-actions-v2 {
      width: 100%;
      justify-content: flex-start;
    }

    .call-item {
      flex-direction: column;
      align-items: flex-start;
      border-radius: 20px;
      padding: 20px;
      gap: 15px;
    }

    .call-right {
      width: 100%;
      justify-content: flex-end;
    }

    .floating-delete-btn {
      right: 15px;
      width: 40px;
      height: 40px;
    }

    /* Video Call Responsive */
    .video-call-main-wrap {
      padding: 20px;
    }

    .video-display-area {
      aspect-ratio: 4 / 5;
      /* Vertical orientation for mobile */
    }

    .video-controls-row {
      gap: 15px;
    }


    .end-call-btn {
      padding: 0 30px;
      font-size: 15px;
    }

    .caller-name-tag {
      font-size: 14px;
      padding: 8px 15px;
    }

    .video-timer {
      font-size: 12px;
      padding: 5px 12px;
    }

    /* Saved Search Responsive */
    .saved-search-container {
      padding: 20px;
    }

    .ss-header {
      flex-direction: column;
      align-items: flex-start !important;
    }

    .ss-actions {
      width: 100%;
      justify-content: flex-start;
    }

    .ss-details-body {
      padding: 20px;
    }

    .ss-detail-box {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }

    /* Settings Responsive */
    .settings-main-wrap {
      flex-direction: column;
    }

    .settings-sidebar {
      width: 100%;
      padding: 25px;
    }

    .settings-content-card {
      padding: 30px;
    }

    .settings-content-title {
      font-size: 26px;
    }

    .settings-form-row {
      flex-direction: column;
      gap: 20px;
    }

    .btn-shortlisted {
      width: 100%;
      justify-content: center;
    }

    .shortlist-left {
      display: flex;
      align-items: center;
      gap: 24px;
      flex: 1;
      flex-direction: column;
      text-align: center;
    }

    .shortlist-right {
      margin: auto;
    }

    .shortlist-img {
      width: 100%;
      height: 310px;
      border-radius: 20px;
      overflow: hidden;
      flex-shrink: 0;
    }

    /* Invoice Responsive */
    .invoice-main-container {
      padding: 20px;
    }

    .invoice-title-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .invoice-actions {
      width: 100%;
      justify-content: flex-start;
    }

    .invoice-box {
      padding: 20px;
      border-radius: 15px;
    }

    .invoice-header {
      flex-direction: column;
      gap: 20px;
    }

    .invoice-header-right {
      text-align: left;
    }

    .invoice-info-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .invoice-info-item.text-end {
      text-align: left !important;
    }

    .invoice-table-wrap {
      overflow-x: auto;
      margin-bottom: 30px;
    }

    .invoice-table {
      min-width: 700px;
    }

    .invoice-summary {
      align-items: flex-start;
      padding-right: 0;
    }

    .summary-row {
      width: 100%;
      justify-content: space-between;
      gap: 15px;
    }

    .summary-row label {
      text-align: left;
      min-width: unset;
    }

    .summary-row span {
      text-align: right;
    }

    /* Current Plan Responsive */
    .plan-main-container {
      padding: 20px;
    }

    .plan-details-box {
      padding: 25px;
      border-radius: 15px;
    }

    .plan-stats-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .plan-footer-summary {
      flex-direction: column;
      border-radius: 20px;
      padding: 20px;
      gap: 20px;
      align-items: flex-start;
    }

    .plan-footer-summary .summary-text {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .btn-view-invoice {
      width: 100%;
    }

    .history-item-card {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 20px;
    }

    .history-left-wrap {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }

    .history-stats-row {
      margin-left: 0;
      flex-direction: column;
      gap: 15px;
      width: 100%;
    }

    .history-actions-wrap {
      width: 100%;
      justify-content: space-between;
    }

    .btn-history-print {
      flex: 1;
      justify-content: center;
    }

    .btn-plan-upgrade {
      background: #991b1b;
      color: white;
      padding: 12px 45px;
      border-radius: 100px;
      font-weight: 700;
      border: none;
      transition: all 0.3s;
      width: 100%;
    }

    /* Contact Modal Responsive */
    .contact-modal .modal-content {
      padding: 25px;
    }

    .contact-modal-body-wrap {
      flex-direction: column;
      gap: 20px;
    }

    .contact-img-grid {
      flex-direction: column;
    }

    .contact-thumbs-stack {
      flex-direction: row;
      justify-content: center;
    }

    .contact-thumb-item {
      width: 70px;
      height: 70px;
    }

    .contact-actions-row {
      flex-wrap: wrap;
      gap: 10px;
    }

    .contact-action-card {
      min-width: calc(50% - 5px);
      padding: 15px 5px;
    }
  }

  @media (max-width: 768px) {
    .verification-modal .modal-content {
      padding: 25px;
    }

    .modal-footer-actions {
      flex-direction: column-reverse;
    }

    .btn-modal-close,
    .btn-modal-save {
      width: 100%;
    }
  }

  /* 404 Error Page Responsive */
  @media (max-width: 1200px) {
    .error-title {
      font-size: 42px;
    }
  }

  @media (max-width: 991px) {
    .error-card {
      flex-direction: column;
    }

    .error-left {
      height: 350px;
    }

    .error-right {
      padding: 40px;
    }
  }

  @media (max-width: 576px) {
    .error-404-section {
      padding: 40px 0;
    }

    .error-right {
      padding: 30px 20px;
    }

    .error-title {
      font-size: 32px;
    }

    .error-actions {
      flex-direction: column;
    }

    .btn-error-primary,
    .btn-error-secondary {
      justify-content: center;
    }

    .action-box-500 {
      flex-direction: column;
      gap: 15px;
      padding: 20px;
    }

    .error-bottom-links {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }
}

@media (max-width: 1200px) {
  .error-title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .error-card {
    flex-direction: column;
  }

  .error-left {
    height: 350px;
  }

  .error-right {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .error-404-section {
    padding: 40px 0;
  }

  .error-right {
    padding: 30px 20px;
  }

  .error-title {
    font-size: 32px;
  }

  .error-actions {
    flex-direction: column;
  }

  .btn-error-primary,
  .btn-error-secondary {
    justify-content: center;
  }

  /* Match Maker Administrator Chat Responsive */
  .admin-chat-header {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }

  .admin-chat-header .title-group h2 {
    font-size: 24px;
  }

  .admin-variant .msg-group {
    max-width: 95%;
  }

  .btn-refresh-circle {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  /* My Meeting Responsive */
  .meeting-card-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .meeting-user-img {
    width: 100%;
    height: 250px;
  }

  .meeting-meta {
    flex-direction: column;
    gap: 10px;
  }

  .btn-complete-toggle {
    width: 100%;
    justify-content: center;
  }

  .btn-submit-remark {
    width: 100%;
  }
}