:root {
  --gold: #c19b5c;
  --gold-hover: #a88348;
  --gold-light: #e8d7c3;
  --gold-dark: #906e37;
  --dark: #1c1c1c;
  --dark-blue: #283340;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 79px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--gold-light);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  padding: 1.2rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark) !important;
  position: relative;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark);
  padding: 0.5rem 1.2rem;
  margin: 0 0.3rem;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 80%;
}

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

.consultation-btn {
  background: var(--gold-dark);
  color: var(--white);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--gold-dark);
}

.consultation-btn:hover {
  background: transparent;
  color: var(--gold-dark);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  min-height: 720px;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.9), rgba(40, 51, 64, 0.8)),
    url("../images/hero-index.jpg");
  background-size: contain;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23ffffff" d="M1200 120H0V0l600 60z"/></svg>');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  opacity: 0.05;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero .subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--gold);
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(193, 155, 92, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--white);
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Hero Statistics Section */
.hero-stats {
  padding: 3rem 0;
  position: relative;
  margin-top: -160px;
  z-index: 10;
}

.stat-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(193, 155, 92, 0.1);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.stat-card:hover::before {
  transform: translateX(0);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(193, 155, 92, 0.3);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(193, 155, 92, 0.4);
}

.stat-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.stat-content p {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    background-image: linear-gradient(135deg, rgba(28, 28, 28, 0.9), rgba(40, 51, 64, 0.8)),
      url("../images/hero-index-mobile.jpg");
    background-size: cover;
    background-attachment: scroll;
  }

  .hero-stats {
    padding: 2rem 0;
    margin-top: 0px;
  }

  .stat-card {
    margin-bottom: 1.5rem;
    padding: 2rem 1rem;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

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

/* Quote Section - Átdolgozott rész */
.quote-section {
  padding: 5rem 0;
  background: var(--light-gray);
  text-align: center;
  border-top: 1px solid rgba(193, 155, 92, 0.2);
  border-bottom: 1px solid rgba(193, 155, 92, 0.2);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(193, 155, 92, 0.05), transparent);
  z-index: 0;
}

.quote-section blockquote {
  font-size: 2rem;
  font-style: italic;
  color: var(--dark);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 3rem;
  z-index: 1;
}

.quote-section blockquote::before,
.quote-section blockquote::after {
  content: '"';
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  font-family: serif;
  opacity: 0.5;
  z-index: -1;
}

.quote-section blockquote::before {
  top: -1rem;
  left: 0;
}

.quote-section blockquote::after {
  bottom: -3rem;
  right: 0;
}

/* Motivációink - új kidolgozottabb rész */
.motivation-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.motivation-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(193, 155, 92, 0.1), transparent 70%);
  z-index: 0;
}

.motivation-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(193, 155, 92, 0.1), transparent 70%);
  z-index: 0;
}

.motivation-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.motivation-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.motivation-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 3px;
  background: var(--gold);
  transform: translateX(-50%);
}

.motivation-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dark);
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  position: relative;
  padding: 0 2rem;
}

.motivation-quote::before,
.motivation-quote::after {
  content: ""
    ";
  font-family: serif;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.7;
  position: absolute;
  top: -1rem;
}

.motivation-quote::before {
  left: 0;
}

.motivation-quote::after {
  content: "
    "";
  right: 0;
}

.motivation-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.motivation-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: var(--transition);
}

.motivation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.motivation-item:hover::before {
  opacity: 1;
}

.motivation-icon {
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  flex-shrink: 0;
}

.motivation-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.motivation-content p {
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--dark-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100" stroke="%23ffffff" stroke-width="0.5" stroke-opacity="0.05"/><path d="M100,0L0,100" stroke="%23ffffff" stroke-width="0.5" stroke-opacity="0.05"/></svg>');
  opacity: 0.4;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 3px;
  background: var(--gold);
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 15px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(193, 155, 92, 0.2), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--white);
  transform: rotate(-5deg);
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-icon {
  transform: rotate(0deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-align: center;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.feature-list li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.feature-list li i {
  color: var(--gold);
  font-size: 1.1rem;
}

.feature-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-card a:hover {
  color: var(--gold-light);
}

/* Services Section - Főbb szakterületeink - Átdolgozott rész */
.services {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(193, 155, 92, 0.05), transparent 70%);
  z-index: 0;
}

.services .section-title {
  color: var(--dark);
}

.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
  padding: 2rem;
  background: var(--dark-blue);
  position: relative;
  z-index: 1;
}

.service-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(193, 155, 92, 0.2), transparent);
  z-index: -1;
}

.service-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-header h3 i {
  color: var(--gold);
  font-size: 1.8rem;
}

.service-body {
  padding: 2rem;
  background: var(--white);
  flex-grow: 1;
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item ul li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.service-item ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-item ul li i {
  color: var(--gold);
  margin-top: 0.3rem;
  font-size: 0.8rem;
}

.service-footer {
  padding: 1rem 2rem;
  background: var(--light-gray);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: flex-end;
}

.service-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold-hover);
  gap: 0.8rem;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><circle cx="15" cy="15" r="1" fill="%23c19b5c" fill-opacity="0.2"/></svg>');
  z-index: 0;
}

.about-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.about-text .subtitle {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features {
  list-style: none;
  padding: 1.5rem 0;
}

.about-features li {
  padding: 0.7rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--dark);
}

.about-features li i {
  color: var(--gold);
  font-size: 1.2rem;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(193, 155, 92, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
  z-index: 1;
}

.about-image:hover::before {
  opacity: 1;
  top: -100%;
  left: -100%;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Process Section */
.process {
  padding: 6rem 0;
  background: var(--white);
}

.process .section-title {
  color: var(--dark);
}

.process-timeline {
  position: relative;
  padding: 3rem 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--gold);
  transform: translateX(-50%);
}

.process-item {
  position: relative;
  margin-bottom: 4rem;
}

.process-item:nth-child(odd) {
  text-align: right;
  padding-right: 50%;
}

.process-item:nth-child(even) {
  text-align: left;
  padding-left: 50%;
}

.process-number {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 5px 20px rgba(193, 155, 92, 0.3);
}

.process-content {
  padding: 0 2rem;
}

.process-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.process-content p {
  color: var(--gray);
  line-height: 1.6;
}

.process-content a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.process-content a:hover {
  text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: var(--light-gray);
  background: var(--dark);
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  height: 100%;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--gold);
  font-family: serif;
  opacity: 0.2;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 2rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: var(--dark);
}

.testimonial-author-info p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* Partners Section */
.partners {
  padding: 6rem 0;
  background: var(--white);
}

.partners .section-title {
  color: var(--dark);
}

.partner-card {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.partner-card:hover::before {
  transform: translateX(0);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.partner-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.partner-card .subtitle {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.partner-services {
  list-style: none;
  padding: 0;
}

.partner-services li {
  padding: 0.7rem 0;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-services li:last-child {
  border-bottom: none;
}

.partner-services li i {
  color: var(--gold);
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><rect width="40" height="40" fill="none"/><path d="M0,0L40,40M40,0L0,40" stroke="%23ffffff" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
  z-index: 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta .btn-white {
  background: var(--white);
  color: var(--gold);
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 1;
  border: 2px solid var(--white);
}

.cta .btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 1rem;
}

.footer h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  padding: 0.5rem 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 10px;
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-contact i {
  color: var(--gold);
  width: 20px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
  .services {
    padding: 2rem 0;
  }

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

  .motivation-section {
    padding: 2rem 0;
  }

  .about-image {
    margin-top: 2rem;
  }

  .about-content {
    flex-direction: column;
  }

  .process-item:nth-child(odd),
  .process-item:nth-child(even) {
    text-align: center;
    padding: 0;
    margin-bottom: 3rem;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-number {
    left: 30px;
  }

  .process-content {
    padding-left: 100px;
  }

  .motivation-item {
    flex-direction: column;
    text-align: center;
  }

  .motivation-icon {
    margin: 0 auto 1.5rem;
  }
}

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }

  .quote-section blockquote {
    font-size: 1.5rem;
    padding: 2rem 1rem;
  }

  .feature-card {
    margin-bottom: 2rem;
  }
}

.video-placeholder {
  position: relative;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-placeholder:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
  background: var(--gold);
  color: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
}

.video-overlay h4 {
  margin: 0;
  font-size: 1.2rem;
}
