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

:root {
  --col-1: #41431b;
  --col-2: #ffffff;
  --col-3: #b74230;
  --col-4: #000000;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

section,
.section {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  scroll-margin-top: 100px;
}

.container {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

/* Button */
.btn {
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  letter-spacing: 1px;
  font-weight: 600;
  /* box-shadow: 3px 3px 1px var(--col-4); */
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: max-content;
  justify-content: center;
}

.btn:hover {
  box-shadow: unset;
}

.btn-transparent {
  border: 2px solid var(--col-1);
  color: var(--col-1);
}

.btn-transparent:hover {
  background-color: var(--col-3);
  color: var(--col-2);
  border-color: var(--col-3);
}

.btn-pink {
  background-color: var(--col-3);
  color: var(--col-2);
  border: 2px solid var(--col-3);
}

.btn-pink:hover {
  background-color: var(--col-1);
  border-color: var(--col-1);
}

.btn-green {
  border: 2px solid var(--col-1);
  background-color: var(--col-1);
  color: var(--col-2);
}

.btn-green:hover {
  background-color: var(--col-3);
  border-color: var(--col-3);
}

/* Typography */
p,
span,
button,
a {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Radio Canada Big", sans-serif;
  font-weight: 500;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.sub-title {
  background-color: var(--col-3);
  color: var(--col-2);
  padding: 0.2rem 1rem;
  display: flex;
  width: max-content;
  border-radius: 4px;
  box-shadow: 0 0 1px var(--col-4);
}

.head-green {
  color: var(--col-1);
}

.head-pink {
  color: var(--col-3);
}

.section-title {
  font-size: 2.5rem;
}
.section-height {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

/* HEADER */

#sec-header {
  box-shadow: 0 0 2px var(--col-4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: var(--col-2);
}

.sec-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  position: relative;
  /* background-color: green; */
}

.shc-col-1 span {
  font-size: 2rem;
  font-family: "Radio Canada Big", sans-serif;
  background-color: var(--col-1);
  color: var(--col-2);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.shc-col-2 ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.shc-col-2 ul li a {
  color: black;
}

.burger-menu {
  display: none;
  cursor: pointer;
}

/* Hero */
.sec-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 100px);
  align-items: center;
  gap: 5rem;
  margin-top: 100px;
}

.sheroc-col-1 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-heading {
  font-size: 3.5rem;
  line-height: 1.2;
}

.sheroc-col-1 p {
  padding: 0 1rem;
  border-left: 2px solid var(--col-1);
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sheroc-col-2 {
  /* background-color: red; */
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}

.hero-image-wr {
  /* padding-right: 2rem;
  padding-bottom: 2rem; */
  /* box-shadow: 4px 4px 2px var(--col-1); */
  border-bottom-right-radius: 4px;
  /* background-color: var(--col-1); */
}

.hero-image-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hero-image-addon > div {
  font-size: 1rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 0 1px var(--col-4);
}

.hero-image-addon-1 {
  border: 1px solid var(--col-4);
  position: relative;
  padding-left: 1.1rem !important;
}

.hero-image-addon-1::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.4rem;
  width: 8px;
  height: 8px;
  background-color: var(--col-3);
  border-radius: 50%;
}

.hero-image-addon-2 {
  display: flex;
  align-items: center;
  background-color: var(--col-1);
  color: var(--col-2);
  border: 1px solid var(--col-1);
}

.hero-tech-stack {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 220px;
}

.tech-badge {
  font-size: 12px;
  padding: 6px 10px;

  background: var(--col-3);
  color: white;

  border-radius: 4px;
  font-weight: 500;

  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.tech-badge:nth-child(even) {
  background: var(--col-1);
}

.sheroc-col-2 img {
  border: 2px solid var(--col-1);
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  display: flex;
  background-color: var(--col-2);
  position: relative;
  width: 100%;
  object-fit: cover;
}

/* About  */
#sec-about {
  background-color: var(--col-1);
  color: var(--col-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23000000' fill-opacity='0.4' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

.sec-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.sabc-col-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--col-2);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.8;
  letter-spacing: 1px;
}

.about-highlight p {
  font-size: 1rem;
  font-weight: 500;
  max-width: 400px;
  opacity: 0.9;
}

.sabc-col-2 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: end;
  text-align: end;
}

.sabc-col-2 p {
  font-size: 1.5rem;
  border-bottom: 2px dashed var(--col-2);
  padding-bottom: 1rem;
}

/* Projects */
.sec-project-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sproc-row-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sproc-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card-project-wr {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  box-shadow: 0 0 2px var(--col-4);
  border-radius: 4px;
}

.card-project {
  height: 350px;
  overflow: hidden;
  position: relative;
}

.card-project img {
  width: 100%;
  display: block;
  transition: 8s;
  border-radius: 4px;
}

.card-project:hover img {
  transform: translateY(calc(-100% + 350px));
}

.cp-desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cp-desc span {
  padding-left: 1rem;
  border-left: 1px solid var(--col-1);
}

#sec-testimonial {
  text-align: center;
  padding-bottom: 7rem;
}

.stest-row-1 {
  margin-bottom: 3rem;
}

.stest-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card-testimonial {
  background: #fff;
  padding: 28px;
  border-radius: 4px;
  text-align: left;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.card-testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.card-testimonial p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 22px;
}

/* CLIENT INFO */

.client-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: flex;
  flex-shrink: 0;
}

.client-meta strong {
  display: block;
  font-size: 15px;
  color: #111;
}

.client-meta span {
  font-size: 13px;
  color: #888;
}

.testimonial-rating {
  margin-top: 50px;
  color: #666;
}

/* =======================
   PRICING SECTION
======================= */

#sec-pricing {
  background: #f8f8f6;
  position: relative;
}

.sec-pricing-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sprice-row-1 {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: space-between;
}

/* container */

.sprice-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* =======================
   CARD
======================= */

.card-pricing {
  background: white;

  padding: 3rem 2.5rem;

  border-radius: 4px;

  display: flex;
  flex-direction: column;

  gap: 2rem;

  position: relative;

  border: 1px solid rgba(0, 0, 0, 0.05);

  transition: all 0.35s ease;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}

/* =======================
   FEATURED CARD
======================= */

/* .card-pricing-wr.featured {
  transform: scale(1.08);
} */

.card-pricing-wr.featured .card-pricing {
  border: 2px solid var(--col-1);

  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.15);
}

/* popular badge */

.card-pricing-wr.featured .card-pricing::before {
  content: "Most Popular";

  position: absolute;

  top: -14px;
  left: 50%;

  transform: translateX(-50%);

  background: var(--col-3);

  color: white;

  font-size: 0.7rem;

  padding: 6px 14px;

  border-radius: 20px;

  letter-spacing: 0.5px;
}

/* =======================
   HEADER
======================= */

.price-header h3 {
  font-size: 1.5rem;
}

.price {
  font-size: 2rem;

  font-weight: 700;

  color: var(--col-3);
}

.price-header span {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* =======================
   FEATURES
======================= */

.price-features {
  list-style: none;

  padding: 0;

  display: flex;

  flex-direction: column;

  gap: 0.8rem;
}

.price-features li {
  position: relative;

  padding-left: 1.6rem;

  font-size: 0.95rem;
}

.price-features li::before {
  content: "";

  width: 7px;
  height: 7px;

  background: var(--col-3);

  border-radius: 50%;

  position: absolute;

  left: 0;
  top: 7px;
}

/* =========================
   CONTACT SECTION
========================= */

#sec-contact {
  background: var(--col-2);
}

.sec-contact-content {
  width: 800px;
  max-width: 100%;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-header p {
  max-width: 550px;
  opacity: 0.8;
}

.contact-wrapper {
  background-color: #f5f5f5;
  padding: 3rem 2.5rem;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  transition: 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--col-3);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(183, 66, 48, 0.1);
}

textarea {
  resize: none;
}

#form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  display: none;
}

.btn-contact {
  border: none;
  cursor: pointer;
  padding: 1rem 2rem;
  width: 100%;
  font-size: 1rem;
}

/* Footer */

#sec-footer {
  background: var(--col-1);
  color: var(--col-2);
  padding-top: 9rem;
  padding-bottom: 4.5rem;
}

/* GRID */

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* BRAND */

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

.footer-brand p {
  opacity: 0.85;
  line-height: 1.6;
  max-width: 350px;
}

/* AVAILABILITY */

.footer-availability {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
}

/* TITLES */

.footer-nav h4,
.footer-contact h4 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

/* LIST */

.footer-nav ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: var(--col-2);
  opacity: 0.8;
  text-decoration: none;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--col-3);
}

/* CONTACT */

.footer-contact li {
  opacity: 0.85;
  font-size: 0.9rem;
}

/* CTA */

.footer-cta {
  margin-top: 2rem;
  border: 2px solid var(--col-2);
  color: var(--col-2);
}

.footer-cta:hover {
  background-color: var(--col-3);
  border-color: var(--col-3);
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 992px) {
  #btn-header {
    display: none;
  }

  .shc-col-2 {
    position: absolute;
    background-color: var(--col-2);
    right: 0;
    top: 116px;
    z-index: 10;
    box-shadow: 0 0 4px var(--col-4);
    border-radius: 4px;
    display: none;
  }

  .shc-col-2.active {
    display: block;
  }

  .shc-col-2 ul {
    flex-direction: column;
    width: 300px;
    max-width: 100%;
    gap: 1rem;
    padding: 2rem;
  }

  .shc-col-2 ul li a {
    color: var(--col-1);
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .burger-menu span {
    width: 2rem;
    height: 4px;
    background-color: var(--col-3);
    border-radius: 4px;
    transition: 0.5s;
    position: relative;
  }

  .burger-menu.clicked span:nth-child(2) {
    transform: translateX(200%);
  }

  .burger-menu.clicked span:nth-child(1) {
    width: 2rem;
    transform: rotate(-40deg);
    top: 9px;
  }
  .burger-menu.clicked span:nth-child(3) {
    width: 2rem;
    transform: rotate(40deg);
    bottom: 9px;
  }

  .burger-menu span:first-child {
    width: 1.4rem;
  }

  .burger-menu span:last-child {
    width: 1.7rem;
  }

  .sec-hero-content {
    height: auto;
    grid-template-columns: 1fr;
    padding-top: 4.5rem;
    padding-bottom: 9rem;
  }

  .sec-about-content {
    grid-template-columns: 1fr;
  }

  .sabc-col-2 {
    align-items: start;
    text-align: start;
  }

  .sproc-row-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .stest-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .sprice-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-pricing-wr.featured {
    transform: scale(1);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sprice-row-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .sheroc-col-2 {
    justify-content: end;
  }

  .stest-row-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 425px) {
  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-tech-stack {
    display: none;
  }

  .footer-content {
    grid-template-columns: repeat(1, 1fr);
  }

  .sproc-row-1 {
    flex-direction: column;
    align-items: start;
  }

  .sprice-row-1 {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

  .cp-desc {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}

@media (max-width: 375px) {
  .hero-btn {
    flex-direction: column;
    align-items: start;
}
}
