/* Theme Variables */
:root {
  /* Brand Colors from Logo */
  --gold-primary: #B8944A;
  --gold-dark: #9A7A3A;
  --gold-light: #D4B068;
  --gold-lighter: #E8D4A0;

  /* Header */
  --header-height: 80px;
  --header-bg: #ffffff;
  --header-text: #1a1a1a;
  --header-shadow: rgba(184, 148, 74, 0.15);
  --nav-link-hover: #B8944A;
  --mobile-overlay: rgba(0, 0, 0, 0.5);
  --border-color: rgba(0, 0, 0, 0.1);

  /* Light Mode Colors */
  --bg-primary: #FAFAFA;
  --bg-secondary: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #6B6B6B;
  --border-light: #E5E5E5;

  /* Accent Colors */
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
}

[data-theme='dark'] {
  /* Header Dark */
  --header-bg: #1a1a1a;
  --header-text: #ffffff;
  --header-shadow: rgba(184, 148, 74, 0.25);
  --nav-link-hover: #D4B068;
  --mobile-overlay: rgba(0, 0, 0, 0.7);
  --border-color: rgba(255, 255, 255, 0.1);

  /* Dark Mode Colors */
  --bg-primary: #0D0D0D;
  --bg-secondary: #1A1A1A;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --border-light: #2A2A2A;
}

/* App Container */
.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
}

/* ==================== HEADER STYLES ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--header-bg);
  color: var(--header-text);
  z-index: 1002;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.header-scrolled {
  box-shadow: 0 2px 20px var(--header-shadow);
  backdrop-filter: blur(10px);
  background: var(--header-bg);
}

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

/* Logo */
.header-logo {
  flex-shrink: 0;
  z-index: 1001;
}

.header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 140px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.header-logo a:hover .logo-image {
  transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  flex: 1;
  justify-content: center;
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  color: var(--header-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--nav-link-hover);
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--nav-link-hover);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown Navigation */
.nav-item-dropdown {
  position: relative;
}

.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

.dropdown-icon-open {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: fixed;
  top: var(--header-height);
  transform: translateX(-50%) translateY(-10px);
  background: var(--header-bg);
  border: 1px solid var(--border-color);
  border-radius: 0 0 12px 12px;
  border-top: 2px solid var(--gold-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 999;
  margin-top: -1px;
}

.dropdown-menu-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

[data-theme='dark'] .dropdown-menu {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
  list-style: none;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--header-text);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 4px;
  height: 60%;
  background: var(--gold-primary);
  border-radius: 0 2px 2px 0;
  transition: transform 0.2s ease;
}

.dropdown-link:hover {
  background: var(--gold-primary);
  color: white;
  padding-left: 2rem;
}

.dropdown-link:hover::before {
  transform: translateY(-50%) scaleX(1);
}

/* Mobile Dropdown */
.dropdown-menu-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--bg-secondary);
  border-radius: 8px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.dropdown-menu-mobile .dropdown-link {
  padding: 1rem 2rem 1rem 3rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-menu-mobile .dropdown-item:last-child .dropdown-link {
  border-bottom: none;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1001;
}

/* Theme Toggle */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  background: transparent;
  color: var(--gold-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
}

[data-theme='dark'] .theme-toggle {
  color: var(--gold-light);
}

.theme-toggle::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.theme-toggle:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: white;
  border-color: transparent;
  transform: rotate(180deg);
  box-shadow: 0 4px 12px rgba(184, 148, 74, 0.4);
}

.theme-toggle:hover::before {
  opacity: 1;
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1003;
}

.menu-toggle-bar {
  width: 100%;
  height: 2px;
  background: var(--header-text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle-active .menu-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle-active .menu-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle-active .menu-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: calc(100vh - var(--header-height));
  background: var(--header-bg);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -2px 0 20px var(--header-shadow);
  border-left: 1px solid var(--border-color);
  z-index: 1001;
}

.mobile-nav-open {
  transform: translateX(0);
}

.mobile-nav .nav-list {
  flex-direction: column;
  gap: 0;
  padding: 2rem 0;
  align-items: stretch;
}

.mobile-nav .nav-item {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav .nav-link {
  padding: 1.25rem 2rem;
  border-radius: 0;
  font-size: 1.1rem;
  display: block;
  width: 100%;
  text-align: left;
}

.mobile-nav .nav-link::after {
  display: none;
}

.mobile-nav .nav-link:hover {
  background: var(--nav-link-hover);
  color: white;
}

.mobile-nav .nav-link-dropdown {
  padding: 1.25rem 2rem;
  width: 100%;
  justify-content: space-between;
  text-align: left;
  font-size: 1.1rem;
  color: var(--header-text);
}

.mobile-nav .nav-link-dropdown:hover {
  background: var(--nav-link-hover);
  color: white;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mobile-overlay);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Tablet and Desktop */
@media (min-width: 769px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .header-container {
    padding: 0 1rem;
  }

  .logo-image {
    height: 90px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-list {
    gap: 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }

  .header-container {
    padding: 0 0.75rem;
    gap: 1rem;
  }

  .logo-image {
    height: 70px;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
  }

  .mobile-nav {
    width: 100%;
    max-width: 100%;
  }
}

/* Button Component Styles */
.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(184, 148, 74, 0.3);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 148, 74, 0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--gold-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 148, 74, 0.3);
}

.btn-danger {
  background: var(--error);
  color: white;
}

.btn-danger:hover:not(:disabled) {
  background: #DC2626;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.btn-full-width {
  width: 100%;
}

/* Home Page Styles */
/* Content will be added here as needed */

/* ==================== FOOTER STYLES ==================== */
.footer {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-top: 2px solid var(--gold-primary);
  margin-top: auto;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand {
  grid-column: span 1;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-primary);
  color: var(--text-secondary);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.footer-social-link:hover {
  background: var(--gold-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(184, 148, 74, 0.3);
  border-color: var(--gold-primary);
}

.footer-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--gold-primary);
  padding-left: 0.5rem;
}

.footer-link:hover::before {
  width: 100%;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.footer-credits {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
}

.footer-heart {
  color: var(--gold-primary);
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  10%,
  30% {
    transform: scale(1.1);
  }

  20%,
  40% {
    transform: scale(1);
  }
}

/* Dark mode specific styles */
[data-theme='dark'] .footer {
  background: var(--bg-secondary);
  border-top-color: var(--gold-primary);
}

[data-theme='dark'] .footer-social-link {
  background: rgba(184, 148, 74, 0.1);
}

[data-theme='dark'] .footer-social-link:hover {
  background: var(--gold-primary);
}

/* Responsive Footer Styles */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .footer-container {
    padding: 2rem 1.5rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-brand-name {
    font-size: 1.3rem;
  }

  .footer-section-title {
    font-size: 1rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    gap: 0.75rem;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-page {
  min-height: calc(100vh - var(--header-height));
  /* padding-top: var(--header-height); */
}

/* Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
  padding: 4rem 2rem;
  background: var(--bg-primary);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-info-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 32px rgba(184, 148, 74, 0.25);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.contact-info-content {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-info-detail {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Contact Form Section */
.contact-form-section {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-container {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-form-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Contact Alerts */
.contact-alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-alert-success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.contact-alert-error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-required {
  color: var(--error);
}

.contact-form-input,
.contact-form-textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-secondary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(184, 148, 74, 0.1);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-input-error {
  border-color: var(--error);
}

.contact-form-input-error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-form-error {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: -0.25rem;
}

.contact-form-submit {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(184, 148, 74, 0.3);
}

.contact-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 148, 74, 0.4);
}

.contact-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Contact Map */
.contact-map-container {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-map-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.contact-map {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.contact-map iframe {
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.contact-map:hover iframe {
  filter: grayscale(0%);
}

.contact-map-info {
  text-align: center;
}

.contact-map-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Dark mode adjustments */
[data-theme='dark'] .contact-info-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme='dark'] .contact-form-container,
[data-theme='dark'] .contact-map-container {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2.25rem;
  }

  .contact-hero-subtitle {
    font-size: 1.1rem;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 3rem 1.5rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form-container,
  .contact-map-container {
    padding: 2rem;
  }

  .contact-form-title,
  .contact-map-title {
    font-size: 1.75rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-map {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 3rem 1.5rem;
  }

  .contact-hero-title {
    font-size: 1.875rem;
  }

  .contact-hero-subtitle {
    font-size: 1rem;
  }

  .contact-form-container,
  .contact-map-container {
    padding: 1.5rem;
  }

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

/* ========================================
   About Page Styles
   ======================================== */

.about-page {
  min-height: 100vh;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.35rem;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 400;
}

/* Container */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Story Section */
.about-story {
  padding: 5rem 2rem;
  background: var(--background-color);
}

.about-story-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.about-section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-story-text p {
  margin-bottom: 1.5rem;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

/* Stats Section */
.about-stats {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.about-stat-card {
  text-align: center;
  color: white;
}

.about-stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 500;
}

/* Values Section */
.about-values {
  padding: 5rem 2rem;
  background: var(--background-color);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-value-card {
  background: var(--card-background);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(184, 148, 74, 0.15);
  border-color: var(--gold-primary);
}

.about-value-icon {
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.about-value-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.about-value-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Team Section */
.about-team {
  padding: 5rem 2rem;
  background: var(--section-background);
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-team-card {
  background: var(--card-background);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.about-team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-primary);
}

.about-team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.about-team-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.about-team-role {
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-team-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Mission Section */
.about-mission {
  padding: 5rem 2rem;
  background: var(--background-color);
}

.about-mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-mission-text {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-top: 1.5rem;
}

/* CTA Section */
.about-cta {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  text-align: center;
}

.about-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.about-cta-text {
  font-size: 1.2rem;
  color: white;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.about-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--gold-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    padding: 3.5rem 1.5rem;
  }

  .about-hero-title {
    font-size: 2.25rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }

  .about-section-title {
    font-size: 2rem;
  }

  .about-story,
  .about-values,
  .about-team,
  .about-mission {
    padding: 3.5rem 1.5rem;
  }

  .about-stats {
    padding: 3rem 1.5rem;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-stat-value {
    font-size: 2.5rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-cta-title {
    font-size: 2rem;
  }

  .about-cta-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 3rem 1rem;
  }

  .about-hero-title {
    font-size: 1.875rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-section-title {
    font-size: 1.75rem;
  }

  .about-story-text {
    font-size: 1rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-value {
    font-size: 2.25rem;
  }

  .about-value-card,
  .about-team-card {
    padding: 2rem 1.5rem;
  }

  .about-cta {
    padding: 3.5rem 1.5rem;
  }

  .about-cta-title {
    font-size: 1.75rem;
  }
}

/* ========================================
   Products Page Styles
   ======================================== */

.products-page {
  min-height: 100vh;
}

/* Container */
.products-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.products-hero {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.products-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.products-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.products-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* Categories Section */
.products-categories {
  padding: 3rem 2rem;
  background: var(--background-color);
  border-bottom: 1px solid var(--border-color);
}

.products-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.products-category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--card-background);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  color: var(--text-primary);
}

.products-category-btn:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 20px rgba(184, 148, 74, 0.15);
}

.products-category-btn.active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-color: var(--gold-primary);
  color: white;
  box-shadow: 0 8px 20px rgba(184, 148, 74, 0.3);
}

.products-category-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.products-category-label {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

/* Products Section */
.products-section {
  padding: 4rem 2rem;
  background: var(--background-color);
}

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

.products-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.products-count {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-primary);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(184, 148, 74, 0.3);
}

.product-image {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.product-emoji {
  font-size: 4rem;
  line-height: 1;
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.product-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-inquiry-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
}

.product-inquiry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 148, 74, 0.4);
}

/* Empty State */
.products-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.products-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.products-empty-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.products-empty-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* CTA Section */
.products-cta {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  text-align: center;
}

.products-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.products-cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.products-cta-text {
  font-size: 1.15rem;
  color: white;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.products-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--gold-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.products-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-hero {
    padding: 3rem 1.5rem;
  }

  .products-hero-title {
    font-size: 2.25rem;
  }

  .products-hero-subtitle {
    font-size: 1.1rem;
  }

  .products-categories {
    padding: 2rem 1.5rem;
  }

  .products-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
  }

  .products-category-btn {
    padding: 1.25rem 0.75rem;
  }

  .products-category-icon {
    font-size: 2rem;
  }

  .products-category-label {
    font-size: 0.9rem;
  }

  .products-section {
    padding: 3rem 1.5rem;
  }

  .products-section-title {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products-cta {
    padding: 3rem 1.5rem;
  }

  .products-cta-title {
    font-size: 1.875rem;
  }

  .products-cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .products-hero {
    padding: 2.5rem 1rem;
  }

  .products-hero-title {
    font-size: 2rem;
  }

  .products-hero-subtitle {
    font-size: 1rem;
  }

  .products-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-category-btn {
    padding: 1rem 0.5rem;
  }

  .products-section-title {
    font-size: 1.75rem;
  }

  .product-image {
    padding: 2rem;
  }

  .product-emoji {
    font-size: 3rem;
  }

  .product-content {
    padding: 1.25rem;
  }

  .products-cta-title {
    font-size: 1.625rem;
  }
}

/* Product Card Link Updates */
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-footer {
  padding: 0 1.5rem 1.5rem;
}

.product-inquiry-btn {
  width: 100%;
  text-decoration: none;
}

/* ========================================
   Product Detail Page Styles
   ======================================== */

.product-detail-page {
  min-height: 100vh;
  background: var(--background-color);
}

.product-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Breadcrumb */
.product-detail-breadcrumb {
  background: var(--card-background);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.breadcrumb-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumb-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.breadcrumb-current {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Product Overview */
.product-detail-overview {
  padding: 3rem 2rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.product-detail-image-section {
  position: sticky;
  top: 100px;
}

.product-detail-image {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.product-detail-emoji {
  font-size: 8rem;
  line-height: 1;
}

.product-detail-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.product-detail-info {
  padding-top: 1rem;
}

.product-detail-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product-detail-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.product-detail-features-quick {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.product-detail-features-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.product-detail-features-list-quick {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-detail-features-list-quick li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.product-detail-features-list-quick li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.product-detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-detail-btn-primary,
.product-detail-btn-secondary {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.product-detail-btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: white;
  box-shadow: 0 4px 15px rgba(184, 148, 74, 0.3);
}

.product-detail-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 148, 74, 0.4);
}

.product-detail-btn-secondary {
  background: var(--card-background);
  color: var(--gold-dark);
  border: 2px solid var(--gold-primary);
}

.product-detail-btn-secondary:hover {
  background: var(--gold-primary);
  color: white;
  transform: translateY(-2px);
}

/* Tabs Section */
.product-detail-tabs-section {
  background: var(--section-background);
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-color);
}

.product-detail-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
  flex-wrap: wrap;
}

.product-detail-tab {
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  margin-bottom: -2px;
}

.product-detail-tab:hover {
  color: var(--gold-primary);
}

.product-detail-tab.active {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}

.product-detail-tab-content {
  background: var(--card-background);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.product-detail-tab-panel {
  padding: 2.5rem;
}

.product-detail-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.product-detail-long-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.product-detail-subsection-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}

.product-detail-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.product-detail-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--background-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.product-detail-features-list li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Specifications */
.product-detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-detail-spec-item {
  background: var(--background-color);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-detail-spec-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.product-detail-spec-value {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-weight: 700;
}

/* Applications */
.product-detail-applications-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.product-detail-applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-detail-application-card {
  background: var(--background-color);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.product-detail-application-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 12px rgba(184, 148, 74, 0.15);
}

.product-detail-application-card svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.product-detail-application-card span {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Inquiry Form */
.product-detail-inquiry {
  padding: 4rem 2rem;
  background: var(--background-color);
  border-top: 1px solid var(--border-color);
}

.product-detail-inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.product-detail-inquiry-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.product-detail-inquiry-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.product-detail-inquiry-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.inquiry-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--card-background);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.inquiry-feature svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.inquiry-feature span {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.product-detail-inquiry-form {
  background: var(--card-background);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.inquiry-form-group {
  margin-bottom: 1.5rem;
}

.inquiry-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.inquiry-form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.inquiry-form-input,
.inquiry-form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-primary);
  font-family: inherit;
  transition: all 0.3s ease;
}

.inquiry-form-input:focus,
.inquiry-form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(184, 148, 74, 0.1);
}

.inquiry-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.inquiry-form-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.inquiry-form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(184, 148, 74, 0.3);
  font-family: inherit;
}

.inquiry-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 148, 74, 0.4);
}

.inquiry-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.inquiry-form-spinner {
  animation: spin 1s linear infinite;
}

/* Related Products */
.product-detail-related {
  padding: 4rem 2rem;
  background: var(--section-background);
  border-top: 1px solid var(--border-color);
}

.product-detail-related-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
}

.product-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.product-detail-related-card {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-detail-related-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 20px rgba(184, 148, 74, 0.15);
}

.related-product-image {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.related-product-emoji {
  font-size: 3rem;
  line-height: 1;
}

.related-product-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.related-product-link {
  color: var(--gold-primary);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Not Found */
.product-detail-not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.not-found-content {
  text-align: center;
  max-width: 500px;
}

.not-found-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.not-found-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.not-found-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.not-found-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 148, 74, 0.3);
}

.not-found-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 148, 74, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {

  .product-detail-grid,
  .product-detail-inquiry-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-detail-image-section {
    position: static;
  }
}

@media (max-width: 768px) {
  .product-detail-overview {
    padding: 2rem 1.5rem;
  }

  .product-detail-title {
    font-size: 2.25rem;
  }

  .product-detail-emoji {
    font-size: 6rem;
  }

  .product-detail-image {
    padding: 3rem;
  }

  .product-detail-actions {
    flex-direction: column;
  }

  .product-detail-btn-primary,
  .product-detail-btn-secondary {
    width: 100%;
  }

  .product-detail-tabs {
    gap: 0.25rem;
  }

  .product-detail-tab {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .product-detail-tab-panel {
    padding: 2rem;
  }

  .product-detail-section-title {
    font-size: 1.75rem;
  }

  .product-detail-features-list {
    grid-template-columns: 1fr;
  }

  .product-detail-specs-grid,
  .product-detail-applications-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-form-row {
    grid-template-columns: 1fr;
  }

  .product-detail-inquiry-form {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .product-detail-breadcrumb {
    padding: 0.75rem 0;
  }

  .breadcrumb-links {
    font-size: 0.85rem;
  }

  .product-detail-title {
    font-size: 1.875rem;
  }

  .product-detail-description {
    font-size: 1.05rem;
  }

  .product-detail-emoji {
    font-size: 5rem;
  }

  .product-detail-image {
    padding: 2rem;
  }

  .product-detail-tab {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .product-detail-tab-panel {
    padding: 1.5rem;
  }

  .product-detail-inquiry-form {
    padding: 1.5rem;
  }

  .product-detail-inquiry-title {
    font-size: 1.875rem;
  }
}

/* ========================================
   Home Page Styles
   ======================================== */

.home-page {
  min-height: 100vh;
}

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.home-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
  background-image: url(/738ff819acccd9e59a23.png);
  color: white;
  padding: 6rem 2rem;
  overflow: hidden;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.home-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.home-hero-subtitle {
  font-size: 1.35rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.home-hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.home-hero-btn-primary,
.home-hero-btn-secondary {
  padding: 1.125rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.home-hero-btn-primary {
  background: white;
  color: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.home-hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.home-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.home-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Features Section */
.home-features {
  padding: 4rem 2rem;
  background: var(--background-color);
}

.home-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.home-feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--card-background);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.home-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(184, 148, 74, 0.15);
  border-color: var(--gold-primary);
}

.home-feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.home-feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.home-feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Stats Section */
.home-stats {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.home-stat-card {
  text-align: center;
  color: white;
  padding: 1.5rem;
}

.home-stat-value {
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 500;
}

/* Section Headers */
.home-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.home-section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.home-section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Categories Section */
.home-categories {
  padding: 5rem 2rem;
  background: var(--background-color);
}

.home-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.home-category-card {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(184, 148, 74, 0.2);
  border-color: var(--gold-primary);
}

.home-category-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.home-category-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.home-category-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.home-category-link {
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-top: auto;
}

/* About Section */
.home-about {
  padding: 5rem 2rem;
  background: var(--section-background);
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.home-about-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(184, 148, 74, 0.3);
  background-image: url(/4b90391a4e6307fc9f2e.jpg);
}

.home-about-emoji {
  font-size: 8rem;
  line-height: 1;
}

.home-about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.home-about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.home-about-text:last-of-type {
  margin-bottom: 2rem;
}

.home-about-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 148, 74, 0.3);
}

.home-about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(184, 148, 74, 0.4);
}

/* Testimonials Section */
.home-testimonials {
  padding: 5rem 2rem;
  background: var(--background-color);
}

.home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.home-testimonial-card {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.home-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-primary);
}

.home-testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.home-testimonial-star {
  font-size: 1.25rem;
  line-height: 1;
}

.home-testimonial-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.home-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.home-testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.home-testimonial-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.home-testimonial-role {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* CTA Section */
.home-cta {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  text-align: center;
}

.home-cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.home-cta-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-cta-text {
  font-size: 1.25rem;
  color: white;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.home-cta-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-cta-btn-primary,
.home-cta-btn-secondary {
  padding: 1.125rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.home-cta-btn-primary {
  background: white;
  color: var(--gold-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.home-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.home-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.home-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-about-image-placeholder {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 500px;
    padding: 4rem 1.5rem;
  }

  .home-hero-title {
    font-size: 2.5rem;
  }

  .home-hero-subtitle {
    font-size: 1.15rem;
  }

  .home-hero-actions {
    flex-direction: column;
  }

  .home-hero-btn-primary,
  .home-hero-btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .home-features,
  .home-stats,
  .home-categories,
  .home-about,
  .home-testimonials,
  .home-cta {
    padding: 3.5rem 1.5rem;
  }

  .home-section-title {
    font-size: 2.25rem;
  }

  .home-section-subtitle {
    font-size: 1.05rem;
  }

  .home-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .home-stat-value {
    font-size: 2.75rem;
  }

  .home-categories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-about-emoji {
    font-size: 6rem;
  }

  .home-about-title {
    font-size: 2rem;
  }

  .home-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-title {
    font-size: 2.25rem;
  }

  .home-cta-text {
    font-size: 1.1rem;
  }

  .home-cta-actions {
    flex-direction: column;
  }

  .home-cta-btn-primary,
  .home-cta-btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .home-hero {
    min-height: 450px;
    padding: 3rem 1rem;
  }

  .home-hero-title {
    font-size: 2rem;
  }

  .home-hero-subtitle {
    font-size: 1rem;
  }

  .home-features,
  .home-stats,
  .home-categories,
  .home-about,
  .home-testimonials,
  .home-cta {
    padding: 3rem 1rem;
  }

  .home-section-title {
    font-size: 1.875rem;
  }

  .home-feature-card,
  .home-category-card,
  .home-testimonial-card {
    padding: 2rem 1.5rem;
  }

  .home-stats-grid {
    grid-template-columns: 1fr;
  }

  .home-stat-value {
    font-size: 2.5rem;
  }

  .home-about-emoji {
    font-size: 5rem;
  }

  .home-about-title {
    font-size: 1.75rem;
  }

  .home-about-text {
    font-size: 1rem;
  }

  .home-cta-title {
    font-size: 1.875rem;
  }

  .home-cta-text {
    font-size: 1rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --gold-primary: #B8944A;
  --gold-dark: #9A7A3A;
  --gold-light: #D4B068;
  
  /* Light Theme */
  --bg-primary: #FAFAFA;
  --bg-secondary: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #6B6B6B;
}

[data-theme='dark'] {
  /* Dark Theme */
  --bg-primary: #0D0D0D;
  --bg-secondary: #1A1A1A;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

#root {
  min-height: 100vh;
}

