/* --- global.css --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@400;500;600&display=swap');

:root {
  --background: #fafafa;
  --foreground: #0a192f;
  --color-slate: #e2e8f0;
  --color-charcoal: #ffffff;
  --color-charcoal-light: #f5f5f5;
  --color-gold: #b3844f;
  --color-gold-light: #cfa86e;
  --color-gray: #4a3525;
  --color-white: #0a192f;
  --font-sans: 'Inter', Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --spacing-section: 4rem;
  --container-inset: 1.5rem;
  --grid-gap: 2rem;
  --header-height: 5rem;
}

@media (min-width: 1024px) {
  :root {
    --spacing-section: 5rem;
    --container-inset: 4rem;
    --grid-gap: 3rem;
  }
}

html,
body {
  max-width: 100vw;
  overflow-x: clip;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
}

/* Global utility classes for blocks */
.container {
  padding-left: var(--container-inset);
  padding-right: var(--container-inset);
  max-width: 1600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--color-gold);
  color: var(--background);
}

.btn-solid {
  background: var(--color-gold);
  color: var(--background);
}

.btn-solid:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem var(--container-inset);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  z-index: 100;
}

.header.sticky {
  position: fixed;
  background-color: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem var(--container-inset);
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--color-charcoal-light);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.nav-left {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}

.nav-right {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  align-items: center;
}

.navLink {
  color: var(--color-white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navLink:hover, .navLink.active {
  color: var(--color-gold);
}

.search-container {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-gray);
  transition: border-color 0.3s ease;
}

.search-container:focus-within {
  border-color: var(--color-gold);
}

.search-icon {
  width: 16px;
  height: 16px;
  color: var(--color-gray);
  margin-left: 0.25rem;
  transition: color 0.3s ease;
}

.search-container:focus-within .search-icon {
  color: var(--color-gold);
}

input.searchInput, 
input[type="text"].searchInput {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem !important;
  width: 120px;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.searchInput:focus {
  outline: none;
  width: 180px;
}

.searchInput::placeholder {
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Page Header (for inner pages) */
.page-header {
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 3rem;
  background-color: var(--color-charcoal);
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-subtitle {
  color: var(--color-gold);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Footer Styles */
.footer-wrapper {
  margin-top: 10rem;
  background-color: #ffffff;
  position: relative;
  border-top: 1px solid #f0f0f0;
}

.relative {
  position: relative;
}

.newsletter-box {
  background-color: #FFF3C8;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem 4rem;
  color: var(--foreground);
  transform: translateY(-50%);
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
  margin-bottom: -10rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .newsletter-box {
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-20%);
    margin-bottom: -4rem;
    gap: 1.5rem;
    text-align: center;
  }
}

.newsletter-img {
  flex: 0 0 200px;
}
.newsletter-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.newsletter-content {
  flex: 1;
}

.newsletter-title {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  line-height: 1.3;
}

.newsletter-desc {
  font-size: 0.95rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
}

.newsletter-form {
  margin-bottom: 1rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 2.5rem;
  padding: 0.4rem;
  max-width: 450px;
}

@media (max-width: 768px) {
  .input-wrapper {
    margin: 0 auto;
  }
}

.mail-icon {
  margin-left: 1rem;
  color: var(--color-gray);
  display: flex;
}

.input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--foreground);
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  outline: none;
}
.input-wrapper input::placeholder {
  color: var(--color-gray);
}

.input-wrapper button {
  background-color: var(--foreground);
  color: #ffffff;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.input-wrapper button:hover {
  background-color: var(--color-gold);
  color: #ffffff;
}

.newsletter-disclaimer {
  font-size: 0.8rem;
  color: var(--color-gray);
  line-height: 1.4;
  display: block;
}
.newsletter-disclaimer a {
  color: var(--foreground);
  text-decoration: underline;
}

/* Footer Main Layout */
.footer-main {
  position: relative;
  z-index: 2;
  padding: 6rem 0 2rem 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: 1 / -1;
  }
  .contact-col {
    grid-column: 1 / -1;
  }
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-gray);
  transition: color 0.3s;
}

.footer-col ul a {
  color: inherit;
  font-weight: 500;
}
.footer-col ul a:hover {
  color: var(--color-gold);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--background);
  color: var(--foreground);
  transition: all 0.3s ease;
}
.social-links a:hover {
  background-color: var(--color-gold);
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #f0f0f0;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-gray);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a:hover {
  color: var(--foreground);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--color-charcoal-light);
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 101;
  border-radius: 4px;
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
}

.dropdown-content a {
  color: var(--color-white);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: var(--color-gold);
  color: var(--background);
}

  display: block;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background: var(--foreground);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  animation: slideIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  opacity: 0;
  transform: translateX(100%);
}

.toast.hiding {
  animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
  to { transform: translateX(100%); opacity: 0; }
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-gray);
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--foreground);
}

/* MOBILE RESPONSIVENESS (GLOBAL) */

.mobile-menu-btn, .mobile-search-btn {
  display: none;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  z-index: 1000;
}
.sticky .mobile-menu-btn, .sticky .mobile-search-btn {
  color: #000;
}

@media (max-width: 900px) {
  .header {
    grid-template-columns: 1fr auto 1fr;
  }
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin-left: 0;
  }
  .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }
  .mobile-search-btn {
    display: flex;
    align-items: center;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  
  /* Mobile Menu Overlay */
  .header .nav-left, .header .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 1.5rem;
    padding: 1rem 0;
  }
  
  .header.mobile-menu-active {
    display: flex;
    background-color: rgba(250, 250, 250, 0.98);
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
  }
  
  .header.mobile-menu-active .nav-left,
  .header.mobile-menu-active .nav-right {
    display: flex;
  }
  
  .header.mobile-menu-active .navLink {
    color: #000;
    font-size: 1.2rem;
  }
  
  .header.mobile-menu-active .mobile-menu-btn {
    position: absolute;
    top: 1.5rem;
    right: 5%;
    color: #000;
  }
  
  .header.mobile-menu-active .mobile-search-btn {
    display: none;
  }
  
  .header.mobile-menu-active .logo {
    order: -1;
    margin-bottom: 1rem;
  }

  .header.mobile-menu-active .nav-left {
    order: 1;
    padding-bottom: 0.75rem;
  }

  .header.mobile-menu-active .nav-right {
    order: 2;
    padding-top: 0.75rem;
  }

  .header.mobile-menu-active .search-container {
    order: 10;
    margin-top: 1rem;
    justify-content: center;
  }
  
  /* Stack Footer */
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  
  .footer-contact-info p {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-col ul {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}


/* --- about.css --- */
/* Custom styles for about.html */


/* --- account.css --- */
/* Account Page Styles */
.account-page {
  background-color: var(--color-charcoal-light);
}

.account-hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 2rem;
  background-color: #ffffff;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.account-hero h1 {
  font-size: 2.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.account-hero p {
  color: var(--color-gray);
  font-size: 1.1rem;
}

.account-dashboard {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding: 4rem var(--container-inset) 8rem;
  align-items: start;
}

@media (max-width: 992px) {
  .account-dashboard {
    grid-template-columns: 1fr;
  }
}

.account-sidebar {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.account-nav {
  display: flex;
  flex-direction: column;
}

.account-tab-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.account-tab-btn:hover {
  background: var(--color-charcoal-light);
  color: var(--foreground);
}

.account-tab-btn.active {
  border-left-color: var(--color-gold);
  color: var(--color-gold);
  background: #faf8f5;
}

.logout-btn {
  margin-top: 1rem;
  border-top: 1px solid #f0f0f0;
  color: #d32f2f;
}
.logout-btn:hover {
  background: #fff5f5;
  color: #b71c1c;
}

.account-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  min-height: 500px;
}

.account-tab-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.account-tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.account-tab-pane h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.tab-description {
  color: var(--color-gray);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.account-form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.account-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.account-form input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fafafa;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.account-form input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(179, 132, 79, 0.1);
}

.save-btn {
  align-self: flex-start;
  margin-top: 1rem;
}

/* Orders Tab */
.order-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-card {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}

.order-header {
  background: #fafafa;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

.order-id {
  font-weight: 600;
  color: var(--foreground);
  display: block;
}

.order-date {
  font-size: 0.85rem;
  color: var(--color-gray);
}

.order-status {
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-delivered { background: #e8f5e9; color: #2e7d32; }
.status-processing { background: #fff3e0; color: #ef6c00; }

.order-body {
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 600px) {
  .order-body {
    flex-direction: column;
    align-items: flex-start;
  }
}

.order-item-img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
}

.order-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item-details {
  flex: 1;
}

.order-item-details h4 {
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.order-item-details p {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.order-item-details strong {
  color: var(--color-gold);
}

.order-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-outline {
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  background: transparent;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--foreground);
  color: var(--foreground);
}

/* Addresses Tab */
.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.address-card {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.address-header h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
}

.badge {
  background: #f5f5f5;
  color: var(--color-gray);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.address-card address {
  font-style: normal;
  color: var(--color-gray);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.address-actions {
  display: flex;
  gap: 1rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
}

.btn-text {
  background: transparent;
  border: none;
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
}

.btn-text:hover { text-decoration: underline; }
.text-danger { color: #d32f2f; }

.add-new {
  border: 1px dashed #cccccc;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  cursor: pointer;
  transition: all 0.3s;
}

.add-new:hover {
  border-color: var(--color-gold);
  background: #fffdfa;
}

.add-address-btn {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
  font-weight: 500;
  cursor: pointer;
}

/* Settings Tab */
.settings-group {
  margin-bottom: 2.5rem;
}

.settings-group h3 {
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.5rem;
}

.toggle-switch {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.toggle-switch input {
  display: none;
}

.slider {
  position: relative;
  width: 44px;
  height: 24px;
  background-color: #ccc;
  border-radius: 24px;
  transition: 0.3s;
}

.slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .slider {
  background-color: var(--color-gold);
}

.toggle-switch input:checked + .slider:before {
  transform: translateX(20px);
}

.toggle-label {
  font-size: 0.95rem;
  color: var(--foreground);
}


/* MOBILE RESPONSIVENESS (ACCOUNT) */
@media (max-width: 768px) {
  .account-dashboard {
    grid-template-columns: 1fr;
  }
  .account-sidebar {
    position: static;
    display: flex;
    overflow-x: auto;
    padding: 1rem;
    white-space: nowrap;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
  .sidebar-nav {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .sidebar-link {
    padding: 0.5rem 1rem;
  }
  .account-content {
    padding: 2rem 1rem;
  }
}


/* --- armchairs.css --- */
/* Surfaces Page Product Grid */
.surfaces-section {
  padding: 4rem 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-charcoal-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-price {
  font-family: var(--font-sans);
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1rem;
}



/* --- catalog.css --- */
/* Collections Page specific */
.gallery {
  padding: 5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(250, 250, 250, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
}



/* --- coffee-tables.css --- */
/* Surfaces Page Product Grid */
.surfaces-section {
  padding: 4rem 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-charcoal-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-price {
  font-family: var(--font-sans);
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1rem;
}



/* --- collections.css --- */
/* Custom styles for collections.html */


/* --- community.css --- */
/* Custom styles for community.html */

/* Hero Section */
.community-hero {
    background: linear-gradient(rgba(250, 250, 250, 0.85), rgba(250, 250, 250, 0.85)), url('../assets/images/exp-living.png') no-repeat center center / cover;
    color: var(--color-white); /* Dark text */
    padding: 10rem 2rem 8rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.community-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.community-hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(10, 25, 47, 0.85);
}

/* Pillars Section */
.pillars-section {
    padding: 6rem 1rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.pillar-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
}

.pillar-card svg {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pillar-card p {
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Events Section */
.events-section {
    padding: 4rem 1rem 8rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-gray);
    font-size: 1.1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* Event Card */
.event-card {
    background: var(--color-charcoal);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.event-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-date {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--color-white);
    color: var(--color-charcoal);
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
}

.event-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-type {
    color: var(--color-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-location svg {
    color: var(--color-gold);
}

.event-desc {
    color: var(--color-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.event-status {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-status.open {
    color: #2e7d32;
}

.event-status.waitlist {
    color: #ed6c02;
}

.event-footer .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .community-hero h1 {
        font-size: 2.8rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
}


/* --- contact.css --- */
/* Forms (Trade Portal) */
.form-container {
  max-width: 600px;
  margin: 5rem auto;
  padding: 3rem;
  background-color: var(--color-charcoal-light);
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 1rem;
  background-color: var(--color-charcoal);
  border: 1px solid #ccc;
  color: var(--color-white);
  font-family: var(--font-sans);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
}



/* --- craftsmanship.css --- */
/* Custom styles for craftsmanship.html */


/* --- dining-chairs.css --- */
/* Surfaces Page Product Grid */
.surfaces-section {
  padding: 4rem 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-charcoal-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-price {
  font-family: var(--font-sans);
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1rem;
}



/* --- dining-tables.css --- */
/* Surfaces Page Product Grid */
.surfaces-section {
  padding: 4rem 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-charcoal-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-price {
  font-family: var(--font-sans);
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1rem;
}



/* --- feedback.css --- */
/* Custom styles for feedback.html */

/* Feedback Hero */
.feedback-hero {
    background: linear-gradient(rgba(250, 250, 250, 0.95), rgba(250, 250, 250, 0.9)), url('../assets/images/exp-office.png') no-repeat center center / cover;
    color: var(--color-white); /* Dark navy */
    padding: 10rem 2rem 6rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.feedback-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.feedback-hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(10, 25, 47, 0.75);
}

/* Split Section Layout */
.feedback-section {
    padding: 4rem 1rem 6rem;
}

.feedback-split {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-visual {
    flex: 1;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.visual-overlay {
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent);
    padding: 4rem 3rem 3rem;
    width: 100%;
    color: #fff;
}

.visual-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.visual-overlay p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.brand-signature {
    font-size: 0.95rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Feedback Form Styles */
.feedback-form-container {
    flex: 1;
    padding: 4rem;
    background: #fff;
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--color-charcoal);
    font-size: 0.95rem;
}

/* CSS Star Rating */
.rating-group {
    margin-bottom: 3rem;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin: 0;
    color: #e4e4e7;
    transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating label svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Highlight stars on hover and checked */
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--color-gold);
}

.star-rating label:hover {
    transform: scale(1.1);
}

/* Select, Inputs & Textarea */
input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-charcoal);
    transition: all 0.3s ease;
}

.select-wrapper {
    position: relative;
}

select {
    appearance: none;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--color-gray);
    pointer-events: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    background: var(--color-white); /* Dark */
    color: #fff;
    border-radius: 8px;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

/* How We Listen Section */
.how-we-listen {
    padding: 6rem 1rem;
    background: #f4f4f5;
}

.listen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.listen-card {
    text-align: center;
}

.listen-card svg {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.listen-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.listen-card p {
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .feedback-split {
        flex-direction: column;
    }
    
    .feedback-visual {
        min-height: 350px;
    }
    
    .feedback-form-container {
        padding: 3rem 2rem;
    }
    
    .listen-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
@media (max-width: 768px) {
    .feedback-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}


/* --- form.css --- */
/* Surfaces Page Product Grid */
.surfaces-section {
  padding: 4rem 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-charcoal-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-price {
  font-family: var(--font-sans);
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1rem;
}



/* --- help-center.css --- */
/* Custom styles for help-center.html */

/* Help Hero & Search */
.help-hero {
    background: linear-gradient(rgba(250, 250, 250, 0.9), rgba(250, 250, 250, 0.8)), url('../assets/images/exp-bathroom.png') no-repeat center center / cover;
    color: var(--color-white); /* Dark text for light theme */
    padding: 10rem 2rem 8rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.help-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.hero-search {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-search-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gray);
    margin-right: 1rem;
}

.hero-search-input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    background: transparent;
    color: var(--color-charcoal);
}

.hero-search-input::placeholder {
    color: #999;
}

.search-btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    background: var(--color-white); /* Dark */
    color: #fff;
}

/* Help Categories */
.help-categories-section {
    padding: 6rem 1rem 4rem;
    background: #fafafa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--color-charcoal);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.cat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.cat-icon svg {
    width: 28px;
    height: 28px;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.category-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1rem 6rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-header p {
    color: var(--color-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.8rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-white); /* Dark */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-toggle:hover {
    color: var(--color-gold);
}

.faq-toggle .chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: var(--color-gray);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-content p {
    padding-bottom: 1.8rem;
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Active State */
.faq-item.active .faq-toggle {
    color: var(--color-gold);
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

/* CTA Section */
.help-cta-section {
    background: var(--color-white); /* Dark */
    color: #fff;
}

.help-cta-grid {
    display: flex;
    flex-wrap: wrap;
}

.cta-image {
    flex: 1 1 50%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.cta-content {
    flex: 1 1 50%;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Responsive */
@media (max-width: 768px) {
    .help-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-search {
        flex-direction: column;
        border-radius: 12px;
        padding: 1rem;
    }
    
    .hero-search-input {
        width: 100%;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .cta-content {
        padding: 4rem 2rem;
    }
}


/* --- index.css --- */
/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}

.heroBackground {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.heroBackground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250, 250, 250, 0.25) 0%, rgba(250, 250, 250, 0.4) 50%, rgba(250, 250, 250, 0.25) 100%),
              linear-gradient(to bottom, rgba(250, 250, 250, 0.8) 0%, transparent 20%);
  z-index: 1;
}

.heroContent {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}

.heroTitle {
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--color-white);
  line-height: 1.1;
  margin: 0;
}

.heroDescription {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--foreground);
  font-weight: 500;
  max-width: 60ch;
  line-height: 1.6;
}
/* Quick Categories */
.quick-categories {
  padding: 3rem 0 1rem 0;
  background-color: var(--background);
}

.quick-cat-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.quick-cat-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #f1f3f5;
  padding: 0.75rem;
  border-radius: 1.25rem;
}

.quick-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: #ffffff;
  width: 130px;
  height: 95px;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--foreground);
  border: 1px solid #f0f0f0;
}

.quick-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.quick-cat-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-cat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray);
}

/* Intro Text */
.introText {
  padding: 4rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--background);
}

.introHeading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--foreground);
  max-width: 25ch;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.introBody {
  font-family: var(--font-sans);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Explore Collection Section */
.explore-section {
  padding: var(--spacing-section) 0;
  background-color: var(--background);
  overflow: hidden;
}

.explore-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.explore-grid > * {
  min-width: 0;
}

@media (min-width: 1024px) {
  .explore-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  }
}

.explore-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.explore-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  width: fit-content;
}

.explore-title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
}

.text-accent {
  color: var(--color-gold);
}

.explore-desc {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
}

.explore-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--color-gold);
  color: #ffffff;
  border-radius: 2rem;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: var(--foreground);
}

.explore-link {
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.explore-ratings {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.explore-avatars {
  display: flex;
  align-items: center;
}

.explore-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -10px;
}
.explore-avatars img:first-child {
  margin-left: 0;
}

.explore-star-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-left: -10px;
  border: 2px solid #ffffff;
  z-index: 1;
}

.explore-rating-text {
  display: flex;
  flex-direction: column;
}

.explore-rating-text strong {
  color: var(--foreground);
  font-size: 1rem;
}

.explore-rating-text span {
  color: var(--color-gray);
  font-size: 0.8rem;
}

/* Slider / Cards */
.explore-slider-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.explore-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.explore-slider::-webkit-scrollbar {
  display: none;
}

.explore-card {
  flex: 0 0 calc(100% - 2rem);
  scroll-snap-align: start;
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .explore-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (min-width: 1024px) {
  .explore-card {
    flex: 0 0 calc((100% - 3rem) / 3);
  }
}

.explore-card:hover {
  transform: translateY(-5px);
}

.explore-card-img {
  width: 100%;
  height: 200px;
  border-radius: 1rem;
  overflow: hidden;
}

.explore-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem 0.5rem;
}

.explore-card-info h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.explore-card-info span {
  font-size: 0.85rem;
  color: var(--color-gray);
}

.explore-card-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.explore-card-btn:hover {
  background-color: var(--foreground);
}

.explore-controls {
  display: flex;
  gap: 1rem;
  padding-left: 1rem;
}

.control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: opacity 0.3s;
}

.control-btn:hover {
  opacity: 0.8;
}

.prev-btn {
  background-color: var(--color-gold);
}

.next-btn {
  background-color: var(--color-gold);
}

/* Categories Section */
.categories {
  padding: var(--spacing-section) 0;
  background-color: var(--background);
}

.categories-header {
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .categories-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .categories-header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .categories-header .explore-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

.categoriesGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .categoriesGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.categoryCard {
  background-color: #f5f5f5;
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.categoryCard:hover {
  transform: translateY(-5px);
}

.categoryCardLarge {
  flex-direction: row;
  min-height: 600px;
}

.categoryCardSmall {
  flex-direction: row;
  min-height: 290px;
}

.categoryCardStack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.categoryCardContent {
  flex: 1;
  z-index: 2;
  position: relative;
}

.categoryBadge {
  display: inline-block;
  background-color: #ffffff;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.categoryTitle {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.categoryDesc {
  color: var(--color-gray);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  max-width: 200px;
  line-height: 1.5;
}

.categoryList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.categoryList li {
  color: var(--color-gray);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.categoryList li:hover {
  color: var(--color-gold);
}

.categoryImage {
  position: absolute;
  right: -2rem;
  bottom: 0;
  height: 85%;
  z-index: 1;
}

.categoryCardSmall .categoryImage {
  height: 80%;
  right: -1rem;
}

.categoryImage img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Features Grid */
.features {
  padding: var(--spacing-section) 0;
  background-color: var(--color-charcoal-light);
}

.featuresGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
  align-items: center;
}

@media (min-width: 1024px) {
  .featuresGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.featuresContent {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.featuresTitle {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--color-white);
}

.featuresDesc {
  color: var(--color-gray);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 50ch;
}

.featuresImages {
  display: flex;
  gap: 1rem;
  height: 600px;
}

.featureImageLarge {
  flex: 2;
  position: relative;
  overflow: hidden;
}

.featureImageSmall {
  flex: 1;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.featureImageLarge img,
.featureImageSmall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featureImageLarge:hover img,
.featureImageSmall:hover img {
  transform: scale(1.05);
}

/* Why Us / Craftsmanship */
.whyUs {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.whyUsBackground {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.whyUsBackground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whyUsOverlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 250, 250, 0.85);
  z-index: 1;
}

.whyUsContent {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .whyUsContent {
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
  }
}

.whyUsTitle {
  font-size: 3rem;
  color: var(--color-gold);
}

.whyUsList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.whyUsListItem {
  color: var(--color-white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
}

.whyUsListItem::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background-color: var(--color-gold);
}

.whyUsCenter {
  text-align: center;
  padding: 0 2rem;
}

.whyUsCenter h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--color-white);
  line-height: 1.3;
}

.whyUsRight p {
  color: var(--color-gray);
  line-height: 1.6;
  font-size: 1.125rem;
}

/* B2B / Work With Us */
.b2b {
  padding: var(--spacing-section) 0;
  background-color: var(--color-charcoal);
}

.b2bGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

@media (min-width: 1024px) {
  .b2bGrid {
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
  }
}

.b2bText {
  grid-column: 1 / span 6;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.b2bSubtitle {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
}

.b2bTitle {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--color-white);
  line-height: 1.1;
}

.b2bDesc {
  color: var(--color-gray);
  font-size: 1.125rem;
  line-height: 1.6;
}

.b2bImage {
  grid-column: 7 / -1;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.b2bImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* MOBILE RESPONSIVENESS (INDEX) */
@media (max-width: 1024px) {
  /* Stack Hero */
  .hero {
    flex-direction: column;
    padding-top: 8rem;
    height: auto;
    text-align: center;
  }
  .hero-content {
    align-items: center;
    padding-right: 0;
    margin-bottom: 3rem;
  }
  .hero-image {
    width: 100%;
    height: 50vh;
  }
  
  /* Stack Category Cards */
  .categoriesGrid {
    grid-template-columns: 1fr;
  }
  .categoryCard {
    padding: 1.5rem;
  }
  .categoryTitle {
    font-size: 1.25rem;
    word-break: break-word;
  }
  .categoryDesc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .categoryList {
    font-size: 0.85rem;
  }
  .categoryCardContent {
    max-width: 50%;
  }
  .categoryCardStack {
    grid-template-columns: 1fr;
  }
  .categoryCardLarge .categoryImage {
    height: 60%;
    right: -1rem;
  }
  .categoryCardLarge .categoryImage img {
    max-height: 220px;
  }
  .categoryCardSmall .categoryImage {
    height: auto;
    width: 45%;
    max-height: 70%;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .categoryCardSmall .categoryImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
  }
  
  /* Stack Features & B2B */
  .featuresGrid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .featuresImages {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .featureImageSmall {
    display: none;
  }
  
  .whyUsContent {
    grid-template-columns: 1fr;
  }
  
  .b2bGrid {
    grid-template-columns: 1fr;
  }
  .b2bImage, .b2bContent {
    grid-column: span 1;
  }
  
  /* Quick Categories Scroll */
  .quick-cat-group {
    flex-wrap: wrap;
    justify-content: center;
  }
  .quick-cat-card {
    flex: 0 0 calc(50% - 1rem);
  }
  
  /* Explore Slider full width */
  .explore-grid {
    grid-template-columns: 1fr;
  }
  .explore-content {
    margin-bottom: 2rem;
    text-align: center;
  }
  .explore-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .introHeading {
    font-size: 2rem;
  }
  .categoryTitle {
    font-size: 2rem;
  }
  .featuresTitle {
    font-size: 2.5rem;
  }
}


/* --- legal.css --- */
/* Shared styles for Legal Pages */

.legal-hero {
    background: #ffffff;
    color: #0a192f;
    padding: 10rem 2rem 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: #0a192f;
}

.legal-hero p {
    font-size: 1.1rem;
    color: rgba(10, 25, 47, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.legal-content-section {
    padding: 5rem 1rem 8rem;
    background: #fafafa;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    color: var(--color-charcoal, #0a192f);
}

.legal-document h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--color-gold);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a3525; /* var(--color-gray) fallback */
}

.legal-document ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.legal-document li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #4a3525;
}

.last-updated {
    font-style: italic;
    color: #a1a1aa !important;
    margin-bottom: 3rem !important;
    font-size: 0.95rem !important;
}

@media (max-width: 768px) {
    .legal-document {
        padding: 2rem;
    }
    
    .legal-hero h1 {
        font-size: 2.2rem;
    }
}


/* --- projects.css --- */
/* Custom styles for projects.html */


/* --- search.css --- */
/* Custom styles for search.html */


/* --- services.css --- */
/* Custom styles for services.html */

/* Hero Section */
.services-hero {
    background: linear-gradient(rgba(250, 250, 250, 0.9), rgba(250, 250, 250, 0.8)), url('../assets/images/exp-office.png') no-repeat center center / cover;
    color: var(--color-white); /* Dark blue text */
    padding: 10rem 2rem 8rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    display: block;
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.services-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.services-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(10, 25, 47, 0.75);
}

/* Services Showcase (Zig-Zag) */
.services-showcase {
    padding: 4rem 0 0;
    background: #fafafa;
}

.service-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 600px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image-col {
    flex: 1;
    overflow: hidden;
}

.service-image-col .image-wrapper {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.service-row:hover .image-wrapper {
    transform: scale(1.05);
}

.service-text-col {
    flex: 1;
    padding: 6rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-white); /* Dark navy */
    color: var(--color-charcoal); /* White text */
}

/* Alternate row styling */
.service-row.reverse .service-text-col {
    background: #ffffff;
    color: var(--color-white);
}

.service-row.reverse .service-text-col p {
    color: rgba(10, 25, 47, 0.7);
}

.service-row.reverse .service-text-col .service-features li {
    color: rgba(10, 25, 47, 0.8);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-text-col h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-text-col p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-features svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
}

/* Our Process Timeline */
.process-section {
    padding: 8rem 1rem;
    background: #f4f4f5;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.process-header p {
    color: var(--color-gray);
    font-size: 1.1rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Timeline connecting line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--color-white); /* Dark */
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--color-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Call to Action */
.services-cta {
    padding: 6rem 1rem;
    background: var(--color-white); /* Dark blue */
    color: var(--color-charcoal); /* White text */
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .service-row, .service-row.reverse {
        flex-direction: column;
    }
    
    .service-image-col {
        height: 400px;
        flex: none;
    }
    
    .service-text-col {
        padding: 4rem 2rem;
        flex: none;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .process-timeline::before {
        display: none;
    }
}
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 3rem;
    }
}


/* --- showrooms.css --- */
/* Custom styles for showrooms.html */


/* --- surfaces.css --- */
/* Surfaces Page Product Grid */
.surfaces-section {
  padding: 4rem 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-charcoal-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-price {
  font-family: var(--font-sans);
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1rem;
}



/* --- testimonial.css --- */
/* Custom styles for testimonial.html */

/* Hero Section */
.testimonial-hero {
    background: linear-gradient(rgba(250, 250, 250, 0.85), rgba(250, 250, 250, 0.85)), url('../assets/images/hero.png') no-repeat center center / cover;
    color: var(--color-white); /* Dark blue text */
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.testimonial-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.testimonial-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(10, 25, 47, 0.85); /* Dark blue with opacity */
}

/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 4rem 1rem;
}

/* Testimonial Cards */
.testimonial-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Standard Card */
.testimonial-card.standard {
    background: var(--color-charcoal); /* This is white in global.css */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card.standard:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card.standard .testimonial-content {
    color: var(--color-white); /* This is dark blue #0a192f in global.css */
}

.testimonial-card.standard .quote-icon {
    color: var(--color-gold);
}

/* Highlighted Image Card */
.testimonial-card.highlighted {
    background-size: cover;
    background-position: center;
}

.testimonial-card.highlighted .testimonial-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.5));
    z-index: 1;
}

.testimonial-card.highlighted .testimonial-content {
    position: relative;
    z-index: 2;
    color: var(--color-charcoal); /* This is white */
}

.testimonial-card.highlighted .quote-icon {
    color: rgba(255, 255, 255, 0.4);
}

.testimonial-card.highlighted:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Common Content Styles */
.quote-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.client-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-charcoal); /* White text */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

.client-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.client-details span {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-hero h1 {
        font-size: 2.5rem;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}


/* --- trade-portal.css --- */
/* Custom styles for trade-portal.html */

/* Trade Hero */
.trade-hero {
    background: linear-gradient(rgba(250, 250, 250, 0.9), rgba(250, 250, 250, 0.85)), url('../assets/images/exp-living.png') no-repeat center center / cover;
    color: var(--color-charcoal);
    padding: 10rem 2rem 8rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.trade-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #0a192f;
}

.trade-hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(10, 25, 47, 0.85);
}

/* Trade Benefits Section */
.trade-benefits {
    padding: 6rem 1rem;
    background: #fafafa;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-header p {
    color: var(--color-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
    border-color: var(--color-gold);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--color-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Portal Split Section */
.portal-section {
    padding: 4rem 1rem 8rem;
    background: #fafafa;
}

.portal-split {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    max-width: 1100px;
    margin: 0 auto;
}

.portal-panel {
    flex: 1;
    padding: 4rem 3rem;
}

.login-panel {
    background: var(--color-white); /* Dark Navy */
    color: #fff;
}

.apply-panel {
    background: #fff;
}

.portal-panel h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.login-panel h2 {
    color: #fff;
}

.apply-panel h2 {
    color: var(--color-charcoal);
}

.portal-panel p {
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.login-panel p {
    color: rgba(255, 255, 255, 0.8);
}

.apply-panel p {
    color: var(--color-gray);
}

/* Form Styles */
.portal-form .form-group {
    margin-bottom: 1.5rem;
}

.portal-form .form-row {
    display: flex;
    gap: 1rem;
}

.portal-form .form-group.half {
    flex: 1;
}

.portal-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.login-panel label {
    color: rgba(255, 255, 255, 0.9);
}

.apply-panel label {
    color: var(--color-charcoal);
}

.portal-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-panel input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.login-panel input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
}

.apply-panel input {
    background: #fafafa;
    border: 1px solid #e4e4e7;
    color: var(--color-charcoal);
}

.apply-panel input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.remember-me input {
    width: auto;
}

.forgot-password {
    color: var(--color-gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.forgot-password:hover {
    opacity: 0.8;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
}

.login-panel .submit-btn {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.login-panel .submit-btn:hover {
    background: transparent;
}

/* Responsive */
@media (max-width: 992px) {
    .portal-split {
        flex-direction: column;
    }
    
    .portal-panel {
        padding: 3rem 2rem;
    }
}
@media (max-width: 768px) {
    .trade-hero h1 {
        font-size: 2.5rem;
    }
    
    .portal-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}


/* --- webinars.css --- */
/* Custom styles for webinars.html */

/* --- Floating Action Button (FAB) --- */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

.fab-action {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-container.active .fab-action,
.fab-container:hover .fab-action {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fab-container.active .fab-action:nth-child(2),
.fab-container:hover .fab-action:nth-child(2) { transition-delay: 0.05s; }
.fab-container.active .fab-action:nth-child(3),
.fab-container:hover .fab-action:nth-child(3) { transition-delay: 0.1s; }

.fab-email {
    background-color: #555555;
}

.fab-whatsapp {
    background-color: #25D366;
}

.fab-action svg {
    width: 24px;
    height: 24px;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #b46535;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.fab-main svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
    position: absolute;
}

.fab-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.fab-icon-chat {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.fab-container.active .fab-icon-chat,
.fab-container:hover .fab-icon-chat {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.fab-container.active .fab-icon-close,
.fab-container:hover .fab-icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.fab-action:hover, .fab-main:hover {
    transform: scale(1.05);
}

.fab-container.active .fab-action:hover,
.fab-container:hover .fab-action:hover {
    transform: scale(1.1);
}
