/* Mobile Menu Styles */
#mobile-menu {
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

#mobile-menu:not(.hidden) {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}

/* Mobile menu items */
#mobile-menu button {
  transition: all 0.2s ease;
  padding: 12px 16px;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
}

#mobile-menu button:hover {
  background-color: rgba(97, 92, 37, 0.1);
}

/* Ensure menu is above other content */
header {
  z-index: 1000;
}

/* Mobile menu button */
#menu-toggle {
  transition: all 0.3s ease;
  z-index: 1001;
}

/* Favicon styling */
link[rel="icon"] {
  display: none;
}

/* Nav item hover effects */
.nav-item {
  position: relative;
  padding: 8px 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #615C25;
  transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

/* Mobile menu animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-item {
  animation: fadeIn 0.3s ease forwards;
  opacity: 0;
}

/* Sticky header effect */
.sticky-header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Rest of your existing styles */
.hover-scale:hover {
  transform: scale(1.05);
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.backdrop-blur-sm {
  backdrop-filter: blur(10px);
}

.whitespace-pre-line {
  white-space: pre-line;
}

/* Custom color classes */
.bg-primary {
  background-color: #615C25;
}

.bg-primary-hover:hover {
  background-color: #4d4920;
}

.text-primary {
  color: #615C25;
}

.text-primary-hover:hover {
  color: #4d4920;
}

.border-primary {
  border-color: #615C25;
}

.border-primary-hover:hover {
  border-color: #4d4920;
}

.from-primary {
  --tw-gradient-from: #615C25;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 92, 37, 0));
}

.to-primary {
  --tw-gradient-to: #615C25;
}

/* Enquiry Form Styles */
.enquiry-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.enquiry-hidden {
  display: none !important;
}

.enquiry-form-container {
  background: white;
  border-radius: 8px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.enquiry-header {
  background: #615C25;
  color: white;
  padding: 16px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
}

.enquiry-header button {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
}

.enquiry-content {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .enquiry-content {
    flex-direction: row;
  }
}

.enquiry-left-panel {
  background: #f8f9fa;
  width: 100%;
}

@media (min-width: 768px) {
  .enquiry-left-panel {
    width: 33.3%;
    border-right: 1px solid #ddd;
  }
}

.enquiry-left-panel img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .enquiry-left-panel img {
    height: 100%;
  }
}

.enquiry-form-panel {
  padding: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .enquiry-form-panel {
    width: 66.6%;
  }
}

.enquiry-form-panel label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #333;
}

.enquiry-form-panel input,
.enquiry-form-panel select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  outline: none;
}

.enquiry-form-panel .phone-group {
  display: flex;
}

.enquiry-form-panel .phone-group select {
  width: 80px;
  border-radius: 6px 0 0 6px;
}

.enquiry-form-panel .phone-group input {
  border-radius: 0 6px 6px 0;
}

.enquiry-checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.enquiry-checkbox-group input {
  margin-right: 8px;
}

.enquiry-submit-btn {
  width: 100%;
  background: #615C25;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.enquiry-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.enquiry-submit-btn:hover:not(:disabled) {
  background: #4d4920;
}

.enquiry-footer-text {
  margin-top: 16px;
  font-size: 12px;
  color: #555;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.enquiry-footer-links {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  background: #f5f5f5;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  flex-wrap: wrap;
}

.enquiry-footer-links a {
  color: #615C25;
  text-decoration: none;
  margin: 5px;
}

.enquiry-footer-links a:hover {
  text-decoration: underline;
}

/* Success modal */
.enquiry-success-container {
  background: white;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  padding: 30px;
}

.enquiry-success-icon {
  width: 64px;
  height: 64px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.enquiry-success-icon svg {
  width: 40px;
  height: 40px;
  color: #22c55e;
}

.enquiry-success-container h2 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #333;
}

.enquiry-success-container p {
  color: #666;
  margin-bottom: 15px;
}

.enquiry-close-success {
  background: #615C25;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.enquiry-close-success:hover {
  background: #4d4920;
}

/* Remove bullets */
.no-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.icon svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  fill: #615c25;
  margin-right: 5px;
}

.icon-small svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  fill: #615c25;
  margin-right: 8px;
}

.icon,
.icon-small {
  display: inline-flex;
  align-items: center;
}