@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&display=swap");

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

html {
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

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

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

.section {
  padding: 8rem 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.2rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

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

.text-highlight {
  color: #7fffd4;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: transparent;
  border: 2px solid #7fffd4;
  color: #7fffd4;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 4px;
  min-width: 15rem;
  text-align: center;
}

.btn:hover,
.btn:focus,
.btn:active {
  background-color: #7fffd4;
  color: #29323c;
  outline: none;
}

.btn-dark {
  border-color: #29323c;
  color: #29323c;
}

.btn-dark:hover {
  background-color: #29323c;
  color: #fff;
}

.btn-alt {
  background-color: rgba(127, 255, 212, 0.1);
  margin-left: 1rem;
}

.btn-alt:hover {
  background-color: rgba(127, 255, 212, 0.9);
}

.hero-tagline {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(41, 50, 60, 0.9);
  transition: background-color 0.3s ease;
}

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

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

.logo-text {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 0;
  font-weight: 600;
}

.logo span {
  color: #7fffd4;
}

.logo img,
.logo-img {
  height: 5rem;
  margin-right: 1rem;
}

.footer-logo-img {
  height: 4rem;
  margin-right: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  flex-direction: column;
}

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

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: 2.5rem;
}

.nav-menu a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #7fffd4;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 10px;
  margin-left: 20px;
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(127, 255, 212, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(127, 255, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(127, 255, 212, 0);
  }
}

.bar {
  display: block;
  width: 30px;
  height: 3px;
  /* margin: 6px auto; Removed to rely on flexbox alignment */
  background-color: #7fffd4;
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/backgrounds/bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 2rem;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 3rem;
}

/* Companies Section */
.companies {
  padding: 8rem 0;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.company-card {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.company-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.company-card-img {
  height: 200px;
  overflow: hidden;
}

.company-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  padding: 20px;
  background-color: #f9f9f9;
}

.company-card:hover .company-card-img img {
  transform: scale(1.05);
}

.company-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.company-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.company-card p {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.company-card .btn {
  margin-top: auto;
}

/* Initiatives Section */
.initiatives {
  background-color: #f9f9f9;
  padding: 8rem 0;
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.initiative-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.initiative-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.initiative-card-img {
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  padding: 2rem;
  border-bottom: 1px solid #eee;
}

.initiative-card-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

.initiative-card-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.initiative-card:hover .initiative-card-img img {
  transform: scale(1.08);
}

.initiative-logo {
  max-width: 95% !important;
  max-height: 95% !important;
}

.initiative-card-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.initiative-card-content h3 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: #29323c;
}

.initiative-type {
  font-size: 1.4rem;
  color: #7fffd4;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.initiative-card-content p {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.initiative-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: auto;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(127, 255, 212, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.feature:hover {
  background-color: rgba(127, 255, 212, 0.2);
}

.feature i {
  color: #7fffd4;
  font-size: 1.6rem;
}

.feature span {
  font-size: 1.4rem;
  color: #444;
  font-weight: 500;
}

.initiative-action {
  margin-top: 2rem;
  text-align: center;
}

.initiative-btn {
  display: inline-flex;
  align-items: center;
  background-color: rgba(127, 255, 212, 0.1);
  color: #7fffd4;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.initiative-btn i {
  margin-left: 0.8rem;
  transition: transform 0.3s ease;
}

.initiative-btn:hover {
  background-color: rgba(127, 255, 212, 0.2);
  color: #29323c;
  transform: translateY(-3px);
}

.initiative-btn:hover i {
  transform: translateX(3px);
}

@media screen and (max-width: 768px) {
  .initiatives-grid {
    grid-template-columns: 1fr;
  }

  .initiative-card-img {
    height: 150px;
  }

  .initiative-features {
    justify-content: center;
  }
}

/* Services Section */
.services {
  background-color: #f9f9f9;
  padding: 8rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.service-item {
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 4rem;
  color: #7fffd4;
  margin-bottom: 2rem;
}

/* Service items with images */
.service-item.with-image {
  padding-top: 0;
  overflow: hidden;
}

.service-image {
  margin: -3rem -2rem 2rem;
  height: 180px;
  overflow: hidden;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.service-item h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-item p {
  font-size: 1.5rem;
  color: #666;
}

.attribution {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.4rem;
  color: #777;
  padding: 1rem;
  border-top: 1px solid #eee;
}

.attribution a {
  color: #7fffd4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.attribution a:hover {
  color: #29323c;
  text-decoration: underline;
}

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(127, 255, 212, 0.5),
    transparent
  );
  margin: 4rem auto;
  width: 80%;
  max-width: 800px;
}

/* Section subtitle */
.section-subtitle {
  margin-top: 2rem;
  font-size: 2.8rem;
}

/* Trucks container */
.trucks-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.truck-item {
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  flex: 0 0 calc(25% - 3rem);
  max-width: 300px;
}

.truck-item:hover {
  transform: translateY(-10px);
}

.truck-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background-color: #f9f9f9;
  border-radius: 5px;
  overflow: hidden;
}

.truck-image img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.truck-item h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.truck-item p {
  font-size: 1.4rem;
  color: #666;
}

@media screen and (max-width: 992px) {
  .truck-item {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media screen and (max-width: 576px) {
  .truck-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Last row container styling */
.last-row-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  padding: 8rem 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-img {
  flex: 1;
  max-width: 400px;
}

.about-img img {
  width: 100%;
  border-radius: 5px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 2rem;
}

.about-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  .about-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .about-buttons .btn {
    width: 100%;
  }
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
  padding: 8rem 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.contact-quote-btn {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  padding: 1.5rem 4rem;
}

.contact-item {
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item i {
  font-size: 3rem;
  color: #7fffd4;
  margin-bottom: 1.5rem;
}

.contact-item h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-item p {
  font-size: 1.5rem;
  color: #666;
}

.contact-item a {
  color: #666;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #7fffd4;
}

/* Projects Section */
.projects {
  padding: 8rem 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.project-item {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-img {
  height: 250px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.project-content {
  padding: 2rem;
}

.project-item h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.project-item p {
  font-size: 1.5rem;
  color: #666;
}

/* Portfolio styles */
.portfolio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: auto;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  color: #7fffd4;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: rgba(127, 255, 212, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
}

.portfolio-link i {
  margin-left: 0.8rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.portfolio-link:hover {
  color: #29323c;
  background-color: rgba(127, 255, 212, 0.3);
  transform: translateY(-2px);
}

.portfolio-link:hover i {
  transform: translateX(3px);
}

.nonprofit-logo {
  background-color: rgba(127, 255, 212, 0.1);
  flex-direction: column;
  gap: 1.5rem;
}

.nonprofit-logo span {
  font-size: 2.2rem;
  font-weight: 600;
  color: #7fffd4;
}

.nonprofit-logo i {
  font-size: 4rem;
}

.service-showcase {
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  color: #7fffd4;
  font-size: 5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(127, 255, 212, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .service-showcase {
  transform: scale(1.05);
  background-color: #eef9f7;
}

.portfolio-item:hover .service-showcase::before {
  opacity: 1;
}

.service-showcase span {
  font-size: 1.8rem;
  font-weight: 600;
  color: #29323c;
  margin-top: 1rem;
  text-align: center;
}

/* Image Carousel Section */
.carousel-section {
  padding: 8rem 0;
  background-color: #f9f9f9;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 500px;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(41, 50, 60, 0.7);
  color: white;
  padding: 15px;
  text-align: center;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-control {
  background: rgba(41, 50, 60, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 15px;
}

.carousel-control:hover {
  background: rgba(127, 255, 212, 0.7);
  color: #29323c;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: #7fffd4;
  transform: scale(1.2);
}

/* Portfolio Section */
.portfolio {
  padding: 8rem 0;
  background-color: #f9f9f9;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3.5rem;
  margin-top: 5rem;
}

.portfolio-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.portfolio-img {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.portfolio-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7fffd4 0%, rgba(127, 255, 212, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-img::after {
  opacity: 1;
}

.portfolio-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
  display: block;
  margin: 0 auto;
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.08);
}

.portfolio-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-category {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7fffd4;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.portfolio-category i {
  font-size: 1.5rem;
}

.portfolio-item h3 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: #29323c;
  position: relative;
}

.portfolio-item p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* 3D Printing Calculator Section */
.printing-calculator {
  background-color: #f9f9f9;
  padding: 8rem 0;
}

.calculator-container {
  max-width: 900px;
  margin: 4rem auto 0;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.upload-area {
  padding: 5rem 3rem;
  text-align: center;
  border: 2px dashed #ddd;
  border-radius: 8px;
  margin: 3rem;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #f9f9f9;
}

.upload-area:hover,
.upload-area.dragover {
  border-color: #7fffd4;
  background-color: rgba(127, 255, 212, 0.05);
}

.upload-icon {
  font-size: 5rem;
  color: #7fffd4;
  margin-bottom: 2rem;
}

.upload-area h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.upload-area p {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 2rem;
}

.btn-upload {
  background-color: #7fffd4;
  color: #29323c;
  padding: 1.2rem 2.5rem;
  font-size: 1.6rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-upload:hover {
  background-color: #5fe0b5;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(127, 255, 212, 0.3);
}

.calculator-form {
  padding: 3rem;
}

.file-info,
.print-options,
.delivery-options,
.price-summary {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.file-info h3,
.print-options h3,
.delivery-options h3,
.price-summary h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #29323c;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.file-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.file-detail-item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.file-detail-item h4 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.file-detail-item p {
  font-size: 1.4rem;
  color: #666;
}

.option-group {
  margin-bottom: 1.5rem;
}

.option-group label {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.option-group select,
.option-group input {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  transition: border-color 0.3s ease;
}

.option-group select:focus,
.option-group input:focus {
  border-color: #7fffd4;
  outline: none;
  box-shadow: 0 0 0 3px rgba(127, 255, 212, 0.2);
}

.price-details {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1.6rem;
  color: #333;
}

.price-row.total {
  font-weight: 700;
  font-size: 1.8rem;
  color: #29323c;
  border-bottom: none;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid #eee;
}

.calculator-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.btn-secondary {
  background-color: #f1f1f1;
  color: #333;
}

.btn-secondary:hover {
  background-color: #e5e5e5;
}

@media screen and (max-width: 768px) {
  .calculator-actions {
    flex-direction: column;
    gap: 1.5rem;
  }

  .calculator-actions .btn {
    width: 100%;
  }

  .upload-area {
    padding: 3rem 2rem;
    margin: 2rem;
  }

  .calculator-form {
    padding: 2rem;
  }
}

/* Footer */
.footer {
  background-color: #29323c;
  color: #fff;
  padding: 5rem 0 2rem;
}

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

.footer-logo-text {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.footer-logo span {
  color: #7fffd4;
}

.footer-links h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7fffd4;
}

.footer-contact p {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.social-links a:hover {
  background-color: #7fffd4;
}

.social-links a i {
  color: #fff;
  font-size: 1.8rem;
}

.social-links a:hover i {
  color: #29323c;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.footer-credits {
  font-size: 1.2rem;
  color: #999;
}

.footer-credits a {
  color: #7fffd4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credits a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  html {
    font-size: 9.5px;
  }

  .companies-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .about-content {
    gap: 3rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 9px;
  }

  .header-container {
    padding: 1.5rem 0;
  }

  nav {
    position: relative;
  }

  .hamburger {
    display: flex;
    width: 40px; /* Explicit width */
    height: 40px; /* Explicit height */
    flex-direction: column;
    justify-content: center; /* Center bars vertically */
    align-items: center; /* Center bars horizontally */
    gap: 5px; /* Add space between bars */
    z-index: 1001; /* Increased z-index to be above the header */
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(127, 255, 212, 0.3);
    box-shadow: 0 0 10px rgba(127, 255, 212, 0.2);
    transition: all 0.3s ease;
  }

  .hamburger:hover {
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(127, 255, 212, 0.4);
    transform: scale(1.05);
  }

  .nav-menu {
    position: fixed;
    top: 0; /* Start from top */
    left: 0; /* Start from left */
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex; /* Use flexbox for centering */
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    background-color: rgba(41, 50, 60, 0.95); /* Slightly less transparent */
    transition:
      opacity 0.4s ease-in-out,
      visibility 0.4s ease-in-out; /* Fade transition */
    padding: 2rem; /* Add some padding */
    z-index: 99;
    margin: 0;
    backdrop-filter: blur(8px); /* Slightly less blur */
    -webkit-backdrop-filter: blur(8px);
    opacity: 0; /* Start hidden */
    visibility: hidden; /* Start hidden */
    overflow-y: auto; /* Allow scrolling if content overflows */
  }

  .nav-menu.active {
    opacity: 1; /* Fade in */
    visibility: visible; /* Make visible */
  }

  .nav-menu li {
    margin: 1rem 0; /* Add vertical margin */
    opacity: 0;
    transform: translateY(30px); /* Start slightly lower */
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }

  /* Staggered animation for list items */
  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s; /* Base delay */
  }

  .nav-menu.active li:nth-child(2) {
    transition-delay: 0.3s; /* Stagger delay */
  }

  .nav-menu.active li:nth-child(3) {
    transition-delay: 0.4s; /* Stagger delay */
  }

  .nav-menu.active li:nth-child(4) {
    transition-delay: 0.5s; /* Stagger delay */
  }

  .nav-menu a {
    display: block;
    padding: 1.5rem 2rem; /* More padding */
    font-size: 2.4rem; /* Larger font size */
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease; /* Smooth color transition */
  }

  .nav-menu a:hover {
    color: #7fffd4; /* Highlight color on hover */
  }

  /* Remove the underline hover effect for a cleaner look */
  .nav-menu a::after {
    content: none;
  }

  .hamburger.active {
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgba(127, 255, 212, 0.5);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    width: 32px;
    background-color: #fff;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 32px;
    background-color: #fff;
  }

  .about-content {
    flex-direction: column;
    gap: 3rem;
  }

  .about-img {
    max-width: 100%;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 12rem 0 6rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.8rem;
  }

  .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.5rem;
  }

  .section {
    padding: 6rem 0;
  }

  .companies-grid,
  .services-grid,
  .contact-info,
  .projects-grid,
  .portfolio-grid {
    gap: 2rem;
  }

  .footer-content {
    gap: 3rem;
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 8.5px;
  }

  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .companies-grid,
  .services-grid,
  .footer-content,
  .contact-info,
  .projects-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .company-card-img {
    height: 180px;
  }

  .social-links {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 8px;
  }

  .container {
    padding: 0 1.5rem;
  }

  .logo h1 {
    font-size: 2.4rem;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .hero p {
    font-size: 1.6rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }

  .section {
    padding: 5rem 0;
  }

  .company-card-content,
  .contact-item,
  .service-item {
    padding: 1.5rem;
  }
}

/* Coming Soon Banner Styles */
.coming-soon-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 50, 60, 0.95);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.coming-soon-banner.show {
  opacity: 1;
  visibility: visible;
}

.coming-soon-banner.hide {
  opacity: 0;
  visibility: hidden;
}

.coming-soon-content {
  background: #ffffff;
  border-radius: 15px;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.coming-soon-banner.show .coming-soon-content {
  transform: scale(1);
}

.coming-soon-icon {
  font-size: 6rem;
  color: #7fffd4;
  margin-bottom: 2rem;
}

.coming-soon-content h3 {
  font-size: 2.8rem;
  color: #29323c;
  margin-bottom: 1rem;
  font-weight: 600;
}

.coming-soon-content p {
  font-size: 1.8rem;
  color: #29323c;
  margin-bottom: 1rem;
  font-weight: 500;
}

.coming-soon-description {
  font-size: 1.6rem !important;
  color: #666 !important;
  margin-bottom: 3rem !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.coming-soon-btn {
  background: linear-gradient(135deg, #7fffd4 0%, #5fe0b5 100%);
  color: #29323c;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.coming-soon-btn:hover {
  background: linear-gradient(135deg, #5fe0b5 0%, #4dd0a7 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(127, 255, 212, 0.3);
}

.coming-soon-btn i {
  font-size: 1.4rem;
}

/* Responsive styles for coming soon banner */
@media screen and (max-width: 768px) {
  .coming-soon-content {
    padding: 3rem 2rem;
    margin: 2rem;
  }

  .coming-soon-icon {
    font-size: 5rem;
  }

  .coming-soon-content h3 {
    font-size: 2.4rem;
  }

  .coming-soon-content p {
    font-size: 1.6rem;
  }

  .coming-soon-description {
    font-size: 1.4rem !important;
  }
}

@media screen and (max-width: 480px) {
  .coming-soon-content {
    padding: 2.5rem 1.5rem;
    margin: 1rem;
  }

  .coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }

  .coming-soon-content h3 {
    font-size: 2rem;
  }

  .coming-soon-btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(41, 50, 60, 0.9);
  z-index: 2000;
  overflow-y: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  font-family: "Montserrat", sans-serif;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 4rem;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  border-top: 5px solid #7fffd4;
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(127, 255, 212, 0.1);
  transform: translateY(-50px) scale(0.98);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(249, 249, 249, 0.3) 100%
  );
}

.modal.show .modal-content {
  transform: translateY(0) scale(1);
}

.modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(127, 255, 212, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 12px 12px 0 0;
  z-index: -1;
}

.modal-content h2 {
  color: #29323c;
  position: relative;
  padding-bottom: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 2.8rem;
  letter-spacing: -0.02em;
}

.modal-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #7fffd4 0%, rgba(127, 255, 212, 0.5) 100%);
  border-radius: 2px;
}

.modal-content p {
  color: #555;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.close-modal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.4rem;
  color: #29323c;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(127, 255, 212, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.close-modal:hover {
  color: #fff;
  background-color: #7fffd4;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 15px rgba(127, 255, 212, 0.4);
}

/* Form Styles */
.quote-form {
  margin-top: 3rem;
  font-family: "Montserrat", sans-serif;
}

.form-group {
  margin-bottom: 2.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #29323c;
  font-weight: 500;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.4rem 1.6rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1.6rem;
  color: #333;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: rgba(249, 249, 249, 0.8);
  font-family: "Montserrat", sans-serif;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #7fffd4;
  box-shadow:
    0 0 0 3px rgba(127, 255, 212, 0.2),
    inset 0 1px 3px rgba(0, 0, 0, 0.02);
  outline: none;
  background-color: #fff;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  opacity: 0.7;
}

.form-group label span {
  color: #7fffd4;
  font-weight: 600;
}

.form-group textarea {
  resize: vertical;
  min-height: 14rem;
  line-height: 1.6;
}

.quote-form .btn {
  margin-top: 2.5rem;
  width: 100%;
  background-color: #29323c;
  color: #fff;
  border-color: #29323c;
  font-weight: 600;
  padding: 1.6rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
}

.quote-form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #7fffd4;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.quote-form .btn:hover {
  color: #29323c;
  border-color: #7fffd4;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(127, 255, 212, 0.4);
}

.quote-form .btn:hover::before {
  width: 100%;
}

/* Form Success Message */
.form-success {
  text-align: center;
  padding: 3rem 0 2rem;
  animation: fadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Montserrat", sans-serif;
}

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

.form-success i {
  font-size: 7rem;
  color: #7fffd4;
  margin-bottom: 2.5rem;
  display: block;
  text-shadow: 0 10px 25px rgba(127, 255, 212, 0.5);
  animation: successIconAnimation 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes successIconAnimation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-success h3 {
  font-size: 3.2rem;
  margin-bottom: 1.8rem;
  color: #29323c;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.form-success h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(127, 255, 212, 0.5) 0%,
    #7fffd4 50%,
    rgba(127, 255, 212, 0.5) 100%
  );
  border-radius: 3px;
}

.form-success p {
  font-size: 1.7rem;
  color: #555;
  margin: 2.5rem auto;
  line-height: 1.8;
  max-width: 90%;
  font-weight: 400;
}

.form-success .btn {
  background-color: #7fffd4;
  color: #29323c;
  border-color: #7fffd4;
  font-weight: 600;
  padding: 1.5rem 3.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(127, 255, 212, 0.3);
  margin-top: 1rem;
  font-family: "Montserrat", sans-serif;
}

.form-success .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #29323c;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.form-success .btn:hover {
  color: #fff;
  border-color: #29323c;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-success .btn:hover::before {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    padding: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .modal-content {
    margin: 15% auto;
    padding: 2rem;
    width: 95%;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 1rem;
    font-size: 1.5rem;
  }
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7fffd4, #40e0d0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.feature-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.feature-card h3 {
  color: #29323c;
  margin-bottom: 1.5rem;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Integration Section */
.integration {
  background-color: #f9f9f9;
}

.integration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.integration-features {
  margin-top: 2rem;
}

.integration-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.integration-feature i {
  color: #7fffd4;
  font-size: 1.5rem;
  margin-right: 1rem;
}

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

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.pricing-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border: 3px solid #7fffd4;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  background: linear-gradient(135deg, #7fffd4, #40e0d0);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.pricing-price {
  margin: 2rem 0;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #29323c;
  display: block;
}

.price-period {
  color: #666;
  font-size: 1.4rem;
}

.pricing-features {
  text-align: left;
  margin: 2rem 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing-feature i {
  color: #7fffd4;
  margin-right: 1rem;
}

/* Contact Section */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  text-align: center;
}

.contact-item {
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.contact-item i {
  font-size: 3rem;
  color: #7fffd4;
  margin-bottom: 1.5rem;
}

.contact-item h3 {
  color: #29323c;
  margin-bottom: 1rem;
}

.contact-item a {
  color: #7fffd4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #40e0d0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .integration-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

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

.hero-secondary {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-guarantee {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(127, 255, 212, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(127, 255, 212, 0.3);
}

.hero-guarantee p {
  margin: 0;
  font-size: 1.6rem;
  color: #7fffd4;
  text-align: center;
}

.hero-guarantee i {
  margin-right: 0.5rem;
}

/* Button Updates */
.btn-primary {
  background-color: #7fffd4;
  color: #29323c;
  border-color: #7fffd4;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1.5rem 3.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(127, 255, 212, 0.3);
}

.btn-primary:hover {
  background-color: #fff;
  color: #29323c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(127, 255, 212, 0.4);
}

.btn-cta {
  background: linear-gradient(135deg, #7fffd4 0%, #40e0d0 100%);
  color: #29323c;
  border: none;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1.5rem 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(127, 255, 212, 0.3);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(127, 255, 212, 0.5);
  background: linear-gradient(135deg, #40e0d0 0%, #7fffd4 100%);
}

/* Pricing Section Updates */
.pricing-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-subtitle {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 2rem;
}

.pricing-guarantee {
  background: linear-gradient(
    135deg,
    rgba(127, 255, 212, 0.1) 0%,
    rgba(64, 224, 208, 0.1) 100%
  );
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid rgba(127, 255, 212, 0.3);
  margin-top: 2rem;
}

.pricing-guarantee p {
  margin: 0;
  font-size: 1.6rem;
  color: #7fffd4;
  font-weight: 600;
}

.pricing-guarantee i {
  margin-right: 0.8rem;
  font-size: 1.8rem;
}

.price-value {
  font-size: 1.4rem;
  color: #7fffd4;
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
}

/* CTA Section Updates */
.cta-subtitle {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature-card {
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(127, 255, 212, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.feature-icon i {
  font-size: 3rem;
  color: #7fffd4;
}

.feature-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #29323c;
}

.feature-card p {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.6;
}

/* Integration Section */
.integration {
  background-color: #f9f9f9;
}

.integration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.integration-features {
  margin-top: 2rem;
}

.integration-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.integration-feature i {
  color: #7fffd4;
  font-size: 1.8rem;
  margin-right: 1rem;
}

.integration-feature span {
  font-size: 1.6rem;
  color: #555;
}

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

.integration-img img {
  max-width: 300px;
  height: auto;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border: 3px solid #7fffd4;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  margin-bottom: 2rem;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #7fffd4;
  color: #29323c;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 2.4rem;
  color: #29323c;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 3rem;
}

.price-amount {
  font-size: 4rem;
  font-weight: 700;
  color: #7fffd4;
  display: block;
}

.price-period {
  font-size: 1.4rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-features {
  margin-bottom: 3rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  justify-content: flex-start;
}

.pricing-feature i {
  color: #7fffd4;
  font-size: 1.6rem;
  margin-right: 1rem;
  width: 20px;
}

.pricing-feature span {
  font-size: 1.5rem;
  color: #555;
}

/* CTA Section */
.cta-section {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem;
  background-color: rgba(127, 255, 212, 0.05);
  border-radius: 10px;
}

.cta-section h3 {
  font-size: 2.4rem;
  color: #29323c;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 2rem;
}
