.upi-container {
  max-width: 420px;
  margin: 0 auto;
  background: #fafafa;
  min-height: 100vh;
  font-family: -apple-system, system-ui, sans-serif;
  padding-bottom: 60px;
}

.upi-title {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  margin: 30px 0 15px;
  color: #000;
}

/* Tabs — sirf niche line */
.upi-tabs .nav-link {
  color: #888;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 20px;
  border: none !important;
  background: none !important;
  border-radius: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.upi-tabs .nav-link.active {
  color: #000;
}

.upi-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: #000;
  border-radius: 3px;
}

.upi-info-banner {
  background: #f0f0f0;
  padding: 14px 18px;
  border-radius: 16px;
  margin: 0 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: #444;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.upi-how-to {
  padding: 0 18px;
  font-size: 15px;
  color: #555;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.upi-section-header {
  padding: 0 18px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.upi-account-card {
  background: #fff;
  margin: 0 16px;
  border-radius: 20px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.upi-logo {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #8B6BFF, #5E3EFF);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.upi-id {
  font-size: 16px;
  font-weight: 800;
  color: #000;
}

.upi-name {
  font-size: 13.5px;
  color: #666;
  margin: 3px 0;
}

.upi-status {
  font-size: 13px;
  color: #00C853;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Toggle — ab 100% responsive & perfect */
.upi-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.upi-toggle {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 32px;
  flex-shrink: 0;
}

.upi-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.upi-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ddd;
  border-radius: 34px;
  transition: .3s;
}

.upi-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked+.upi-slider {
  background: #000;
}

input:checked+.upi-slider:before {
  transform: translateX(20px);
}

.upi-toggle-text {
  font-size: 11px;
  color: #999;
  font-weight: 600;
}

.upi-add-button {
  margin: 20px 10px 20px;
  background: center;
  padding: 20px;
  background: #000;
  color: #fff;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ============== Account page ================== */
.account-page-container {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 6px 16px 6px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.account-page-header {
  color: #000;
  font-size: 20px;
}

.account-page-avatar {
  width: 90px;
  height: 90px;
  background: #333;
  border-radius: 50%;
  margin: 40px auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-page-avatar i {
  font-size: 48px;
  color: #fff;
}

.account-page-list {
  margin: 0 16px;
}

.account-page-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
}

.account-page-item:last-child {
  border-bottom: none;
}

.account-page-label {
  color: #666;
  font-weight: 500;
}

.account-page-value {
  color: #000;
  font-weight: 600;
}

.account-page-arrow {
  color: #ccc;
  font-size: 18px;
}

.account-page-password {
  color: #aaa;
  font-weight: 600;
}

/* ============== Account page end ================== */
/* ============== Deposit ================== */




.deposit-container {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  margin-top: 69px;
  padding-bottom: 50px;
}


.deposit-tabs,
.deposit-qr-section,
.deposit-wallet-section,
.deposit-info-box,
.deposit-calculator-section,
.deposit-estimated-section,
.deposit-task-banner,
.deposit-filter-section,
.deposit-loading {
  width: 100% !important;
}

/* ===== Tabs ===== */
.deposit-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  background: #f5f5f5;
  padding: 6px;
  border-radius: 12px;
}

.deposit-tab {
  flex: 1;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.deposit-tab.active {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== Tab Content ===== */
.deposit-tab-content {
  display: none;
}

.deposit-tab-content.active {
  display: block;
}

/* ===== INR Section ===== */
.deposit-qr-box {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  padding: 30px;
  display: inline-block;
  margin-bottom: 20px;
}

.deposit-qr-image {
  width: 180px;
  height: 180px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deposit-wallet-section {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.deposit-wallet-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.deposit-wallet-address {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.deposit-wallet-text {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deposit-copy-btn {
  background: #624992;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.deposit-info-box {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 14px 16px;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #666;
}

.deposit-calculator-section,
.deposit-estimated-section {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.deposit-calculator-input {
  width: 100%;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
}

.deposit-note {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}

/* ===== USDT Section ===== */
.deposit-task-header {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.deposit-task-banner {
  background: linear-gradient(135deg, #e8d5ff 0%, #d5b8ff 100%);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.deposit-video-section {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
}

.deposit-video-icon {
  width: 50px;
  height: 50px;
  background: #624992;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.deposit-filter-section {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.deposit-filter-dropdown {
  flex: 1;
  min-width: 100px;
  background: #f5f5f5;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
}

.deposit-refresh-btn {
  background: #000;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
}

.deposit-loading {
  text-align: center;
  padding: 50px 20px;
  color: #999;
}

.deposit-loading i {
  font-size: 30px;
  margin-bottom: 12px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============== Deposit end ================== */
/* ==============  PROFILE ================== */
.profile-container {
  padding-bottom: 50px;
}

.profile-top {
  padding: 20px 10px 0px;
  margin-top: 60px;
}

.profile-edit {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.profile-id {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.profile-quota {
  font-size: 15px;
  color: #888;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-balance {
  font-size: 38px;
  font-weight: 800;
  color: #000;
}

.profile-inr {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-left: 4px;
}

.profile-reward {
  font-size: 14px;
  color: #888;
  margin: 8px 0 20px;
}

.profile-topup {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
}

.profile-banner {
  margin: 20px 0px;
  background: #000;
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.profile-banner small {
  font-weight: 500;
  font-size: 14px;
  opacity: 0.9;
}

.profile-menu {
  margin: 10px 10px 0;
}

.profile-menu a {
  text-decoration: none;
}

.profile-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: #000;
}

.profile-item:last-child {
  border-bottom: none;
}

.profile-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-item-icon {
  width: 42px;
  height: 42px;
  background: #f8f8f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 19px;
}

.profile-lang {
  color: #888;
  font-size: 15px;
}

.profile-arrow {
  color: #ccc;
  font-size: 18px;
}

/* ============== PROFILE end ================== */
/* ============== UPI ================== */

.upi-container {
  padding-bottom: 80px;
  margin-top: 83px;
}

.upi-title {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  margin: 30px 0 10px;
  color: #000;
}

.upi-tabs .nav-link {
  color: #888;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
  border: none !important;
  background: none !important;
  border-radius: 0;
  position: relative;
}

.upi-tabs .nav-link.active {
  color: #000;
}

.upi-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: #000;
  border-radius: 3px;
}

.upi-info-banner {
  background: #f5f5f5;
  padding: 12px 16px;
  border-radius: 12px;
  margin: 0 0px 16px;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.upi-accordion-header {
  padding: 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 20px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.upi-accordion-header .fa-chevron-down {
  transition: .3s;
}

.upi-accordion-header[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

.upi-account-card {
  background: #fff;
  margin: 0 0px 12px;
  border-radius: 16px;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
}

.upi-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.upi-details h6 {
  font-size: 15px;
  font-weight: 800;
  margin: 0;
  color: #000;
}

.upi-details small {
  font-size: 13px;
  color: #666;
}

.upi-status-auth {
  color: #00C853;
  font-weight: 600;
  font-size: 13px;
}

.upi-status-unauth {
  color: #ff4444;
  font-weight: 600;
  font-size: 13px;
}

.upi-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.upi-toggle {
  position: relative;
  width: 50px;
  height: 30px;
}

.upi-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.upi-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 34px;
  transition: .3s;
}

.upi-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
}

input:checked+.upi-slider {
  background: #000;
}

input:checked+.upi-slider:before {
  transform: translateX(20px);
}

.upi-sale-badge {
  background: #00C853;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.upi-link-btn {
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.upi-add-button {
  margin: 40px 0px 20px;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 18px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ============== UPI END ================== */
/* ============== TEAM START ================== */
.team-header {
  font-size: 24px;
  font-weight: 800;
  text-align: left;
  padding: 20px 16px 10px;
  color: #000;
}

/* Top dark card - exact same */
.team-stats-card {
  background: #1c1c1e;
  margin: 10px 0px;
  border-radius: 16px;
  padding: 20px;
  color: #fff;
}

.team-stats-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.team-stat {
  text-align: center;
  flex: 1;
}

.team-stat-number {
  font-size: 36px;
  font-weight: 800;
}

.team-stat-label {
  font-size: 13px;
  color: #aaa;
  margin-top: 4px;
}

.team-balance {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  background: #2c2c2e;
  padding: 14px;
  border-radius: 14px;
}

/* Invite Code */
.team-invite-section {
  padding: 24px 0px 10px;
}

.team-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.team-invite-box {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.team-copy-icon {
  color: #888;
  font-size: 18px;
}

/* Team Detail Accordion */
.team-detail-header {
  padding: 20px 0px 10px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.team-detail-collapse {
  padding: 0 16px;
}

.team-empty-state {
  text-align: center;
  padding: 80px 40px;
  color: #bbb;
}

.team-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: url('https://i.ibb.co/4p4Y7gY/empty-state-clipboard.png') center/contain no-repeat;
}

.team-empty-text {
  font-size: 15px;
  color: #aaa;
}

/* ============== TEAM END ================== */
/* ============== RECHARGE  ================== */
.recharge-history-container {
  max-width: 420px;
  margin: 0 auto;
  background: #fafafa;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  padding-bottom: 50px;
}

.recharge-history-header {
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  font-weight: 700;
}

.recharge-history-back {
  font-size: 22px;
  color: #000;
  margin-right: 16px;
}

/* USDT / INR Tab - Upar */
.recharge-history-currency-tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 20px 0 10px;
}

.recharge-history-currency-tabs .nav-link {
  color: #888;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
}

.recharge-history-currency-tabs .nav-link.active {
  padding: 4px 10px;
  color: #ffffff;
}

.recharge-history-currency-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* All / In Payment / Success / Timeout Tab */
.recharge-history-status-tabs .nav-link {
  color: #888;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 15px;
}

.recharge-history-status-tabs .nav-link.active {
  background: #000;
  color: #fff;
}

/* Banner */
.recharge-history-banner {
  background: linear-gradient(135deg, #8B6BFF, #5E3EFF);
  color: #fff;
  margin: 20px 16px 16px;
  padding: 16px;
  border-radius: 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(139, 107, 255, 0.3);
}

.recharge-history-banner i {
  font-size: 20px;
  margin-right: 8px;
}

/* Cards */
.recharge-history-card {
  background: #fff;
  margin: 0 16px 14px;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.recharge-history-amount {
  font-size: 24px;
  font-weight: 800;
  color: #000;
}

.recharge-history-status-cancel {
  background: #ff4444;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.recharge-history-status-success {
  background: #00C853;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.recharge-history-income {
  color: #00C853;
  font-weight: 700;
}

.recharge-history-uid {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

.recharge-history-arrow {
  color: #ccc;
  font-size: 20px;
}

/* ============== RECHARGE END ================== */
/* ============== TOKEN ================== */
.token-history-container {
  font-family: 'Inter', sans-serif;
}

.token-history-header {
  display: flex;
  align-items: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #333;
}

.token-history-back {
  color: #fff;
  font-size: 22px;
  margin-right: 16px;
}

/* Type Filter Button */
.token-history-type-btn {
  background: #222;
  border: 1px solid #444;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  margin: 16px;
}

/* List Card */
.token-history-card {
  background: #f1f0f0;
  margin: 0 0px 12px;
  border-radius: 16px;
  padding: 18px;
  /* border: 1px solid #333; */
}

.token-history-type {
  color: #ff4444;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.token-history-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: 6px 0;
  color: #ccc;
}

.token-history-label {
  color: #2a2525;
}

.token-history-value {
  color: #2a2525;
  font-weight: 600;
}

.token-history-amount {
  color: #00ff88;
  font-weight: 700;
}

/* Reward Card */
.token-history-reward {
  background: linear-gradient(135deg, #8B6BFF, #5E3EFF);
  text-align: center;
  padding: 20px;
  border-radius: 18px;
  margin: 20px 0px;
  font-size: 16px;
}

.token-history-reward-amount {
  font-size: 32px;
  font-weight: 800;
  margin-top: 8px;
}

/* Offcanvas */
.token-history-offcanvas .offcanvas-body {
  padding: 0;
}

.token-history-filter-item {
  padding: 16px 20px;
  font-size: 16px;
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 12px;
}

.token-history-filter-item.active {
  background: #473d3d;
  font-weight: 600;
  color: wheat;
}

/* ============== TOKEN END ================== */
/* ============== CONTACT ================== */
/* Header */
.contact-us-header {
  display: flex;
  align-items: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.contact-us-back {
  font-size: 22px;
  color: #000;
  margin-right: 16px;
}

/* Main Content */


.contact-us-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin: 20px 0 30px;
  color: #000;
}

.contact-us-card {
  background: #f8f9fa;
  border-radius: 18px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.contact-us-item {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

.contact-us-item:last-child {
  border-bottom: none;
}

.contact-us-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 16px;
}

.contact-us-label {
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}

.contact-us-value {
  color: #666;
  font-size: 15px;
}

.contact-us-value a {
  color: #007bff;
  text-decoration: none;
}

/* WhatsApp Button */
.contact-us-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white !important;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  margin: 30px 16px 20px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
}

.contact-us-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Support Time */
.contact-us-support-time {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-top: 20px;
}

.contact-us-support-time strong {
  color: #000;
}

/* Footer Note */
.contact-us-footer {
  text-align: center;
  padding: 30px 20px;
  color: #999;
  font-size: 13px;
  border-top: 1px solid #f0f0f0;
  margin-top: 40px;
}

/* ============== CONTACT END ================== */