@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-green: #0A733E;
  --white: #FFFFFF;
  --light-gray: #F0F2F5;
  --dark-gray: #333333;
  --secondary-green: #5B8C5A;
  --border-gray: #E0E0E0;
  
  --font-primary: 'Montserrat', Arial, sans-serif;
  
  --header-height: 80px;
  --header-height-mobile: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--border-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-green);
  border-radius: 4px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10, 115, 62, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 115, 62, 0.4);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header.scrolled {
  height: 70px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: -0.5px;
}

.logo span {
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-gray);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-green);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-green);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark-gray);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: right 0.4s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .nav-link {
  font-size: 24px;
}

.mobile-cta {
  margin-top: 20px;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  cursor: pointer;
  color: var(--dark-gray);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero .btn {
  font-size: 18px;
  padding: 18px 36px;
}

.section {
  padding: 100px 0;
}

.section-gray {
  background: var(--light-gray);
}

.section-dark {
  background: var(--dark-gray);
  color: var(--white);
}

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

.section-title {
  font-size: 42px;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  max-width: 700px;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 60px;
  height: 60px;
  stroke: var(--primary-green);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.service-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.why-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.why-us-content h2 {
  font-size: 42px;
  color: var(--primary-green);
  margin-bottom: 30px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-us-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-us-item svg {
  width: 40px;
  height: 40px;
  min-width: 40px;
  stroke: var(--primary-green);
}

.why-us-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-us-item p {
  font-size: 15px;
  color: #666;
}

.case-studies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover img {
  transform: scale(1.1);
}

.case-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
}

.case-overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.case-overlay p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 15px;
}

.case-link {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 64px;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}

.experiential-promise {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.experiential-promise::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.experiential-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 40px;
}

.experiential-content h2 {
  font-size: 48px;
  margin-bottom: 25px;
}

.experiential-content p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-quote {
  font-size: 17px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #555;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.testimonial-author h4 {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-author p {
  font-size: 14px;
  color: #888;
}

.partners {
  text-align: center;
}

.partners h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--dark-gray);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner-logo {
  height: 50px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.cta-section h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 35px;
}

.cta-section .btn {
  background: var(--white);
  color: var(--primary-green);
}

.cta-section .btn:hover {
  background: var(--light-gray);
}

.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: var(--header-height);
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: 52px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 20px;
  opacity: 0.9;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story h2 {
  font-size: 38px;
  color: var(--primary-green);
  margin-bottom: 25px;
}

.about-story p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 35px 25px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.value-card svg {
  width: 50px;
  height: 50px;
  stroke: var(--primary-green);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

.team-card h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.team-card p {
  color: var(--primary-green);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-card span {
  font-size: 14px;
  color: #777;
}

.facilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.facilities-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.facilities-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.facilities-content h2 {
  font-size: 38px;
  color: var(--primary-green);
  margin-bottom: 25px;
}

.facilities-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.certification-logo {
  height: 80px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.certification-logo:hover {
  opacity: 1;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cta-block {
  padding: 50px;
  border-radius: 16px;
  text-align: center;
}

.cta-block:first-child {
  background: var(--light-gray);
}

.cta-block:last-child {
  background: var(--primary-green);
  color: var(--white);
}

.cta-block h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cta-block p {
  margin-bottom: 25px;
  opacity: 0.8;
}

.cta-block .btn {
  margin-top: 10px;
}

.cta-block:last-child .btn {
  background: var(--white);
  color: var(--primary-green);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.service-block:nth-child(even) {
  direction: rtl;
}

.service-block:nth-child(even) > * {
  direction: ltr;
}

.service-block-content h3 {
  font-size: 32px;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.service-block-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-features span {
  background: var(--light-gray);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.service-block-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.map-section {
  text-align: center;
  padding: 80px 0;
}

.map-section h2 {
  font-size: 42px;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.map-section p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.map-visual {
  margin-top: 50px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
}

.process-step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--primary-green);
}

.process-step h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.differentiators-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.differentiator-item {
  text-align: center;
  padding: 30px;
}

.differentiator-item svg {
  width: 60px;
  height: 60px;
  stroke: var(--primary-green);
  margin-bottom: 20px;
}

.differentiator-item h4 {
  font-size: 18px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-green);
  color: var(--white);
}

.featured-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-project-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.featured-project-content h2 {
  font-size: 36px;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.featured-project-content > p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.project-details h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.project-details p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.project-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-flow-step {
  text-align: center;
  position: relative;
}

.process-flow-step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 40px;
  font-size: 24px;
  color: var(--primary-green);
}

.process-flow-step:last-child::after {
  display: none;
}

.process-flow-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-flow-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-green);
}

.process-flow-step h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.process-flow-step p {
  font-size: 14px;
  color: #666;
}

.quote-block {
  text-align: center;
  padding: 80px 40px;
  background: var(--dark-gray);
  border-radius: 16px;
  position: relative;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  color: var(--primary-green);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.quote-block p {
  font-size: 24px;
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.quote-block h4 {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.contact-method {
  padding: 40px 30px;
  background: var(--light-gray);
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
}

.contact-method svg {
  width: 50px;
  height: 50px;
  stroke: var(--primary-green);
  margin-bottom: 20px;
}

.contact-method h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-method p {
  color: #666;
  font-size: 15px;
}

.contact-method a {
  color: var(--primary-green);
  font-weight: 600;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-gray);
}

.faq-question {
  width: 100%;
  padding: 25px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 25px;
  color: #666;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.map-container {
  height: 400px;
  background: var(--light-gray);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-address {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-green);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-green);
}

.social-links svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

@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);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1023px) {
  .header-inner {
    padding: 0 20px;
  }
  
  .nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-us {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .case-studies {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat-item h3 {
    font-size: 48px;
  }
  
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    gap: 40px;
  }
  
  .partners-grid img {
    height: 40px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .facilities {
    grid-template-columns: 1fr;
  }
  
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-split {
    grid-template-columns: 1fr;
  }
  
  .service-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-block:nth-child(even) {
    direction: ltr;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .differentiators-compact {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-project {
    grid-template-columns: 1fr;
  }
  
  .process-flow {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-flow-step::after {
    display: none;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
  }
  
  .header {
    height: var(--header-height);
  }
  
  .hero {
    min-height: calc(100vh - var(--header-height));
    padding-top: var(--header-height);
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .intro h2 {
    font-size: 32px;
  }
  
  .intro p {
    font-size: 16px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .case-studies {
    grid-template-columns: 1fr;
  }
  
  .case-card {
    height: 300px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stat-item h3 {
    font-size: 42px;
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .about-story {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-card img {
    height: 300px;
  }
  
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .differentiators-compact {
    grid-template-columns: 1fr;
  }
  
  .filter-buttons {
    flex-wrap: wrap;
  }
  
  .process-flow {
    grid-template-columns: 1fr;
  }
  
  .quote-block p {
    font-size: 18px;
  }
  
  .project-gallery {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .experiential-content h2 {
    font-size: 32px;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
}

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
}

@keyframes confetti-fall {
  0% {
    opacity: 1;
    transform: translateY(-100px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}
