* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0a0a;
  color: #e9d8a6;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #2a2a2a;
}

.logo {
  font-size: 1.5rem;
  font-weight: 500;
  color: #e9d8a6;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: #e9d8a6;
  text-decoration: none;
  transition: opacity 0.3s;
}

nav a:hover,
nav a.active {
  opacity: 0.7;
}

/* Contact Main */
.contact-main {
  padding: 60px 0;
}

.contact-hero {
  text-align: center;
  margin-bottom: 60px;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #e9d8a6;
}

.contact-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info */
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.info-icon {
  font-size: 1.5rem;
  margin-top: 5px;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 400;
}

.info-item p {
  opacity: 0.8;
}

.heritage-note {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  margin-top: 40px;
}

.heritage-note h3 {
  margin-bottom: 15px;
  color: #e9d8a6;
}

.heritage-note p {
  opacity: 0.8;
}

/* Contact Form */
.contact-form-container {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 12px;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 300;
  color: #e9d8a6;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
  color: #e9d8a6;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: #2a2a2a;
  border: 2px solid #3a3a3a;
  border-radius: 6px;
  color: #e9d8a6;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Enhanced dropdown styling */
.form-group select {
  background: #2a2a2a;
  border: 2px solid #4a4a4a;
  color: #e9d8a6;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9d8a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group select:focus {
  outline: none;
  border-color: #e9d8a6;
  box-shadow: 0 0 0 3px rgba(233, 216, 166, 0.1);
}

.form-group select:hover {
  border-color: #6a6a6a;
}

/* Dropdown options styling */
.form-group select option {
  background: #2a2a2a;
  color: #e9d8a6;
  padding: 10px;
}

.form-group select option:hover,
.form-group select option:checked {
  background: #3a3a3a;
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e9d8a6;
  box-shadow: 0 0 0 3px rgba(233, 216, 166, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background: #e9d8a6;
  color: #0a0a0a;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #d4c185;
  transform: translateY(-1px);
}

.form-note {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
}

/* Home Page Styles */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #e9d8a6;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-button {
  background: #e9d8a6;
  color: #0a0a0a;
  border: none;
  padding: 16px 32px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 60px;
}

.cta-button:hover {
  background: #d4c185;
  transform: translateY(-1px);
}

.stats {
  display: flex;
  gap: 40px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: #e9d8a6;
  margin-bottom: 8px;
}

.stat-plus {
  font-size: 1.8rem;
}

.stat-text {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.4;
}

.image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.image-bg {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(233, 216, 166, 0.15) 0%, rgba(233, 216, 166, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

.image-bg::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: conic-gradient(from 0deg, transparent, rgba(233, 216, 166, 0.1), transparent, rgba(233, 216, 166, 0.05), transparent);
  border-radius: 50%;
  animation: rotate 15s linear infinite;
  z-index: -1;
}

.image-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, transparent 30%, rgba(233, 216, 166, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  animation: breathe 6s ease-in-out infinite;
}

.image-frame {
  position: relative;
  z-index: 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(233, 216, 166, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(145deg, rgba(233, 216, 166, 0.05), rgba(233, 216, 166, 0.02));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 216, 166, 0.1);
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
  z-index: 2;
}

.image-frame:hover::before {
  left: 100%;
}

.image-frame:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.02);
  box-shadow: 
    0 35px 100px rgba(0, 0, 0, 0.5),
    0 15px 40px rgba(233, 216, 166, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 1;
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* Floating particles around image */
.image-container::before {
  content: '✦';
  position: absolute;
  top: 20%;
  left: 10%;
  color: rgba(233, 216, 166, 0.3);
  font-size: 1.5rem;
  animation: float 8s ease-in-out infinite;
  z-index: 2;
}

.image-container::after {
  content: '✧';
  position: absolute;
  bottom: 25%;
  right: 15%;
  color: rgba(233, 216, 166, 0.4);
  font-size: 1.2rem;
  animation: float 6s ease-in-out infinite reverse;
  z-index: 2;
}

/* Keyframe animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes breathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  33% {
    transform: translateY(-10px) rotate(120deg);
    opacity: 0.6;
  }
  66% {
    transform: translateY(5px) rotate(240deg);
    opacity: 0.4;
  }
}

/* Featured Section */
.featured-section {
  background: #1a1a1a;
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;
  color: #e9d8a6;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  opacity: 0.8;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature {
  background: rgba(233, 216, 166, 0.05);
  border: 1px solid rgba(233, 216, 166, 0.1);
  border-radius: 12px;
  text-align: center;
  padding: 40px 30px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(233, 216, 166, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature:hover::before {
  left: 100%;
}

.feature:hover {
  transform: translateY(-8px);
  background: rgba(233, 216, 166, 0.08);
  border-color: rgba(233, 216, 166, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #e9d8a6;
  transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #e9d8a6;
  transition: color 0.3s ease;
}

.feature:hover .feature-title {
  color: #fff;
}

.feature-text {
  opacity: 0.8;
  line-height: 1.7;
  transition: opacity 0.3s ease;
}

.feature:hover .feature-text {
  opacity: 1;
}

/* Testimonial Section */
.testimonial-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.testimonial {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e9d8a6;
}

.testimonial-author {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.8;
}

/* Footer */
footer {
  background: #1a1a1a;
  padding: 40px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-description {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-heading {
  margin-bottom: 15px;
  font-weight: 400;
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: #e9d8a6;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .stats {
    justify-content: center;
    gap: 30px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}