/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  color: #333333;
  overflow-x: hidden;
  background-color: #faf5f7;
  line-height: 1.6;
}

/* Header Section */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bfbf 100%);
  color: #D4AF37;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  z-index: 2;
  gap: 50px;
}

.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 450px;
}

.header-photo {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid #D4AF37;
}

.hero-right {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.title {
  font-size: 3.5rem;
  color: #D4AF37;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: #D4AF37;
}

.hero-right p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #5e4a4a;
}

.trust-badges {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.badge i {
  color: #D4AF37;
  font-size: 1.2rem;
}

/* Shared Button Styles */
.btn,
#lookup-invoice,
.inline-enter-btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  border-radius: 5px;
  border: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  background: #D4AF37;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before,
#lookup-invoice::before,
.inline-enter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c19b2c;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.btn:hover::before,
#lookup-invoice:hover::before,
.inline-enter-btn:hover::before {
  transform: scaleX(1);
}

.btn:hover,
#lookup-invoice:hover,
.inline-enter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Position the Enter button properly */
#lookup-invoice,
.inline-enter-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 8px 15px;
  font-size: 0.9rem;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: linear-gradient(to right, #FCE4EC, #F8BFBF);
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
  padding: 15px 30px;
  z-index: 1000;
  border-bottom: 2px solid #D4AF37;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 15px;
  color: #D4AF37;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #c19b2c;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #D4AF37;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  font-size: 2rem;
}

/* Payment Form Section */
.consultation-section {
  padding: 60px 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23faf5f7"/><path d="M0 50 Q 25 30, 50 50 T 100 50" stroke="%23fce4ec" fill="none" stroke-width="0.5"/></svg>');
  background-size: 300px;
}

.consultation-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.majestic-heading {
  font-size: 2.5rem;
  color: #D4AF37;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.majestic-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #D4AF37;
}

.majestic-text {
  font-size: 1.2rem;
  color: #5e4a4a;
  margin: 30px 0 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.make-payment-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.payment-form {
  width: 100%;
  max-width: 550px;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid #f0e0e0;
}

.security-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0e0e0;
}

.security-header i {
  color: #D4AF37;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
  position: relative;
}

.form-group label {
  font-weight: bold;
  color: #444;
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.gold-input {
  height: 50px;
  border: 1px solid #e0d0d0;
  border-radius: 5px;
  padding-left: 15px;
  font-size: 1rem;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s ease;
  background: #fcf9f9;
}

.gold-input:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group .input-icon {
  position: absolute;
  right: 15px;
  top: 40px;
  color: #D4AF37;
  font-size: 1.2rem;
}

.payment-options {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-option {
  width: 120px;
  height: 70px;
  border: 1px solid #e0d0d0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.payment-option:hover {
  border-color: #D4AF37;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-option.selected {
  border: 2px solid #D4AF37;
  background: rgba(212, 175, 55, 0.05);
}

.payment-option i {
  font-size: 2.5rem;
  color: #555;
}

.payment-option.paypal i {
  color: #003087;
}

.payment-option.credit-card i {
  color: #1a1f71;
}

.payment-option.apple-pay i {
  color: #000;
}

.loading-spinner {
  font-style: italic;
  margin-top: 15px;
  color: #5e4a4a;
}

/* Footer Section */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to bottom, #FCE4EC, #F8BFBF);
  color: #5e4a4a;
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-content p {
  margin: 0;
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: #5e4a4a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #D4AF37;
  text-decoration: underline;
}

.copyright {
  margin-top: 25px;
  color: #5e4a4a;
  font-size: 0.95rem;
}

.footer-line {
  width: 100px;
  height: 3px;
  background: #D4AF37;
  margin: 20px auto;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-right {
    text-align: center;
    max-width: 100%;
  }
  .title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .trust-badges {
    justify-content: center;
  }
  .header-photo {
    max-width: 400px;
    max-height: 400px;
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 2.5rem;
  }
  .hero-right p {
    font-size: 1.1rem;
  }
  .majestic-heading {
    font-size: 2rem;
  }
  .payment-form {
    padding: 30px 20px;
  }
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  .header-photo {
    max-width: 300px;
    max-height: 350px;
  }
  .hero {
    min-height: auto;
    padding: 30px 15px;
  }
  .payment-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    text-align: center;
  }
  .payment-footer .footer-logo {
    font-size: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .payment-footer .back-home-btn {
    margin-top: 8px;
    padding: 2px 5px;
    font-size: 0.45rem;
    display: inline-block;
    background: white;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .payment-footer .back-home-btn:hover {
    background: #D4AF37;
    color: white;
  }
}

/* Responsive Nav Tweaks */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 10px 20px;
    justify-content: center;
  }
  .logo {
    width: 100%;
    justify-content: center;
  }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
  .nav-links li {
    margin: 5px;
  }
  .nav-links li a {
    padding: 6px 10px;
  }
}

@media (max-width: 400px) {
  .nav-links li a {
    font-size: 12px;
    padding: 5px 8px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}
/* Banking Tabs */
.banking-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.tab-button {
  background: #f8f9fa;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
}

.tab-button:hover {
  background: #e9ecef;
  color: #333;
}

.tab-button.active {
  background: #1976d2;
  color: white;
}

.bank-tab {
  display: none;
}

.bank-tab.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Banking Details Styling */
.banking-details-container {
  margin: 2rem 0;
  animation: fadeIn 0.5s ease;
}

.banking-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.banking-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #1976d2;
  padding-bottom: 1rem;
}

.banking-header i {
  font-size: 2rem;
  color: #1976d2;
}

.banking-header h3 {
  margin: 0;
  color: #1976d2;
  font-weight: 600;
}

.bank-info {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #e0e0e0;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f5f5f5;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row .label {
  font-weight: 600;
  color: #555;
  min-width: 140px;
}

.info-row .value {
  color: #1976d2;
  font-weight: 500;
  text-align: right;
  word-break: break-word;
}

.banking-instructions {
  background: #e8f5e8;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #2E7D32;
}

.banking-instructions h4 {
  margin: 0 0 1rem 0;
  color: #2E7D32;
  font-weight: 600;
}

.banking-instructions ul {
  margin: 0;
  padding-left: 1.5rem;
}

.banking-instructions li {
  margin-bottom: 0.5rem;
  color: #555;
}

.btn-copy {
  background: linear-gradient(135deg, #1976d2, #1565c0);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.btn-copy:hover {
  background: linear-gradient(135deg, #1565c0, #0d47a1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Payment Options Styling */
.payment-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.payment-option {
  width: 60px;
  height: 60px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  font-size: 1.5rem;
  color: #666;
}

.payment-button:hover {
  border: 2px solid #f8b7cd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 183, 205, 0.4);
}

.payment-option.selected {
  border-color: #ffc7dc;
  background: #fce6e6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.payment-option.paypal { color: #fbdbe5; }
.payment-option.apple-pay { color: #f994a4; }
.payment-option.venmo { color: #fb9cd2; }
.payment-option.bank-transfer { color: #fc50bd; }

.payment-option.selected.paypal { background: #f3f4f6; }
.payment-option.selected.apple-pay { background: #f4f3f3; }
.payment-option.selected.venmo { background: #f1f3f5; }
.payment-option.selected.bank-transfer { background: #f3f4f3; }

/* Responsive Design */
@media (max-width: 768px) {
  .payment-option {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .info-row .value {
    text-align: left;
  }
  
  .banking-card {
    padding: 1.5rem;
  }
  
  .banking-tabs {
    flex-direction: column;
  }
  
  .tab-button {
    border-radius: 8px;
    margin-bottom: 0.5rem;
  }
}