@import url("https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900&display=swap");

:root {
  --font-size-h1: 2.8rem;
  --font-size-h2: 2.4rem;
  --font-size-h3: 2rem;
  --font-paragraph: 1.6rem;
  --font-size-caption: 0.875rem;

  --spacing-xs: 0.4rem;
  --spacing-sm: 0.8rem;
  --spacing-md: 1.6rem;
  --spacing-lg: 2.4rem;
  --spacing-xl: 3.2rem;

  --white-default: #fff2f1;
  --grey-1: #969696;
  --error-1: #e67e22;
  --error-2: #e65a10;

  --grey-text-color: #777;

  --primary-color: rgb(136, 176, 113);
  --secondary-color: rgb(34, 75, 34);
  --tertiary-color: #55c57a;

  --plan-action-color-1: rgba(126, 213, 111, 0.8);
  --plan-action-color-2: rgba(40, 180, 133, 0.8);

  --box-shadow-1: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.4);
  --box-shadow-2: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.4);

  --transition-default: all 0.2;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  color: var(--grey-text-color);
  font-weight: 400;
  line-height: 1.7;
}

::placeholder {
  color: var(--grey-1);
  opacity: 1;
  font-family: "Lato", sans-serif;
}

section {
  padding: 4rem 0;
}

.title-1 {
  font-size: var(--font-size-h1);
  text-transform: uppercase;
  text-align: center;
}

.title-2 {
  font-size: var(--font-size-h2);
  text-transform: uppercase;
  text-align: center;
}

.title-3 {
  font-size: var(--font-size-h3);
  text-transform: uppercase;
  text-align: center;
}

.paragraph {
  font-size: var(--font-paragraph);
  text-align: justify;
}

.small {
  font-size: var(--font-size-caption);
}

.icon-xx-large {
  font-size: 8rem;
  color: var(--tertiary-color);
}

.heading {
  text-align: center;
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background-image: linear-gradient(45deg,
      var(--primary-color),
      var(--secondary-color));
  margin-bottom: 4rem;
}

.heading::after {
  content: "";
  display: block;
  height: 0.3rem;
  width: 5rem;
  margin: 1.5rem auto;
  background-color: var(--secondary-color);
}

.highlight {
  color: var(--secondary-color);
  font-weight: bold;
  display: inline-block;
}

.form-input {
  position: relative;
  height: 6rem;
  width: 100%;
  margin-top: 2.5rem;
}

.form-input--flex {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
}

.form-input input[type="text"],
.form-input input[type="email"],
.form-input textarea {
  font-size: 1.6rem;
  color: var(--grey-1);
  font-weight: bold;
  border: none;
  width: inherit;
  height: inherit;
  padding: 2rem;
  transition: var(--transition-default);
  caret-color: var(--grey-1);
  box-shadow: var(--box-shadow-1);
}

.form-input textarea {
  overflow-y: auto;
}

.form-input input[type="text"]:focus,
.form-input input[type="email"]:focus,
.form-input input[type="text"]:not(:placeholder-shown),
.form-input input[type="email"]:not(:placeholder-shown),
.form-input textarea:focus,
.form-input textarea:not(:placeholder-shown) {
  outline: none;
  box-shadow: var(--box-shadow-2);
}

.form-input input[type="text"]:invalid:not(:placeholder-shown),
.form-input input[type="email"]:invalid:not(:placeholder-shown),
.form-input textarea:invalid:not(:placeholder-shown) {
  border-bottom: 0.2rem solid var(--error-1);
}

.form-input input[type="text"]:valid:not(:placeholder-shown),
.form-input input[type="email"]:valid:not(:placeholder-shown),
.form-input textarea:valid:not(:placeholder-shown) {
  border-bottom: 0.2rem solid var(--secondary-color);
}

.btn {
  font-size: 1.6rem;
  width: 100%;
  color: var(--white-default);
  border: none;
  box-shadow: var(--box-shadow-1);
  background-color: var(--secondary-color);
  text-transform: uppercase;
}

.btn:active {
  box-shadow: var(--box-shadow-2);
}

.btn--large {
  height: 5rem;
}

footer {
  background-color: var(--secondary-color);
  color: var(--white-default);
  text-align: center;
  padding: 3rem;
}

footer a {
  color: var(--white-default);
  text-decoration: none;
}

footer ul {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.pulse-button {
  background-color: var(--tertiary-color);
  color: white;
  padding: 2rem 4rem;
  border: none;
  border-radius: 3rem;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: transform 0.2s ease-in-out;
  animation: pulse 1.5s infinite;
}

.pulse-icon {
  background-color: var(--tertiary-color);
  color: white;
  padding: 2rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: transform 0.2s ease-in-out;
  animation: pulse 1.5s infinite;
}

.pulse-button:hover {
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px 10px rgba(255, 71, 87, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
  }
}

.pulse-button:hover {
  transform: scale(1.05);
}

.plan-card {
  background: white;
  border-radius: 3rem;
  padding: 4rem;
  width: 30rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.plan-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.plan-card:hover {
  transform: translateY(-10px);
}

.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-header h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 5rem;
  font-weight: bold;
  color: #2d3436;
}

.price span {
  font-size: 1.6rem;
  color: #666;
}

.price-details {
  display: block;
  margin-top: -0.5rem;
  font-size: 1.6rem;
  color: #666;
}

.features {
  list-style: none;
  padding: 1rem 0;
  margin: 1rem 0;
}

.features li {
  padding: 0.8rem 0;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: #555;
  font-size: 1.4rem;
}

.check {
  color: var(--secondary-color);
}

.uncheck {
  color: red;
}

.plan-btn {
  display: block;
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding: 1.6rem 2rem;
  font-size: 1.6rem;
  border: none;
  border-radius: 8px;
  background: var(--secondary-color);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-btn:hover {
  background: var(--tertiary-color);
}

/* Popular Plan Styling */
.basic {
  border-top: 0.5rem solid #64B5F6
}

.basic .plan-btn {
  background: #64B5F6
}

.basic .plan-btn:hover {
  background: #64B5F6
}

/* Premium Plan Styling */
.premium {
  border-top: 0.5rem solid #FFD54F;
}

.premium .plan-btn {
  background: #FFD54F;
}

.premium .plan-btn:hover {
  background: #FFD54F;
}

/* Black Plan Styling */

.black {
  border-top: 0.5rem solid #212121
}

.black .plan-btn {
  background: #212121;
  color: white;
}

.black .plan-btn:hover {
  background: #212121;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.carousel-btn {
  display: none;
}


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

.carousel-dots {
  text-align: center;
  padding: 1rem 0;
}

.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #cde8d6;
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #2a5d42;
  transform: scale(1.2);
}

#testimonials {
  padding: 5rem 0;
  background: #f9fbf8;
}

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


.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(42, 93, 66, 0.08);
  border: 2px solid #e9f5ec;
  font-size: 2rem;
  min-width: 100%;
  padding: 1.5rem;
  margin: 0 0.5rem;
  transition: transform 0.3s ease;
}

.testimonial-content {
  position: relative;
  margin-left: 1rem;
  margin-bottom: 1.5rem;
}

.quote-icon {
  font-size: 3rem;
  color: var(--tertiary-color);
  opacity: 0.7;
  position: absolute;
  top: -10px;
  left: -10px;
}

.testimonial-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.user-info {
  display: flex;
  align-items: center;
}

.user-img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
  object-position: center;
  border: 2px solid #cde8d6;
}

.user-details h4 {
  color: var(--tertiary-color);
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.user-details p {
  color: var(--primary-color);
  font-size: 1.6rem;
}

.software-container p {
  font-size: 2.4rem;
}

.consultation-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  background: #f9fbf8;
  padding: 6rem;
  border-radius: 2rem;
  gap: 4rem;
}

.consultation-how {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.consultation-how h2 {
  margin-bottom: 2rem;
  color: var(--secondary-color);
  font-size: 2.4rem;
  font-weight: 600;
}

.consultation-how .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.consultation-how .step {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  cursor: pointer;
}

.consultation-how .step:hover {
  transform: scale(1.05);
}

.consultation-how .step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 3.8rem;
  width: 0.2rem;
  height: 4rem;
  background: var(--primary-color);
  border-radius: 2rem 0 0 2rem;
  transition: width 0.3s ease;
}

.consultation-how .step:hover::after {
  transform: scale(0.5);
}

.step-division {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
}

.step-division span {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
}

.step-division h3 {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 1.6rem;
}

.consultation-how ul {
  margin-left: 1.6rem;
  color: var(--grey-text-color);
  font-size: 1.4rem;
  list-style-type: disc;
  list-style-position: inside;
  line-height: 2.4rem;
}

.accordion-item {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  padding: 1.5rem 2rem;
  background-color: var(--tertiary-color);
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: #45a049;
}

.accordion-header::after {
  content: '+';
  font-size: 2.4rem;
  transition: transform 0.3s;
}

.accordion-header.active::after {
  content: '-';
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content p {
  padding: 2rem 2rem 6rem 2rem;
  line-height: 1.6;
  color: var(--grey-text-color);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 var(--tertiary-color);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px 10px rgba(255, 71, 87, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
  }
}

.map {
  width: 100%; 
  height: 548px;
}