/* General Styles */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Art Deco styling elements */
h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  text-align: center;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #FFD700;
}

a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.btn {
  display: inline-block;
  background-color: #FFD700;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #FFD700;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
  background: linear-gradient(to right, #fff 50%, #f9f9f9 50%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
          linear-gradient(45deg, #FFD700 25%, transparent 25%),
          linear-gradient(-45deg, #FFD700 25%, transparent 25%),
          linear-gradient(45deg, transparent 75%, #FFD700 75%),
          linear-gradient(-45deg, transparent 75%, #FFD700 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.03;
  z-index: -1;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  width: 90%;
  height: auto;
  border-radius: 0;
  box-shadow: 20px 20px 0 #FFD700;
}

/* About Section */
.about {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 30px solid #FFD700;
  border-radius: 50%;
  top: -150px;
  left: -150px;
  opacity: 0.1;
  z-index: 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 0;
  box-shadow: -20px 20px 0 #FFD700;
}

/* Target Audience Section */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.audience-card {
  background-color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #FFD700;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.audience-card:hover::before {
  transform: scaleX(1);
}

.audience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.audience-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.audience-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.audience-card p {
  padding: 0 20px 20px;
  color: #666;
}

/* Stats Section */
.stats {
  background-color: #111;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image:
          radial-gradient(#FFD700 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.1;
  z-index: 0;
}

.stats h2 {
  color: #fff;
}

.stats h2::after {
  background: #FFD700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  border: 1px solid #333;
  position: relative;
  z-index: 1;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFD700;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  z-index: -1;
}

.stat-item:hover::before {
  transform: scaleY(1);
}

.stat-item:hover {
  color: #111;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.stat-item:hover h3 {
  color: #111;
}

.stat-item p {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background-color: #fff;
  padding: 40px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #FFD700;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 1px solid #FFD700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-label {
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: #FFD700;
  color: #111;
  padding: 5px 30px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #111;
}

.price-period {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 30px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

/* Case Studies / Testimonials Section */
.case-studies {
  background-color: #f9f9f9;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.testimonial-content p::before {
  content: '"';
  font-size: 2.5rem;
  position: absolute;
  left: 0;
  top: -10px;
  color: #FFD700;
  font-family: 'Playfair Display', serif;
}

.testimonial-info {
  color: #777;
  font-size: 0.9rem;
}

/* Roadmap Section */
.roadmap {
  position: relative;
  overflow: hidden;
}

.roadmap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
          linear-gradient(45deg, #FFD700 25%, transparent 25%),
          linear-gradient(-45deg, #FFD700 25%, transparent 25%),
          linear-gradient(45deg, transparent 75%, #FFD700 75%),
          linear-gradient(-45deg, transparent 75%, #FFD700 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.03;
  z-index: 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #FFD700;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-item:nth-child(odd) {
  padding-right: calc(50% + 30px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: calc(50% + 30px);
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: #FFD700;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-content {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #eee;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  transform: rotate(-45deg);
}

.timeline-content h3 {
  color: #FFD700;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border: 1px solid #eee;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FFD700;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-item {
  margin-bottom: 20px;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.map-container {
  margin-top: 40px;
}

.map-container h3 {
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #111;
  color: #fff;
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo .logo {
  margin-bottom: 20px;
}

.footer-logo p {
  color: #aaa;
  max-width: 400px;
}

.footer-links h3,
.footer-legal h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
  color: #aaa;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #FFD700;
}

.copyright {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
}

.copyright p {
  color: #777;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding: 120px 40px 60px;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .about-content {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .timeline-item:nth-child(odd) {
    padding-right: 0;
    padding-left: 30px;
    text-align: left;
  }

  .timeline-item:nth-child(even) {
    padding-left: 30px;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item::before {
    left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 20px;
  }

  .nav-links {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li {
    margin: 0 10px 10px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  h2 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}