:root {
  --primary-color: #104F4F;
  --secondary-color: #2a9d8f;
  --accent-color: #e8f4f2;
  --text-color: #333;
  --text-light: #666;
  --light-color: #fff;
  --border-color: #eaeaea;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --animation-duration: 0.6s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f9f9f9;
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 400;
}



@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animate {
  opacity: 0;
  will-change: transform, opacity;
}

.animate-fade-in {
  animation: fadeIn var(--animation-duration) ease forwards;
}

.animate-slide-left {
  animation: slideInLeft var(--animation-duration) ease forwards;
}

.animate-slide-right {
  animation: slideInRight var(--animation-duration) ease forwards;
}

.animate-zoom {
  animation: zoomIn var(--animation-duration) ease forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}


h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, 
    rgba(42, 157, 143, 0.1), 
    var(--secondary-color) 30%, 
    var(--secondary-color) 70%, 
    rgba(42, 157, 143, 0.1)
  );
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section:nth-of-type(even) {
  background-color: var(--light-color);
}

.header {
  background-color: var(--light-color);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1025px) {
  .nav-wrapper {
    gap: 2rem;
  }
  
  .nav {
    margin-left: auto;
  }
  
  .header-icons .phone-icon {
    display: none;
  }
}

.logo-link {
  display: inline-block;
  transition: var(--transition);
  text-decoration: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: block;
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.logo-link:hover {
  transform: translateY(-2px);
}

.nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 0 transparent;
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
  opacity: 0.8;
}

.nav a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 1px var(--secondary-color);
  font-weight: 500;
}

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

.nav a.active {
  color: var(--secondary-color);
  text-shadow: 0 0 1px var(--secondary-color);
  font-weight: 500;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.phone-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(42, 157, 143, 0.1);
  transition: var(--transition);
}

.phone-icon:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
  transform: translateY(-2px);
}

.nav-toggle {
  font-size: 1.2rem;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero {
  background-color: var(--accent-color);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
    var(--accent-color) 0%,
    var(--accent-color) 34%,
    rgba(232, 244, 242, 0.5) 42%,
    rgba(232, 244, 242, 0.2) 47%,
    rgba(232, 244, 242, 0) 52%,
    rgba(232, 244, 242, 0) 85%,
    var(--accent-color) 100%
  );
  z-index: 1;
}

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

.hero-content {
  max-width: 550px;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  font-size: 3.2rem;
}

.hero-content h1 .accent-part {
  display: block;
  color: var(--secondary-color);
  margin-top: 0.3rem;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 90%;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.hero-image {
  position: absolute;
  top: -5%;
  left: 38%;
  width: 64%;
  max-width: 1200px;
  height: 110%;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
  transform: translateZ(0);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right,
    var(--accent-color) 0%,
    rgba(232, 244, 242, 0.8) 40%,
    rgba(232, 244, 242, 0.3) 80%,
    transparent 100%
  );
  z-index: 1;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to left,
    var(--accent-color) 0%,
    rgba(232, 244, 242, 0.8) 40%,
    rgba(232, 244, 242, 0.3) 80%,
    transparent 100%
  );
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.btn-primary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  margin-top: 1.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(42, 157, 143, 0.2);
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(16, 79, 79, 0.25);
}

@media (min-width: 1200px) {
  .btn-primary {
    font-size: 1.1rem;
    padding: 1.1rem 2.5rem;
  }
}

.about-grid {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-direction: row-reverse;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
  width: 100%;
}

.about-social {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  position: relative;
  text-align: center;
}

.about-social::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    rgba(234, 234, 234, 0),
    rgba(234, 234, 234, 0.8) 20%,
    rgba(234, 234, 234, 0.8) 80%,
    rgba(234, 234, 234, 0)
  );
}

.about-social p {
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--primary-color);
}

.about-social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.about-social-icons .social-icon {
  background-color: rgba(42, 157, 143, 0.1);
  color: var(--primary-color);
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
}

.about-social-icons .social-icon:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

@media (max-width: 992px) {
  .about-social {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.transformation-grid {
  display: flex;
  gap: 2rem;
}

.transformation-item {
  flex: 1;
  text-align: center;
}

.transform-img {
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin: 0 auto;
}

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

.service-card {
  background: var(--light-color);
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(234, 234, 234, 0.5);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(16, 79, 79, 0.03), transparent);
  z-index: -1;
}


.service-card img {
  border-radius: 8px;
  margin-bottom: 1.5rem;
  height: 220px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}



.service-icon {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #d4e8e5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-icon i {
  font-size: 4rem;
  color: var(--primary-color);
}


.service-card h3 {
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.contact-section {
  background-color: var(--accent-color);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 79, 79, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

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

.contact-info-wrapper {
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
}

.contact-info {
  width: 100%;
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phone-entry {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}


.contact-item {
  display: flex;
  align-items: flex-start;
  padding: 1.3rem 0;
  gap: 1.5rem;
  position: relative;
}

.contact-item:not(:last-child) {
  position: relative;
}

.contact-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right,
    rgba(234, 234, 234, 0),
    rgba(234, 234, 234, 0.7) 20%,
    rgba(234, 234, 234, 0.7) 80%,
    rgba(234, 234, 234, 0)
  );
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-icon {
  color: var(--secondary-color);
  font-size: 1.3rem;
  width: 24px;
  margin-top: 4px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  font-size: 1.15rem;
  line-height: 1.5;
}

.contact-label {
  font-weight: 500;
  color: var(--primary-color);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.contact-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.map-container {
  height: 100%;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(200, 200, 200, 0.8);
  transition: var(--transition);
}

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

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info-wrapper {
    padding: 1.5rem;
  }

  .map-container {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-info-wrapper {
    padding: 1.5rem;
  }

  .map-container {
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .contact-item {
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.2rem 0;
    align-items: center;
    text-align: center;
  }

  .contact-item:not(:last-child) {
    border-bottom: 1px solid rgba(234, 234, 234, 0.5);
  }

  .contact-icon {
    margin-bottom: 0;
    margin-top: 0;
  }
  
  .contact-text {
    width: 100%;
  }
}



.footer {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 2rem 0 1.5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  padding-bottom: 0;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media (min-width: 769px) {
  .footer-content {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.footer-left {
  flex: 2;
}

.footer-right {
  flex: 1;
  min-width: 180px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
}

.footer-right h4 {
  color: var(--light-color);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  display: inline-block;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-container {
  transition: var(--transition);
}

.footer-logo-container:hover {
  transform: translateY(-3px);
}

.footer-logo .logo-icon {
  filter: brightness(0) invert(1);
  opacity: 0.95;
  max-height: 45px;
}

.footer-logo-text {
  color: var(--light-color);
}

.footer-info p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  text-align: left;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.footer-right .social-icons {
  justify-content: flex-end;
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.testimonial-item {
  flex: 1;
  min-width: 300px;
}

.testimonial-content {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(234, 234, 234, 0.7);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  position: relative;
  margin-bottom: 1.5rem;
}

.testimonial-quote .fa-quote-left {
  color: var(--secondary-color);
  opacity: 0.3;
  font-size: 1.5rem;
  position: absolute;
  top: -0.8rem;
  left: -0.5rem;
}

.testimonial-quote .fa-quote-right {
  color: var(--secondary-color);
  opacity: 0.3;
  font-size: 1.5rem;
  position: absolute;
  bottom: -0.8rem;
  right: -0.5rem;
}

.testimonial-quote p {
  color: var(--text-color);
  font-style: italic;
  margin: 0;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: auto;
  padding-top: 1rem;
  position: relative;
}

.testimonial-author::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right,
    rgba(234, 234, 234, 0),
    rgba(234, 234, 234, 0.9) 30%,
    rgba(234, 234, 234, 0.9) 70%,
    rgba(234, 234, 234, 0)
  );
}

.testimonial-author p {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.testimonial-author p:last-child {
  color: var(--text-light);
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .testimonials-slider {
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
  }
}


@media (max-width: 992px) {
  h1 {
    font-size: 2.4rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero::before {
    background: linear-gradient(to bottom, 
      var(--accent-color) 0%, 
      rgba(232, 244, 242, 0.85) 40%, 
      rgba(232, 244, 242, 0.6) 85%,
      var(--accent-color) 100%);
    width: 100%;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 3;
  }
  
  .hero-content p {
    margin: 0 auto 2rem;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
  }
  
  .about-grid,
  .contact-info {
    flex-direction: column;
    gap: 2rem;
  }
  
  
  .transformation-grid {
    flex-direction: column;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  
  .animate-slide-left,
  .animate-slide-right {
    animation-name: fadeIn;
  }
  
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes zoomIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
  }
  
  
  :root {
    --animation-duration: 0.5s;
  }
}

@media (max-width: 1024px) {
  .logo-icon {
    height: 45px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
  }
  
  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1.2rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .nav.show ul {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav li {
    width: 100%;
  }
  
  .nav a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .nav a:hover {
    background-color: rgba(42, 157, 143, 0.05);
    padding-left: 1.8rem;
  }
  
  .nav.show {
    max-height: 250px;
  }
  
  .nav-toggle {
    display: flex;
    font-size: 1.2rem;
    background-color: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
  }
  
  .nav-toggle:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  
  h1 .first-part {
    font-size: 1.8rem;
    display: inline;
  }
  
  h1 .accent-part {
    font-size: 2.1rem;
    display: inline-block;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-details {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .contact-details p {
    font-size: 1.1rem;
  }
  
  .contact-details i {
    padding: 1.2rem;
  }
  
  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  h1 {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
  
  h1 .first-part {
    font-size: 2.2rem;
    display: block;
    line-height: 1.2;
  }
  
  h1 .accent-part {
    font-size: 2.4rem;
    display: block;
    margin-top: 0.1rem;
  }
  
  h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .container {
    width: 95%;
    padding: 0 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.35);
    z-index: 1;
  }
  
  .hero-img {
    filter: blur(1.5px);
  }
  
  .hero::before {
    background: linear-gradient(to bottom, 
      rgba(232, 244, 242, 0.7) 0%, 
      rgba(232, 244, 242, 0.5) 40%, 
      rgba(232, 244, 242, 0.7) 85%,
      var(--accent-color) 100%);
  }
  
  .hero-content h1, 
  .hero-content p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  }
  
  .hero-content h1 {
    color: var(--primary-color);
  }
  
  .hero-content h1 .accent-part {
    color: var(--secondary-color);
  }
  
  .map-container {
    height: 250px;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  
  .service-card img {
    height: 180px;
  }
  
  .transformation-grid {
    gap: 1.5rem;
  }
  
  .footer {
    padding: 1.5rem 0 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .footer-left,
  .footer-right {
    text-align: center;
    width: 100%;
  }
  
  .footer-right {
    min-height: auto;
  }
  
  .footer-logo-container {
    justify-content: center;
    margin: 0 auto;
  }
  
  .footer-right h4 {
    display: inline-block;
  }
  
  .footer-info p {
    text-align: center;
  }
  
  .footer-right .social-icons {
    justify-content: center;
    margin-bottom: 2rem;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 1.3rem;
  }
  
  h1 .first-part {
    font-size: 1.1rem;
  }
  
  h1 .accent-part {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
  }
}


@media (min-width: 1920px) {
  .hero-image {
    left: 42%;
  }
}

@media (min-width: 2560px) {
  .hero-image {
    left: 45%;
  }
}
