/* Common Styles for Pages (Benefits, FAQ, Contact) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: "Figtree", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Figtree', sans-serif;
}

/* Page Banner Styles */
.page-banner {
  height: 450px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.page-banner-container {
  display: grid;
  grid-template-columns: 40% 60%;
  height: 100%;
}

.page-banner-content {
  background-color:#e8e8e8;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.page-banner-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 200%;
  height: 100%;
  transform: skewX(-15deg);
  pointer-events: none;
}

.page-banner-content h1 {
  font-size: 3rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.page-banner-content h1 em {
  font-style: italic;
  font-weight: 300;
}

.page-banner-content p {
  font-size: 1.1rem;
  color: #000;
  max-width: 400px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  font-family: 'Figtree', sans-serif;
}

.page-banner-image {
  position: relative;
  overflow: hidden;
}

.page-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, .85);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  height: 80px;
}

.main-header.scrolled {
  background-color:rgba(0, 0, 0, .85);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.main-header.scrolled .nav-menu a,
.main-header.scrolled .header-contact {
  color: #f5f5f5;
}

.main-header.scrolled .nav-menu a:hover {
  color: #d4af37;
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  width: 100%;
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: 80px;
  max-width: 200px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin-left: 3rem;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-family: "Figtree", sans-serif;
  letter-spacing: 1px;
  transition: color 0.3s;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: #d4af37;
}

.mobile-only {
  display: none;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  margin-left: auto;
  color: #ffffff;
  font-family: "Figtree", sans-serif;
  font-size: 0.95rem;
}

.header-contact i {
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 1.5rem;
}

/* Legacy nav styles - remove if not needed */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

nav a:hover {
  color: #d4af37;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Search Filters */
.search-filters {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  border: 1px solid #e0e0e0;
}

.search-input-wrapper i.fa-search,
.search-input-wrapper i.fa-location-dot {
  color: #d42427;
  font-size: 1.1rem;
  margin-right: 1rem;
}

.search-input,
.search-select {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  color: #666;
  font-family: 'Figtree', sans-serif;
  padding: 0.5rem 0;
}

.search-input::placeholder {
  color: #999;
}

.search-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.search-select option {
  background: white;
  color: #333;
}

.search-btn {
  background: #6d6d6d;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}

.search-btn:hover {
  background: #555;
  transform: scale(1.05);
}

.search-btn i {
  font-size: 1rem;
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, .85);
    color: #f5f5f5;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr;
    gap: 4rem;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.footer-newsletter p {
    font-family: "Figtree", sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-family: "Figtree", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: border-color 0.3s;
}

.newsletter-form input[type="email"]::placeholder,
.newsletter-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

.newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.newsletter-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.newsletter-checkbox label {
    font-family: "Figtree", sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-style: italic;
}

.btn-subscribe {
    background: #a7a1a1;
    color: white;
    border: none;
    padding: 0.85rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Figtree", sans-serif;
    text-transform: uppercase;
}

.btn-subscribe:hover {
    background: #d42427;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: "Figtree", sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d42427;
}

.footer-social h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Benefits Page Specific Styles */
.benefits-section {
  margin-top: 100px;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-header h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.benefits-header p {
  font-size: 1.1rem;
  color: #666;
}

.benefits-table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.table-header {
  background: #1a1a1a;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.table-header h2 {
  font-size: 2rem;
  font-weight: 600;
}

.table-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid #1a1a1a;
}

.table-column {
  border-right: 2px solid #1a1a1a;
  padding: 2rem;
}

.table-column:last-child {
  border-right: none;
}

.column-header {
  background: #f8f8f8;
  padding: 1rem;
  margin: -2rem -2rem 1.5rem -2rem;
  border-bottom: 2px solid #1a1a1a;
}

.column-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefit-list li:before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 0.8rem;
}

/* FAQ Page Specific Styles */
.faq-container {
  max-width: 1000px;
  margin: 120px auto 60px;
  padding: 0 2rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h1 {
  font-family: 'Figtree', sans-serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.faq-header h2 {
  font-family: 'Figtree', sans-serif;
  font-size: 2rem;
  color: #d4af37;
  font-weight: 400;
}

.faq-item {
  background: white;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
  font-weight: 600;
  color: #1a1a1a;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #d4af37;
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 2000px;
}

.faq-answer p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.faq-answer ul {
  margin-left: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.faq-answer li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

/* Contact Page Specific Styles */
.contact-container {
  max-width: 1000px;
  margin: 120px auto 60px;
  padding: 0 2rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h1 {
  font-family: 'Figtree', sans-serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-header h2 {
  font-family: 'Figtree', sans-serif;
  font-size: 2rem;
  color: #d4af37;
  font-weight: 400;
  margin-bottom: 1rem;
}

.contact-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.contact-info {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-section {
  margin-bottom: 2rem;
}

.contact-section:last-child {
  margin-bottom: 0;
}

.contact-section h3 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d4af37;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.contact-item {
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.contact-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: #fff;
  font-size: 1.2rem;
}

.contact-item h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.2rem;
  color: #1a1a1a;
}

.contact-item p {
  color: #555;
  line-height: 1.8;
}

.contact-item a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #1a1a1a;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phone-numbers a {
  display: block;
}

/** Login Modal Styles **/
.lalit-login-modal.show .modal-dialog {
    transform: translateX(0);
}
.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
}
.lalit-login-modal .modal-dialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    max-width: 420px;
    width: 420px;
    height: 100vh;
    display: flex;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}
#loginModal .modal-content {
    /* max-width: 400px; */
    margin: 0 auto;
    background-color: #f5f0eb;
}

.lalit-login-modal .modal-content {
    border-radius: 0;
    border: none;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    margin: 0;
    height: 100%;
    overflow-y: auto;
    background-color: #f5f0eb;
}
.lalit-input {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #f97316 !important;
    border-radius: 0 !important;
    font-size: 16px;
    line-height: 1.5;
    padding: 8px 0;
    transition: border-color 0.2s ease-in-out;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .search-filters {
    flex-direction: column;
    gap: 1rem;
  }

  .search-input-wrapper {
    padding: 0.5rem 1rem;
  }

  .search-btn {
    width: 40px;
    height: 40px;
  }

  .page-banner {
    height: auto;
    margin-top: 70px;
  }

  .page-banner-container {
    grid-template-columns: 1fr;
  }

  .page-banner-content {
    padding: 3rem 2rem;
    min-height: 250px;
  }

  .page-banner-content::before {
    display: none;
  }

  .page-banner-content h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .page-banner-content p {
    font-size: 1rem;
  }

  .page-banner-image {
    height: 250px;
  }

  .header-container {
    flex-wrap: wrap;
  }

  .logo-box {
    min-width: auto;
    padding: 0 1rem;
  }

  .logo img {
    height: 50px;
  }

  .header-contact {
    padding: 0 1rem;
    font-size: 0.85rem;
  }

  .main-nav {
    order: 4;
    width: 100%;
    padding: 0;
    margin-left: 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: #1a1a1a;
    flex-direction: column;
    padding: 5rem 2rem;
    transition: right 0.3s;
    gap: 1.5rem;
    align-items: flex-start;
    z-index: 1001;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu .mobile-only {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    width: 100%;
  }

  .nav-menu .mobile-only a {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .mobile-menu-toggle {
    display: block;
    z-index: 1002;
  }

  .table-content {
    grid-template-columns: 1fr;
  }

  .table-column {
    border-right: none;
    border-bottom: 2px solid #1a1a1a;
  }

  .table-column:last-child {
    border-bottom: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
  }

  .benefits-header h1 {
    font-size: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .faq-header h1 {
    font-size: 2rem;
  }

  .faq-header h2 {
    font-size: 1.5rem;
  }

  .faq-container {
    margin-top: 100px;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-header h2 {
    font-size: 1.5rem;
  }

  .contact-container {
    margin-top: 100px;
  }

  .contact-info {
    padding: 2rem 1.5rem;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   Signup Modal Custom Styles
   =================================== */

/* Modal Content */
.signup-modal-content {
    background-color: #f5f0eb !important;
    border-radius: 0 !important;
}

/* Modal Header */
.signup-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.signup-modal-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.signup-modal-description {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Form Labels */
.signup-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #f97316;
    margin-bottom: 0.5rem;
}

/* Form Inputs */
.signup-input {
    background-color: #e8e1d9 !important;
    border: 1px solid #d1c7ba !important;
    border-radius: 0.375rem !important;
    padding: 0.625rem 0.875rem !important;
    font-size: 0.9375rem !important;
    color: #1a1a1a !important;
    transition: all 0.2s ease-in-out !important;
}

.signup-input::placeholder {
    color: #9ca3af !important;
    font-size: 0.875rem !important;
}

.signup-input:focus {
    background-color: #e8e1d9 !important;
    border-color: #f97316 !important;
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.1) !important;
    outline: none !important;
}

/* Helper Text */
.signup-helper-text {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.signup-helper-text-center {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Checkbox Styling */
.signup-checkbox {
    width: 1.125rem;
    height: 1.125rem;
    border: 2px solid #d1c7ba;
    border-radius: 0.25rem;
    cursor: pointer;
    margin-top: 0.125rem;
}

.signup-checkbox:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.signup-checkbox-label {
    font-size: 0.875rem;
    color: #1a1a1a;
    line-height: 1.5;
    margin-left: 0.5rem;
}

/* Links */
.signup-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.signup-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Send OTP Button */
.signup-btn-send-otp {
    width: auto;
    padding: 0.625rem 1.5rem;
    background-color: #f97316;
    border: none;
    border-radius: 0.375rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    float: right;
}

.signup-btn-send-otp:hover {
    background-color: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
}

.signup-btn-send-otp:active {
    transform: translateY(0);
}

/* Continue Button */
.signup-btn-continue {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #9ca3af !important;
    border: none;
    border-radius: 0.375rem;
    color: white !important;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: not-allowed;
    transition: all 0.2s ease-in-out;
}

.signup-btn-continue:disabled {
    background-color: #9ca3af !important;
    color: white !important;
    cursor: not-allowed;
}

.signup-btn-continue:not(:disabled) {
    background-color: #16a34a !important;
    cursor: pointer;
}

.signup-btn-continue:not(:disabled):hover {
    background-color: #15803d !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(22, 163, 74, 0.3);
}

.signup-btn-continue:not(:disabled):active {
    transform: translateY(0);
}

/* Footer Text */
.signup-footer-text {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Close Button Custom Style */
#signupModal .btn-close {
    background-color: transparent;
    border: none;
    opacity: 0.6;
    padding: 0.5rem;
    font-size: 1.25rem;
}

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

/* Modal Body */
#signupModal .modal-body {
    padding: 1.5rem 2rem 2rem 2rem;
}

/* Responsive adjustments for signup modal */
@media (max-width: 576px) {
    .signup-modal-title {
        font-size: 1.25rem;
    }
    
    .signup-modal-subtitle {
        font-size: 1rem;
    }
    
    .signup-modal-description {
        font-size: 0.8125rem;
    }
    
    #signupModal .modal-body {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
}

/* ===================================
   Login Modal Custom Styles
   =================================== */

/* Modal Content */
.login-modal-content {
    background-color: #f5f0eb !important;
    border-radius: 0 !important;
}

/* Modal Header */
.login-modal-title {
    font-size: 1.375rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.login-modal-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 0;
}

/* Login Tabs */
.login-tab-btn {
    background-color: transparent;
    border: 1px solid #d1c7ba;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

.login-tab-btn:hover {
    background-color: #e8e1d9;
    border-color: #c4b5a3;
}

.login-tab-btn.active {
    background-color: #c4a574;
    border-color: #c4a574;
    color: white;
}

.login-tab-btn i {
    font-size: 0.875rem;
}

/* Alternative blue style for second tab when active */
#member-tab.active {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* Form Labels */
.login-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #f97316;
    margin-bottom: 0.5rem;
}

/* Form Inputs with underline style */
.login-input {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #d1c7ba !important;
    border-radius: 0 !important;
    padding: 0.5rem 0 !important;
    font-size: 0.9375rem !important;
    color: #1a1a1a !important;
    transition: border-color 0.2s ease-in-out !important;
}

.login-input::placeholder {
    color: #9ca3af !important;
    font-size: 0.875rem !important;
}

.login-input:focus {
    background-color: transparent !important;
    border-bottom-color: #f97316 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Send OTP Button/Link */
.login-send-otp-btn {
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease-in-out;
}

.login-send-otp-btn:hover {
    color: #f97316;
}

.login-send-otp-btn i {
    font-size: 0.875rem;
}

/* Forgot Password Link */
.login-link {
    color: #f97316;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.login-link:hover {
    color: #ea580c;
    text-decoration: underline;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #1a1a1a;
    border: none;
    border-radius: 0.25rem;
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.login-btn:hover {
    background-color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

/* Close Button for Login Modal */
#loginModal .btn-close {
    background-color: transparent;
    border: none;
    opacity: 0.6;
    padding: 0.5rem;
    font-size: 1.25rem;
}

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

/* Modal Body */
#loginModal .modal-body {
    padding: 1.5rem 2rem 2rem 2rem;
}

/* Responsive adjustments for login modal */
@media (max-width: 576px) {
    .login-modal-title {
        font-size: 1.125rem;
    }
    
    .login-modal-subtitle {
        font-size: 0.875rem;
    }
    
    .login-tab-btn {
        font-size: 0.8125rem;
        padding: 0.5rem 0.75rem;
    }
    
    #loginModal .modal-body {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
}

