/* Page Layout */
.main-content {
  padding-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.8)), url('../images/hero1-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
  overflow: hidden;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-buttons .primary-button {
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
}

.hero-buttons .secondary-button {
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
  color: white;
  border-color: white;
}

.hero-buttons .secondary-button:hover {
  background: white;
  color: var(--primary);
}

/* Floating decorative elements */
.hero-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--accent), transparent);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--accent), transparent);
  border-radius: 50%;
  opacity: 0.05;
  animation: float 8s ease-in-out infinite reverse;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* About Section */
.about-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
  overflow: hidden;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  padding: 2rem 0;
}

.about-text h2 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

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

.about-features {
  list-style: none;
  margin: 2rem 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.feature-check {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

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

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
}

@media (max-width: 768px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    height: 300px;
  }
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

.team-member-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  text-align: center;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.team-member-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

.team-member-info h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.member-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
}

.testimonials-section h2 {
  color: white;
  margin-bottom: 3rem;
}

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

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

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

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

.testimonial-author {
  font-weight: 600;
  color: var(--accent);
}

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

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.95)), url('../images/banner4-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  text-align: center;
  color: white;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

.contact-details {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  stroke-width: 2;
  flex-shrink: 0;
}

.map-embed {
  margin-top: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: none;
}

@media (max-width: 768px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Routes Section */
.routes-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

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

.route-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.route-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.route-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.route-icon {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
  stroke-width: 2;
}

.route-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.route-details {
  list-style: none;
  margin-bottom: 1.5rem;
}

.route-details li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.route-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-top: 1rem;
}

/* Price Calculator */
.calculator-section {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  margin: 3rem 0;
}

.calculator-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.calculator-result {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  border-radius: var(--border-radius);
  display: none;
}

.calculator-result.show {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

.result-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.result-note {
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Offers Section */
.offers-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

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

.offer-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
}

.offer-card::before {
  content: 'OFERTĂ SPECIALĂ';
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--accent);
  color: white;
  padding: 0.5rem 3rem;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 2;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.offer-content {
  padding: 2rem;
}

.offer-title {
  color: var(--primary);
  margin-bottom: 1rem;
}

.offer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.offer-discount {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  display: inline-block;
  font-weight: 600;
  margin-bottom: 1rem;
}

.countdown-timer {
  background: var(--primary);
  color: white;
  padding: 1rem;
  text-align: center;
  border-radius: var(--border-radius);
  margin-top: 1rem;
}

.timer-digits {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.timer-item {
  text-align: center;
}

.timer-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.timer-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Breadcrumb Navigation */
.breadcrumb-area {
  background: var(--bg-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.breadcrumb-nav a:hover {
  color: var(--accent);
}

.breadcrumb-separator {
  color: var(--text-secondary);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--primary);
  font-weight: 600;
}

/* Live Fleet Tracker */
.fleet-tracker {
  background: var(--primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.fleet-tracker h3 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.tracking-map {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, #1a4b7c, #2d5a87);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin: 0 auto;
  max-width: 800px;
}

.truck-marker {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: moveAlongRoute 20s linear infinite;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.truck-icon {
  width: 20px;
  height: 20px;
  fill: white;
}

.truck-marker:nth-child(2) {
  animation-delay: -7s;
  top: 60%;
}

.truck-marker:nth-child(3) {
  animation-delay: -14s;
  top: 80%;
}

@keyframes moveAlongRoute {
  0% { left: -50px; }
  100% { left: calc(100% + 50px); }
}

.route-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}