/* Design Tokens */
/* Base Styles */
/* Buttons */
/* Typography Utilities */
/* Top Bar */
/* Header */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* Hero Section */
/* Features Section */
/* About Section */
/* Services Section */
/* CTA Section */
/* Footer */
/* Animations */
/* Responsive Design */
:root {
  --primary-color: #25A385;
  --primary-dark: #a3181e;
  --secondary-color: #232331;
  --secondary-light: #343447;
  --text-color: #333333;
  --text-light: #777777;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #dddddd;
  --white: #ffffff;
  --font-primary: 'Roboto', sans-serif;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-large {
  padding: 15px 35px;
  font-size: 1.1rem;
}

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

.section-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  color: var(--secondary-color);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.top-bar {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
  font-size: 14px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info span {
  margin-right: 20px;
  color: var(--text-light);
}
.contact-info i {
  color: var(--primary-color);
  margin-right: 5px;
}

.social-links a {
  color: var(--text-light);
  margin-left: 15px;
}
.social-links a:hover {
  color: var(--primary-color);
}

.header {
  background-color: var(--white);
  padding: 15px 0;
  position: relative;
  z-index: 1000;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  animation: slideDown 0.5s ease;
}

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

.logo-icon {
  width: 50px;
  height: 50px;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.logo-text h1 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: 1px;
}
.logo-text span {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
}
.nav-menu a {
  font-weight: 500;
  color: var(--secondary-color);
  position: relative;
  padding: 5px 0;
}
.nav-menu a:hover {
  color: var(--primary-color);
}
.nav-menu a:hover::after {
  width: 100%;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}
.nav-menu a.active {
  color: var(--primary-color);
}
.nav-menu a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--secondary-color);
  cursor: pointer;
}

.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0 50px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-btn:hover {
  background: var(--primary-color);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dots .dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(35, 35, 49, 0.8), rgba(35, 35, 49, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
}
.hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.features {
  padding: 80px 0;
  background-color: var(--white);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

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

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
  border-bottom-color: var(--primary-color);
}
.feature-card:hover .icon-box {
  background-color: var(--primary-color);
  color: var(--white);
}
.feature-card .icon-box {
  width: 80px;
  height: 80px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--primary-color);
  transition: var(--transition);
}
.feature-card h3 {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.feature-card p {
  color: var(--text-light);
}

.about {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.experience-badge .number {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
}
.experience-badge .text {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
}

.about-content p {
  margin-bottom: 25px;
  color: var(--text-light);
}

.about-list {
  margin-bottom: 35px;
}
.about-list li {
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-weight: 500;
  display: flex;
  align-items: center;
}
.about-list i {
  color: var(--primary-color);
  margin-right: 15px;
  background: rgba(202, 31, 38, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.services {
  padding: 100px 0;
  background-color: var(--white);
}

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

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}
.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.service-icon {
  position: absolute;
  bottom: -25px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  z-index: 2;
  border: 4px solid var(--white);
}

.service-content {
  padding: 40px 30px 30px;
}
.service-content h3 {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.service-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}
.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}
.read-more:hover i {
  transform: translateX(5px);
}

.cta {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/about.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(202, 31, 38, 0.85);
}

.cta-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}
.footer h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-logo {
  margin-bottom: 20px;
}
.footer-logo .logo-text h1 {
  color: var(--white);
}
.footer-logo .logo-text span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-about p {
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: var(--transition);
}
.footer-socials a:hover {
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.footer-links a i {
  margin-right: 8px;
  font-size: 12px;
}

.contact-list li {
  display: flex;
  margin-bottom: 20px;
}
.contact-list i {
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 15px;
  margin-top: 5px;
}
.contact-list strong {
  color: var(--white);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  text-align: center;
}

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-up.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .features {
    margin-top: 0;
    padding-top: 60px;
  }
  .hero-content h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .top-bar {
    display: none;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }
  .nav-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .mobile-menu-btn {
    display: block;
  }
  .header .btn {
    display: none;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.fixed-socials {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
.fixed-socials .social-btn {
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.fixed-socials .social-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  color: var(--white);
}
.fixed-socials .social-btn i {
  font-size: 18px;
  margin-right: 8px;
  animation: pulse 2s infinite;
}
.fixed-socials .social-btn span {
  font-weight: bold;
  font-size: 16px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* Gallery Section */
.gallery {
  padding: 100px 0;
  background-color: var(--white);
}

.masonry-gallery {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.masonry-gallery .masonry-item {
  margin-bottom: 20px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}
.masonry-gallery .masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-gallery .masonry-item img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .masonry-gallery {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 576px) {
  .masonry-gallery {
    -moz-column-count: 1;
         column-count: 1;
  }
}
/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--bg-light);
}
.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials .testimonial-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}
.testimonials .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}
.testimonials .quote-icon {
  color: var(--primary-color);
  font-size: 40px;
  opacity: 0.2;
  position: absolute;
  top: 30px;
  right: 30px;
}
.testimonials .testimonial-text {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials .author-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.testimonials .author-info h4 {
  color: var(--secondary-color);
  font-size: 16px;
  margin-bottom: 5px;
}
.testimonials .author-info span {
  color: var(--text-light);
  font-size: 14px;
}/*# sourceMappingURL=styles.css.map */