/* Main content area */
.site-content {
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}

/* Hero Sections */
.hero-banner-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(11, 43, 74, 0.7), rgba(11, 43, 74, 0.8)), url('images/hero1-personal-shopper-client-store_orig.jpg') center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-content-wrapper {
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Economic Ticker */
.economic-ticker-section {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 0;
  overflow: hidden;
}

.economic-ticker-wrapper {
  display: flex;
  animation: scroll-ticker 30s linear infinite;
  gap: 3rem;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.ticker-label {
  color: var(--gold);
}

/* KPI Cards */
.kpi-cards-section {
  padding: 4rem 0;
  background: var(--cream);
}

.kpi-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.kpi-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.kpi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.kpi-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.kpi-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.kpi-trend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.kpi-trend.positive {
  color: var(--growth-green);
}

.kpi-trend.negative {
  color: #d32f2f;
}

/* Interactive Map */
.interactive-map-section {
  padding: 5rem 0;
  background: var(--white);
}

.romania-map-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
}

.map-region {
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-region:hover {
  fill: var(--gold);
  transform: scale(1.02);
}

.region-popup {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
  min-width: 250px;
}

.region-popup h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.region-popup p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* About Section */
.about-content-wrapper {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.about-text-content h2 {
  margin-bottom: 1.5rem;
}

.about-text-content p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  width: 100%;
}

/* Team Section */
.team-members-section {
  padding: 5rem 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.team-member-image {
  height: 250px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 1.5rem;
}

.team-member-name {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-member-role {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member-bio {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Services Grid */
.services-showcase-section {
  padding: 5rem 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Testimonials */
.testimonial-section {
  padding: 5rem 0;
  background: var(--navy);
  color: var(--white);
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
  margin: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.testimonial-author-info h4 {
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.testimonial-author-details {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* Contact Form */
.contact-section {
  padding: 5rem 0;
  background: var(--white);
}

.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info-wrapper h3 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

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

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

/* Job Board */
.job-board-section {
  padding: 5rem 0;
  background: var(--cream);
}

.job-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.job-filter-select {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--white);
}

.job-listing {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.job-listing:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.job-title {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.job-company {
  color: var(--gold);
  font-weight: 500;
}

.job-location {
  color: var(--text-light);
  font-size: 0.9rem;
}

.job-salary {
  color: var(--growth-green);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Success Tracker */
.success-tracker-section {
  padding: 5rem 0;
  background: var(--white);
}

.tracker-form {
  max-width: 600px;
  margin: 2rem auto;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.progress-visualization {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: 12px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--growth-green));
  width: 0%;
  transition: width 1s ease;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

.milestone.completed {
  border-left-color: var(--growth-green);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-element {
  animation: float 3s ease-in-out infinite;
}

/* Decorative Elements */
.decorative-shapes::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(20px);
  z-index: -1;
}

/* Romanian Proverb Generator */
.proverb-generator {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.proverb-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.proverb-refresh {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.proverb-refresh:hover {
  background: var(--white);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-grid,
  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .kpi-dashboard {
    grid-template-columns: 1fr;
  }
  
  .job-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .job-filters {
    flex-direction: column;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .site-content {
    padding-top: 70px;
  }
}

/* Status Indicators */
.status-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.status-positive {
  background: var(--growth-green);
}

.status-warning {
  background: #ff9800;
}

.status-negative {
  background: #d32f2f;
}

/* Course Cards */
.course-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.course-header {
  padding: 1.5rem 1.5rem 0;
}

.course-title {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.course-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem 1.5rem;
}

.course-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
}