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

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

.hero-title {
  color: white;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, white, #D4A373);
  -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: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  background: rgba(212, 163, 115, 0.1);
  border-radius: 50%;
  filter: blur(1px);
  animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

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

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

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

.about-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 79, 58, 0.2);
}

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

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

/* Services Grid */
.services-grid-section {
  background: var(--bg-secondary);
}

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

.service-highlight-card {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(11, 79, 58, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-highlight-card:hover {
  transform: perspective(1000px) rotateY(5deg) translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(11, 79, 58, 0.2);
}

.service-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-highlight-card:hover::before {
  left: 100%;
}

.service-large-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem auto;
  fill: var(--accent);
}

/* Timeline Section */
.timeline-section {
  background: linear-gradient(rgba(11, 79, 58, 0.05), rgba(11, 79, 58, 0.05)), var(--bg-primary);
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}

.timeline-content {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(11, 79, 58, 0.1);
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-year {
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-content:first-child {
  order: 3;
}

/* Stats Section */
.stats-showcase-section {
  background: var(--primary);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Testimonial Section */
.testimonial-carousel-section {
  background: var(--bg-secondary);
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  text-align: center;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(11, 79, 58, 0.1);
  margin: 0 1rem;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 2rem;
  color: var(--accent);
  font-family: serif;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.testimonial-title {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Team Grid */
.team-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-member-profile {
  text-align: center;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(11, 79, 58, 0.1);
  transition: all 0.3s ease;
}

.team-member-profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(11, 79, 58, 0.15);
}

.team-member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  border: 4px solid var(--accent);
  object-fit: cover;
}

.team-member-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

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

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

/* Contact Page */
.contact-hero-section {
  background: linear-gradient(rgba(11, 79, 58, 0.8), rgba(11, 79, 58, 0.9)), url('../images/services-cybersecurity-digital_orig.jpg') center/cover;
  color: white;
  text-align: center;
  padding: 120px 0 80px 0;
}

.contact-content-section {
  background: var(--bg-secondary);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-panel {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(11, 79, 58, 0.1);
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--bg-primary);
}

.contact-icon {
  width: 32px;
  height: 32px;
  fill: var(--accent);
}

.contact-detail-content h4 {
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.contact-detail-content p {
  margin: 0;
  color: var(--text-secondary);
}

/* Map Embed */
.map-embed-container {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 79, 58, 0.1);
}

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

/* Business Climate Tool */
.business-climate-tool {
  background: var(--accent);
  color: white;
  padding: 4rem 3rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
}

.climate-tool-title {
  color: white;
  margin-bottom: 1rem;
}

.climate-tool-subtitle {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.climate-questions {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.climate-question {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
}

.climate-question label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.climate-question select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

.climate-tool-submit {
  background: white;
  color: var(--accent);
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.climate-tool-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Page Title Bar */
.page-title-bar {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.page-title-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/about-tech-team-collaboration_orig.jpg') center/cover;
  opacity: 0.3;
  z-index: 1;
}

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

.page-main-title {
  color: white;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Form Success Message */
.form-success-message {
  background: #10B981;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: none;
}

.form-success-message.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    min-height: 80vh;
    padding-top: 80px;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .timeline-line {
    display: none;
  }

  .timeline-year {
    margin: 0 auto 1rem auto;
  }

  .timeline-item:nth-child(even) .timeline-content:first-child {
    order: 1;
  }

  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .business-climate-tool {
    padding: 2.5rem 2rem;
  }

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

  .hero-cta-buttons .cta-button,
  .hero-cta-buttons .secondary-button {
    width: 100%;
    max-width: 300px;
  }
}