:root {
  --primary: #2a9d8f;
  --primary-dark: #1e7168;
  --secondary: #e9c46a;
  --accent: #f4a261;
  --dark: #264653;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --text: #333333;
  --border-radius: 8px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-max-width: 1320px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light);
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-dark);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--dark);
}

.btn-secondary:hover {
  background-color: #dbb858;
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.logo-text {
  font-size: 22px;
  color: var(--primary);
  letter-spacing: 1px;
  transition: var(--transition);
}

.logo-text:hover {
  color: var(--primary-dark);
}

.navigation {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-btn {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 2px;
  position: relative;
  transition: var(--transition);
}

.nav-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-btn:hover,
.nav-btn.active {
  color: var(--primary);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
}

.hero-section {
  padding: 160px 0 80px;
  background-color: var(--light);
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.05) 0%, rgba(233, 196, 106, 0.05) 100%);
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.hero-text-container {
  flex: 1 1 300px;
}

.company-title {
  font-size: 48px;
  margin-bottom: 8px;
  color: var(--dark);
  position: relative;
}

.company-title span {
  color: var(--primary);
}

.company-subtitle {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-lead {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-services {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
  border-left: 4px solid var(--primary);
}

.hero-services p {
  font-weight: 500;
  margin-bottom: 0px;
  color: var(--dark);
}

.cta-button {
  margin-top: 30px;
}

.hero-image-container {
  flex: 1 1 300px;
  position: relative;
}

.service-promise {
  margin: 80px 0;
  position: relative;
  z-index: 2;
}

.promise-box {
  background-color: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promise-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.promise-box p {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 0;
  font-weight: 300;
}

.call-to-action {
  margin: 80px 0;
  position: relative;
  z-index: 2;
}

.cta-card {
  background-color: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.cta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.cta-card h2 {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-phone {
  color: var(--dark);
  font-size: 36px;
  font-weight: 700;
  margin: 20px 0;
  transition: var(--transition);
  cursor: pointer;
}

.cta-phone:hover {
  color: var(--primary);
  transform: scale(1.05);
}

.cta-card p:last-child {
  margin-bottom: 0;
  color: var(--gray);
}

.design-promise {
  margin: 80px 0;
  position: relative;
  z-index: 2;
}

.design-box {
  background-color: var(--dark);
  color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.design-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.design-box p {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 0;
  font-weight: 300;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
}

.section-divider {
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  margin: 0 auto;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.service-item {
  background-color: var(--light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-image {
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
  background-color: var(--light);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.service-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 1.5px;
}

.service-content p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.service-link i {
  margin-left: 8px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link:hover i {
  transform: translateX(5px);
}

.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.05) 0%, rgba(233, 196, 106, 0.05) 100%);
}

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

.about-text .section-header {
  text-align: left;
}

.about-text .section-divider {
  margin: 0;
}

.about-description {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 30px 0;
  transition: var(--transition);
}

.about-description:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.quote-box {
  background-color: var(--secondary);
  color: var(--dark);
  padding: 25px;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 30px 0;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.quote-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.quote-box p {
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
}

.cta-box {
  background-color: var(--primary);
  color: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cta-box p {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}

.about-images {
  position: relative;
}

.image-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  border-radius: var(--border-radius);
  z-index: -1;
}

.image-frame:hover {
  transform: translateY(-10px) translateX(10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.image-frame:hover img {
  transform: scale(1.05);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-info .footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-info p {
  margin-bottom: 10px;
  font-size: 15px;
  opacity: 0.8;
}

.footer-info p i {
  margin-right: 10px;
  color: var(--primary);
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 1.5px;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links ul li a {
  color: var(--white);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

.footer-newsletter p {
  margin-bottom: 20px;
  font-size: 15px;
  opacity: 0.8;
}

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

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 0;
}

[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.responsive-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.hero-image-container:hover .responsive-image {
  transform: scale(1.02);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 40px;
}

@media (max-width: 1200px) {
  .company-title {
    font-size: 42px;
  }

  .hero-content {
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-text-container {
    width: 100%;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-text .section-header {
    text-align: center;
  }

  .about-text .section-divider {
    margin: 0 auto;
  }

  .image-frame::before {
    top: 15px;
    left: 15px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-list.active {
    right: 0;
  }

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

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

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

  .cta-card {
    padding: 30px;
  }

  .cta-card h2 {
    font-size: 26px;
  }

  .cta-phone {
    font-size: 30px;
  }

  .promise-box,
  .design-box {
    padding: 30px;
  }

  .promise-box p,
  .design-box p {
    font-size: 16px;
  }

  .services-section,
  .about-section {
    padding: 70px 0;
  }

  .footer {
    padding: 60px 0 30px;
  }

  .footer-content {
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .company-title {
    font-size: 36px;
  }

  .hero-section {
    padding: 140px 0 60px;
  }

  .service-promise,
  .call-to-action,
  .design-promise {
    margin: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .cta-card h2 {
    font-size: 24px;
  }

  .cta-phone {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section,
  .about-section {
    padding: 60px 0;
  }
}