/* ===============================
   ABOUT PAGE – SCALE ERA
=============================== */

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* prevents sideways movement */
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background: #fff;
}

/* HERO */
.about-hero {
  height: 70vh;
  background: url("images/about-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content {
  background: rgba(255,255,255,0.9);
  padding: 50px 70px;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.1rem;
  color: #555;
}

@media (max-width: 768px) {
  .about-hero {
    height: 60vh;
    padding: 20px;
  }

  .about-hero-content {
    padding: 30px 25px;
    width: 100%;
    max-width: 100%;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }
}


/* INTRO & EXPERIENCE */
.about-intro,
.about-experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 100px 8vw;
  align-items: center;
}

.about-intro img,
.about-experience img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.about-intro h2,
.about-experience h2,
.about-philosophy h2,
.about-team h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.about-intro p,
.about-experience p,
.about-philosophy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 900px) {
  .about-intro,
  .about-experience {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 6vw;
  }

  .about-intro img,
  .about-experience img {
    max-height: 380px;
  }

  .about-intro h2,
  .about-experience h2 {
    font-size: 2rem;
  }

  .about-intro p,
  .about-experience p {
    font-size: 1rem;
  }
}


/* ===============================
   PHILOSOPHY SECTION
=============================== */

.about-philosophy {
  padding: 110px 8vw;
  background: #ffffff;
}

.philosophy-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-text h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.philosophy-text .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: #0A6F63;
  margin-bottom: 25px;
}

.philosophy-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}

.philosophy-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 900px) {
  .philosophy-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .philosophy-image img {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .about-philosophy {
    padding: 80px 6vw;
  }

  .philosophy-text h2 {
    font-size: 2.1rem;
  }

  .philosophy-text .lead {
    font-size: 1.05rem;
  }

  .philosophy-image img {
    height: 360px;
  }
}

/* TEAM */
.about-team {
  padding: 100px 8vw;
}

.team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.team-header p {
  color: #666;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-member h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.team-member span {
  font-size: 0.9rem;
  color: #0A6F63;
  font-weight: 600;
}

@media (max-width: 600px) {
  .team-grid {
    gap: 35px;
  }

  .team-member img {
    width: 130px;
    height: 130px;
  }

  .team-member h3 {
    font-size: 1rem;
  }

  .team-member span {
    font-size: 0.85rem;
  }
}


/* CTA */
.about-cta {
  background: #0A6F63;
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.about-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  background: #fff;
  color: #0A6F63;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .about-cta {
    padding: 70px 20px;
  }

  .about-cta h2 {
    font-size: 1.9rem;
  }

  .about-btn {
    padding: 13px 30px;
    font-size: 0.95rem;
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .about-intro,
  .about-experience {
    grid-template-columns: 1fr;
  }

  .about-hero-content {
    padding: 40px;
  }
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  width: 100%;
  min-height: 100vh; /* fills full screen */
  background-image: url('../images/Lets Talk Bg 2.jpeg');
  background-position: center;
  background-size: cover; /* ensures the bg fully covers */
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional: parallax effect */
  
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

/* CONTACT CARD */
.contact-wrap {
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  width: 95%;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left h2 {
  font-size: 2.2rem;
  color: #0A6F63;
  margin-bottom: 18px;
  font-weight: 700;
  font-family: 'Le Jour Serif', serif;
}

.contact-left p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}

.contact-item i {
  margin-right: 12px;
  font-size: 20px;
  color: #0A6F63;
  flex-shrink: 0;
}

/* SOCIAL ICONS IN LEFT PANEL */
.contact-socials {
  margin-top: 30px;
  display: flex;
  flex-direction: column; /* stacked vertically */
  gap: 12px;
}

.contact-socials .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0A6F63;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s, transform 0.3s;
}

.contact-socials .social-icon i {
  font-size: 20px;
}

.contact-socials .social-icon:hover {
  color: #08806d;
  transform: translateX(4px);
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.email-instructions {
  max-width: 600px;
  text-align: left;
  color: #444;
  margin-bottom: 28px;
}

.email-instructions p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.email-instructions ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.email-instructions li {
  font-size: 0.95rem;
  margin: 6px 0;
  position: relative;
  padding-left: 20px;
}

.email-instructions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0A6F63;
  font-weight: bold;
}

/* BUTTON */
.email-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  background-color: #0A6F63;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.email-btn:hover {
  background-color: #0e8b7c;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .contact-wrap {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    padding: 40px 30px;
  }

  .email-instructions {
    text-align: center;
  }

  .email-btn {
    margin-top: 25px;
  }
}

@media (max-width: 600px) {
  .contact-left h2 {
    font-size: 1.8rem;
  }

  .contact-left p,
  .email-instructions p {
    font-size: 0.95rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .email-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}


/* =========================================================
   FOOTER
========================================================= */
footer {
    background: #0A6F63;
    color: #fff;
    text-align: center;
    padding: 40px 10%;
    margin-top: -1px;
}

footer .socials a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.4rem;
    transition: 0.3s;
}

footer .socials a:hover {
    color: #3BAA9A;
}

