.hero{
  width: 100%;
  min-height: 70vh;
  background:
    linear-gradient(to bottom, #fdfdfda0, var(--bg)), 
    url("/images/hero-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  text-align: center;
}


.hero-inner{
  max-width: 650px;
}

.hero h1{
  font-size: 3rem;
  color: var(--fg);
  margin-bottom: 1rem;
}

.hero p{
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-btn{
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 200ms ease;
}

.hero-btn:hover{
  transform: translateY(-3px);
  opacity: 0.9;
}

@media (max-width: 550px){
  .hero h1{
    font-size: 2.4rem;
  }
  .hero p{
    font-size: 1.1rem;
  }
}

.about-me{
  width: 100%;
  padding: 4rem 1rem;
  background: var(--bg);
  display: flex;
  justify-content: center;
}

.about-inner{
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  gap: 2rem;
  align-items: top;
}


.profile-pic img{
  width: 200px;
  height: 250px;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: 0 8px 20px #0002;
}

img.accred{
  width: 100%;
}

.profile-info{
  flex: 1;
}

.profile-info h2{
  font-size: 2rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.profile-info .credentials,
.profile-info .pronouns{
  color: var(--fg);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.profile-info .bio{
  color: var(--fg);
  line-height: 1.6;
  margin-top: 1rem;
}

@media (max-width: 768px){
  .about-inner{
    flex-direction: column;
    text-align: center;
  }

  .profile-pic img{
    max-width: 100%;
    width: 180px;
    height: 200px;
  }
  .profile-pic img.accred{
    width: 100%;
  }
}

.parallax-sec {
  position: relative;
  height: 60vh;
  height: 60lvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: 5rem 0;
}

.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('/images/parallax-desktop.webp') center / cover no-repeat;
  filter: brightness(0.5);
  z-index: -1;
}

.parallax-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1.5rem;
}

.parallax-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--bg);
  text-shadow: 0 0 10px var(--fg);
}

.parallax-content a {
  font-size: 1.3rem;
  opacity: 0.9;
  box-shadow: 0 0 8px #fff3, inset -1px -1px 5px #555;
}

@media (max-width: 700px) {
   .parallax-bg{
    background-image: url('/images/parallax-mobile.webp');
    filter: brightness(0.7);
  }
}
.consult-sec{
  width: 100%;
  padding: 1rem 1rem 2rem;
  background: var(--bg);
  display: flex;
  justify-content: center;
  position: relative;
}

.consult-inner{
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  border-radius: 2rem;
  background: linear-gradient(to bottom right, #ffffffdd, #fff9);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px #0003;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.consult-inner:hover{
  transform: translateY(-10px);
}

.consult-text{
  flex: 1;
}

.consult-text h2{
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--fg);
  margin-bottom: 1rem;
  background: linear-gradient(to left, #11910e, var(--accent-hover));
  background-clip: text;
  -webkit-background-clip: text;
  width: fit-content;
  -webkit-text-fill-color: transparent;
}

.consult-text p{
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--fg);
}


@media (max-width: 800px){
  .consult-inner{
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 2rem;
  }
  .consult-text h2{
  margin: 0 auto;
  }
}


.how-i-work{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.work-row{
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.work-row.reverse{
  flex-direction: row-reverse;
}

.work-text{
  flex: 1;
  min-width: 280px;
}

.work-text h2{
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: #222;
}

.work-text p{
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

.work-text ul{
  list-style: disc inside;
  margin-top: 0.5rem;
  color: #444;
}

.work-text li{
  margin-bottom: 0.5rem;
}

.work-visual{
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-visual img{
  max-width: 650px;
  max-width: 100%;
  border-radius: 1.5rem;
  transition: transform 0.3s ease;
}

.work-visual img:hover{
  transform: scale(1.05);
}

@media(max-width: 800px){
  .work-row{
    flex-direction: column;
    text-align: center;
  }
  .work-row.reverse{
    flex-direction: column;
  }
  .work-visual img{max-width: 50%;}
}

.testimonials{
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonials h2{
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
}

.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card{
  background: linear-gradient(145deg, #ffffffee, #f9f9f9cc);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 8px 20px #0002, inset 0 0 5px #fff2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-icon{
  height: 1rem;
}

.testimonial-card .quote-icon::before{
  content: "“";
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.testimonial-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 15px 30px #0003, inset 0 0 8px #fff3;
}

.testimonial-card p{
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.6;
  color: #333;
}

.testimonial-card span{
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  text-align: right;
}

.testimonials .primary-btn {
  width: fit-content;
  margin: 1rem auto;
}

.services h2{color: var(--accent);font-size: 2.5rem;font-family: "Elms Sans", sans-serif;margin-bottom: 1rem;}
.services{
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.services{margin-bottom: 5rem;margin-top: 2rem;}

.row{
    display: flex;
    padding: 1rem;
    border-bottom: 1px solid var(--fg);
    align-items: center;
    width: 100%;
    gap: 0.5rem;
}

.bordertop{
    border-top: 1px solid var(--fg);
}

.row .icon{
    padding: 0.5rem;
}