* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #222;
  line-height: 1.6;
}

.header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 15px;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 155px;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.hero {
  background-size: cover;
  background-position: center;
  min-height: 90vh;
}

.hero-overlay {
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 span {
  color: #ffcc00;
}

.slogan {
  font-size: 20px;
  margin: 30px 0;
}

.cta-buttons {
  margin: 45px 0;
}

.btn {
  display: inline-block;
  padding: 14px 20px;
  margin: 6px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp { background: #25D366; }
.x { background: #000; }
.instagram { background: #C13584; }

.privacy-note {
  font-size: 14px;
  margin-top: 15px;
  opacity: 0.9;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.section.light {
  background: #f7f7f7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 15px;
  max-width: 900px;
  margin: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  border-radius: 6px;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 20px;
}

.socials a {
  margin: 0 10px;
  font-weight: bold;
  text-decoration: none;
}

footer {
  background: #111;
  color: #fff;
  padding: 25px;
  text-align: center;
  font-size: 14px;
}

/* Payment status colors */
.payment-status {
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
}

.payment-status.status-completed {
  color: #fff;
  background-color: #28a745;
}

.payment-status.status-failed {
  color: #fff;
  background-color: #dc3545;
}

.payment-status.status-rejected {
  color: #fff;
  background-color: #dc3545;
}

.payment-status.status-pending {
  color: #333;
  background-color: #ffc107;
  font-weight: 700;
}

.payment-status.status-paid {
  color: #fff;
  background-color: #28a745;
}

.payment-status.status-processing {
  color: #fff;
  background-color: #17a2b8;
}

.payment-status.status-cancelled {
  color: #fff;
  background-color: #6c757d;
}

/* ============================================================================
   PAYMENT TABLE STYLING - Beautiful & Optimized
   ============================================================================ */

.payment-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0;
}

.payment-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.payment-table th {
  padding: 16px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #667eea;
}

.payment-table tbody tr {
  border-bottom: 1px solid #e8eef5;
  transition: all 0.3s ease;
  background: #fff;
}

.payment-table tbody tr:hover {
  background-color: #f8f9fa;
  box-shadow: inset 0 0 8px rgba(102, 126, 234, 0.1);
}

.payment-table tbody tr:last-child {
  border-bottom: none;
}

.payment-table td {
  padding: 14px 14px;
  font-size: 14px;
  color: #2d3748;
}

/* Amount column - bold and highlighted */
.payment-table td:nth-child(2) {
  font-weight: 600;
  color: #2d3748;
  font-size: 15px;
}

/* Payment method with icons */
.payment-table td:nth-child(3) {
  color: #667eea;
  font-weight: 500;
}

/* Status column - centered with badges */
.payment-table td:nth-child(5) {
  text-align: center;
}

/* Duration column styling */
.payment-table td:nth-child(4) {
  color: #5a6c7d;
  font-size: 13px;
}

/* Date column styling */
.payment-table td:nth-child(1) {
  color: #718096;
  font-size: 13px;
  font-weight: 500;
}

/* ============================================================================
   PAIRED ROOM STYLING
   ============================================================================ */

.paired-tenant-section {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  border-left: 4px solid #667eea;
}

.paired-tenant-section h3 {
  color: #667eea;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.paired-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.paired-detail {
  background: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.paired-detail strong {
  color: #495057;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.paired-passport {
  display: inline-block;
  margin: 10px;
  text-align: center;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.paired-passport h4 {
  color: #667eea;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.paired-passport img {
  transition: transform 0.2s ease;
}

.paired-passport img:hover {
  transform: scale(1.05);
}

/* Passport container styling */
.passport-container {
  text-align: center;
  margin-bottom: 20px;
}

.passport-container h3 {
  color: #667eea;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

/* Responsive paired room styling */
@media (max-width: 768px) {
  .paired-info {
    grid-template-columns: 1fr;
  }

  .paired-passport {
    margin: 10px 0;
    width: calc(50% - 10px);
  }
}

/* ============================================================================
   VISUAL PROOF STYLES
   ============================================================================ */

.proof-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  background: #fafafa;
}

.proof-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.proof-date {
  color: #666;
  font-size: 12px;
}

.proof-description {
  margin-bottom: 12px;
  color: #333;
  line-height: 1.5;
}

.proof-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.proof-image:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Image modal */
#imageModal .modal-content {
  background: #000;
  padding: 10px;
}

#imageModal img {
  display: block;
  margin: 0 auto;
}

#imageModal .close-modal {
  color: #fff;
  font-size: 28px;
  position: absolute;
  top: 10px;
  right: 20px;
}