/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid #d4a853;
  border-radius: 10px;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  z-index: 10000;
  transition: bottom 0.5s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cookie-popup.show {
  bottom: 20px;
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #d4a853;
  color: white;
}

.cookie-btn.decline {
  background: #666;
  color: white;
}

.cookie-btn:hover {
  opacity: 0.8;
}

.cookie-link {
  color: #d4a853;
  text-decoration: none;
  font-size: 12px;
  margin-left: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-decoration: none;
}

.nav-logo {
  text-decoration: none;
}

.nav-logo span {
  font-size: 24px;
  font-weight: 700;
  color: #d4a853;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button {
  background: #d4a853;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.cta-button:hover {
  background: #b8943f;
  transform: translateY(-2px);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #f8f8f8;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-content {
  flex: 1;
}

.service-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
  line-height: 1.3;
}

.service-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #666;
  line-height: 1.7;
}

.learn-more-btn {
  background: transparent;
  color: #d4a853;
  padding: 12px 25px;
  border: 2px solid #d4a853;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.learn-more-btn:hover {
  background: #d4a853;
  color: white;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: white;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.features-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 40px;
}

.feature-card {
  background: #f8f8f8;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Investment Process Section */
.investment-process {
  padding: 100px 0;
  background: #f8f8f8;
}

.investment-process h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.process-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  line-height: 1.6;
}

.process-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.process-text {
  flex: 1;
}

.process-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.process-image {
  flex: 1;
}

.process-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: white;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #333;
}

.faq-item {
  /* border-bottom: 1px solid #eee; */
  margin-bottom: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #d4a853;
}

.faq-question h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 20px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
}

/* Steps Section */
.steps {
  padding: 100px 0;
  background: #f8f8f8;
}

.steps h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.steps-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 40px;
}

.step-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-image {
  overflow: hidden;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

.step-card p {
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: white;
}

.contact-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.3;
}

.contact-info p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

.contact-form {
  flex: 1;
  background: #f8f8f8;
  padding: 40px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4a853;
}

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

.submit-btn {
  background: #d4a853;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #b8943f;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: #d4a853;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d4a853;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding-top: 50px;
      transition: left 0.3s ease;
  }

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

  .nav-toggle {
      display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
      opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-content h1 {
      font-size: 2.5rem;
  }

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

  .service-item {
      flex-direction: column;
      gap: 40px;
  }

  .service-content h2 {
      font-size: 2rem;
  }

  .process-content {
      flex-direction: column;
      gap: 40px;
  }

  .contact-content {
      flex-direction: column;
      gap: 40px;
  }

  .contact-info h2 {
      font-size: 2rem;
  }

  .features h2,
  .steps h2,
  .faq h2 {
      font-size: 2rem;
  }

  .investment-process h2 {
      font-size: 2rem;
  }

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

  .steps-grid {
      grid-template-columns: 1fr;
  }

  .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .cookie-buttons {
      flex-direction: column;
      align-items: stretch;
  }

  .cookie-link {
      margin-left: 0;
      text-align: center;
      margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
      font-size: 2rem;
  }

  .service-content h2,
  .features h2,
  .steps h2,
  .faq h2,
  .investment-process h2,
  .contact-info h2 {
      font-size: 1.8rem;
  }

  .hero-content p,
  .service-content p,
  .features-subtitle,
  .steps-subtitle,
  .process-subtitle {
      font-size: 0.95rem;
  }

  .container {
      padding: 0 15px;
  }

  .contact-form {
      padding: 25px;
  }

  .feature-card,
  .step-card {
      margin: 0 10px;
  }
}

.legal {
  padding: 120px 0 60px;
}