/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: #FAF9F7;
  color: #5D6B66;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #3E4E4A;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hero Section */
.et-hero-tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  background: linear-gradient(rgba(250, 249, 247, 0.95), rgba(250, 249, 247, 0.95)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
  text-align: center;
  padding: 0 20px;
}

.et-hero-tabs::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(167, 200, 189, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-title {
  font-size: 5.5rem;
  margin: 0;
  letter-spacing: -0.02em;
  animation: fadeInUp 1.5s ease-out;
}

.hero-title .highlight {
  color: #A7C8BD;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.6rem;
  margin: 20px 0 30px;
  font-weight: 300;
  animation: fadeInUp 1.5s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-button {
  display: inline-block;
  padding: 16px 40px;
  background: #A7C8BD;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.4s ease;
  animation: fadeInUp 1.5s ease-out 0.6s forwards;
  opacity: 0;
  box-shadow: 0 8px 25px rgba(167, 200, 189, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-button::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: left 0.6s;
}

.hero-button:hover::before {
  left: 100%;
}

.hero-button:hover {
  background: #8FB0A6;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(167, 200, 189, 0.4);
}

/* Navbar */
.et-hero-tabs-container {
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: rgba(62, 78, 74, 0.95);
  backdrop-filter: blur(15px);
  z-index: 10;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.et-hero-tabs-container--top {
  position: fixed;
  top: 0;
  bottom: auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.et-hero-tab {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #E8E5E0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
  position: relative;
}

.et-hero-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #A7C8BD;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.et-hero-tab:hover::after,
.et-hero-tab.active::after {
  width: 60%;
}

.et-hero-tab:hover {
  color: #A7C8BD;
  background: rgba(167, 200, 189, 0.1);
}

.et-hero-tab.active {
  color: #A7C8BD;
  background: rgba(167, 200, 189, 0.15);
}

.et-hero-tab-slider {
  position: absolute;
  bottom: 0;
  height: 4px;
  background: #A7C8BD;
  transition: all 0.4s ease;
  border-radius: 2px;
}

/* Main Sections */
.et-slide {
  min-height: 120vh;
  padding: 120px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.et-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(167, 200, 189, 0.03) 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.section-title {
  font-size: 3.8rem;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease-out;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #A7C8BD;
  border-radius: 2px;
}

.highlight {
  color: #A7C8BD;
  font-weight: 600;
}

/* About Section */
.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-image {
  flex: 1;
  min-width: 350px;
  animation: slideInLeft 1.5s ease-out;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(167, 200, 189, 0.1), transparent 50%);
  z-index: 1;
  border-radius: 25px;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 8s ease;
  border-radius: 25px;
}

.about-image:hover img {
  transform: scale(1.08);
}

.about-content {
  flex: 1;
  min-width: 350px;
  animation: slideInRight 1.5s ease-out;
}

.about-lead {
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #3E4E4A;
}

.about-content p {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: #5D6B66;
}

.about-quote {
  margin-top: 40px;
  padding: 35px;
  background: #F0F4F2;
  border-left: 6px solid #A7C8BD;
  border-radius: 0 20px 20px 0;
  font-style: italic;
  font-size: 1.35rem;
  color: #3E4E4A;
  position: relative;
  overflow: hidden;
}

.about-quote::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: 15px;
  font-size: 6rem;
  color: rgba(167, 200, 189, 0.2);
  font-family: 'Playfair Display', serif;
}

/* Mission Section */
.mission-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mission-content {
  flex: 1;
  min-width: 350px;
}

.mission-lead {
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #3E4E4A;
}

.mission-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  justify-content: center;
  margin: 0 auto;
}

.mission-card {
  background: white;
  padding: 40px 30px;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.09);
  transition: all 0.5s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #A7C8BD, #8FB0A6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mission-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 35px 70px rgba(167, 200, 189, 0.25);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #A7C8BD, #8FB0A6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.mission-card:hover .card-icon {
  transform: scale(1.15) rotate(10deg);
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #3E4E4A;
}

.mission-card p {
  font-size: 1.15rem;
  color: #5D6B66;
  margin: 0;
  flex-grow: 1;
}

.mission-image {
  flex: 1;
  min-width: 350px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  position: relative;
}

.mission-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(167, 200, 189, 0.08), transparent 60%);
  z-index: 1;
  border-radius: 25px;
}

.mission-image img {
  width: 100%;
  height: auto;
  transition: transform 10s ease;
  border-radius: 25px;
}

.mission-image:hover img {
  transform: scale(1.1);
}

/* Expertise Section */
.expertise-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

.expertise-lead {
  font-size: 1.6rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #3E4E4A;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  justify-content: center;
}

.expertise-item {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(0,0,0,0.09);
  transition: all 0.6s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.expertise-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(167, 200, 189, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.expertise-item:hover::after {
  opacity: 1;
}

.expertise-item:hover {
  transform: translateY(-25px);
  box-shadow: 0 40px 80px rgba(167, 200, 189, 0.3);
}

.item-image {
  height: 280px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.item-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.2));
  z-index: 1;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.expertise-item:hover .item-image img {
  transform: scale(1.15);
}

.item-content {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.item-content h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: #3E4E4A;
}

.item-content p {
  font-size: 1.25rem;
  color: #5D6B66;
  flex-grow: 1;
}

/* Vision Section */
.vision-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vision-image {
  flex: 1;
  min-width: 350px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  position: relative;
}

.vision-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(167, 200, 189, 0.1), transparent 60%);
  z-index: 1;
  border-radius: 25px;
}

.vision-image img {
  width: 100%;
  height: auto;
  transition: transform 12s ease;
  border-radius: 25px;
}

.vision-image:hover img {
  transform: scale(1.08);
}

.vision-content {
  flex: 1;
  min-width: 350px;
}

.vision-lead {
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #3E4E4A;
}

.vision-content p {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: #5D6B66;
}

.vision-button {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 38px;
  background: #A7C8BD;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(167, 200, 189, 0.3);
  position: relative;
  overflow: hidden;
}

.vision-button::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: left 0.6s;
}

.vision-button:hover::before {
  left: 100%;
}

.vision-button:hover {
  background: #8FB0A6;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(167, 200, 189, 0.4);
}

/* Contact Section */
.contact-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

.contact-content-center {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-content-center h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #3E4E4A;
}

.contact-content-center > p {
  font-size: 1.3rem;
  margin-bottom: 50px;
  color: #5D6B66;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-card {
  background: white;
  padding: 45px 30px;
  border-radius: 32px;
  box-shadow: 0 22px 45px rgba(0,0,0,0.09);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #A7C8BD, #8FB0A6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-info-card:hover {
  transform: translateY(-18px);
  box-shadow: 0 35px 70px rgba(167, 200, 189, 0.25);
}

.contact-icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(167, 200, 189, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon-large {
  background: rgba(167, 200, 189, 0.22);
  transform: scale(1.12);
}

.contact-info-card h4 {
  font-size: 1.45rem;
  margin-bottom: 15px;
  color: #3E4E4A;
}

.contact-link-large {
  font-size: 1.28rem;
  color: #A7C8BD;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-link-large:hover {
  color: #8FB0A6;
}

.contact-address {
  font-size: 1.22rem;
  color: #5D6B66;
  line-height: 1.6;
  margin: 0;
}

.contact-company {
  background: #F0F4F2;
  padding: 28px;
  border-radius: 22px;
  font-size: 1.35rem;
  color: #3E4E4A;
  margin-top: 20px;
  text-align: center;
}

.contact-company strong {
  color: #A7C8BD;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #3E4E4A 0%, #2C3A36 100%);
  padding: 70px 5% 40px;
  color: #E8E5E0;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 35px;
}

.footer-links a {
  color: #B0C4BC;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #A7C8BD;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: #A7C8BD;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .et-slide {
    padding: 80px 5%;
    min-height: 100vh;
  }
  
  .about-wrapper, .mission-wrapper, .vision-wrapper {
    gap: 50px;
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .et-hero-tabs-container {
    height: 60px;
    font-size: 0.8rem;
  }
  
  .et-hero-tab {
    font-size: 0.75rem;
  }
  
  .mission-grid, .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Animation on scroll */
.et-slide.animate-in * {
  animation-play-state: running !important;
}