/* --- Hero Section --- */
.hero {
  padding: 4rem 5%;
  background: var(--bg-alt);
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.hero-heading {
  font-size: 3.5rem;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-mission {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 4px;
  font-weight: bold;
}

.hero-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.hero-img {
  border-radius: 50% 5% 50% 5%;
  box-shadow: 20px 20px 0px var(--primary-light);
}

/* --- About & Uniqueness Common Styles --- */
section {
  padding: 6rem 5%;
}

.uniqueness-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-header,
.services-header,
.uniqueness-header,
.contact-header,
.lenses-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-divider,
.services-divider,
.uniqueness-divider,
.contact-divider,
.lenses-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-light);
  margin: 1rem auto;
}

.about-blocks,
.uniqueness-blocks,
.lenses-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 3rem auto;
}

.about-block,
.uniqueness-block {
  padding: 2rem;
  border: 1px solid #eee;
  transition: var(--transition);
}

.about-block:hover,
.uniqueness-block:hover {
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(65, 0, 64, 0.05);
}
/* =====================
   SERVICES COMPONENT
===================== */
.services {
  /* background: var(--bg-alt); */

  padding: 6rem 5%;
}

.services-container {
  margin: 0 auto;
}

/* main wrapper */
.services-tabs-wrapper {
  display: flex;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(65, 0, 64, 0.08);
  border: 1px solid rgba(65, 0, 64, 0.1);
  min-height: 550px;
}

/* Sidebar Tabs */

/* Action Button */
.book-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
}

/* =====================
   RESPONSIVE SERVICES
===================== */
@media (max-width: 900px) {
  .services-tabs-wrapper {
    flex-direction: column;
  }

  .services-tabs {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .services-tab {
    flex: 0 0 auto;
    width: auto;
    padding: 1rem 1.5rem;
    border-bottom: none;
  }

  .services-tab.active::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 4px;
  }

  .services-panels {
    padding: 2rem;
  }
}

/* =====================
   LENSES / TECH PANELS COMPONENT
   (Vision, Equal Opportunity, Environment)
===================== */
.lenses {
  background: var(--white);
  padding: 0 0;
}

.lens-block {
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.lens-block:hover {
  border-color: var(--primary-light);
  box-shadow: 0 10px 30px rgba(65, 0, 64, 0.08);
}

.lens-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.lens-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(25%);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.lens-block:hover .lens-media img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.lens-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(65, 0, 64, 0) 30%,
    rgba(65, 0, 64, 0.85) 100%
  );
}

.lens-media h3 {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.2rem;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.2;
}

.lens-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lens-kicker {
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 1rem;
}

.lens-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.lens-list li {
  position: relative;
  padding: 0 0 0.9rem 1.4rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-light);
}

.lens-list li:last-child {
  padding-bottom: 0;
}

.lens-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
}

/* Read More CTA reuses .book-btn as-is — no new button styles needed */
.lens-body .book-btn {
  align-self: flex-start;
}

@media (max-width: 480px) {
  .lens-body {
    padding: 1.5rem;
  }

  .lens-media h3 {
    font-size: 1.2rem;
  }
}

/* =====================
   DEFINITION SECTION
===================== */
.definition {
  width: 100%;
  padding: 10px 1.5rem;
  display: flex;
  justify-content: center;
}

.definition-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.definition-question {
  text-align: center;
  background-color: #a06a9fcb;
  border-radius: 12px;
  padding: 20px 28px;
}

.definition-question h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text-on-dark);
  margin: 0;
}

.definition-card {
  width: 100%;
  border-radius: 16px;
  padding: 50px 0px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 4px solid var(--color-primary-light);
}

.definition-top {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.definition-word {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-primary-pale);
  font-style: italic;
  margin: 0;
  letter-spacing: 1px;
}

.definition-phonetic {
  font-size: 1.1rem;
  color: var(--color-primary-faded);
  margin: 0;
  font-family: Georgia, serif;
}

.definition-pos {
  font-size: 0.9rem;
  color: var(--color-primary-faded);
  font-style: italic;
  background: rgba(122, 46, 121, 0.3);
  border: 1px solid var(--color-primary-light);
  padding: 3px 12px;
  border-radius: 20px;
}

.definition-divider {
  width: 100%;
  height: 1px;
  background: var(--color-primary-light);
  opacity: 0.5;
}

.definition-meanings {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.definition-entry {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.definition-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-faded);
  min-width: 20px;
  margin-top: 2px;
}

.definition-entry p {
  font-size: 1.05rem;
  color: var(--color-text-on-dark);
  line-height: 1.75;
  margin: 0;
  opacity: 0.9;
}

.definition-entry strong {
  color: var(--color-primary-pale);
  font-weight: 600;
}

.definition-quote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px 24px;
}

.definition-quote-mark {
  font-size: 2.4rem;
  color: var(--color-primary-light);
  line-height: 1;
  font-family: Georgia, serif;
  flex-shrink: 0;
}

.definition-quote p {
  font-size: 1rem;
  color: var(--color-primary-pale);
  font-style: italic;
  line-height: 1.7;
  margin: 6px 0 0;
  opacity: 0.95;
}

.definition-synonyms {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.synonyms-label {
  font-size: 0.9rem;
  color: var(--color-primary-faded);
  font-style: italic;
}

.synonym-tag {
  background: rgba(122, 46, 121, 0.3);
  border: 1px solid var(--color-primary-light);
  color: var(--color-primary-pale);
  font-size: 0.88rem;
  padding: 5px 16px;
  border-radius: 20px;
  transition: background 0.2s ease;
}

.synonym-tag:hover {
  background: rgba(122, 46, 121, 0.55);
}

/* =====================
   DEFINITION RESPONSIVE
===================== */
@media (max-width: 768px) {
  .definition {
    padding: 40px 1.5rem;
  }

  .definition-card {
    padding: 36px 28px;
  }

  .definition-question h2 {
    font-size: 1.6rem;
  }

  .definition-word {
    font-size: 2rem;
  }

  .definition-top {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .definition-card {
    padding: 28px 20px;
    border-left-width: 3px;
  }

  .definition-word {
    font-size: 1.7rem;
  }

  .definition-question h2 {
    font-size: 1.4rem;
  }
}

/* =====================
   FULL WIDTH IMAGE SECTION
===================== */
.fullwidth-image {
  width: 100%;
  line-height: 0;
}

.fullwidth-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
