/* ==========================================================
   ROOTMAN — about.css
   Page-specific styles for about.html
   ========================================================== */

/* ----------------------------------------------------------
   Safety layer for shared nav on this page
   ---------------------------------------------------------- */
.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }
}

/* ----------------------------------------------------------
   Page Hero
   ---------------------------------------------------------- */
.page-hero {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.page-hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.page-hero-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 760px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 540px;
  margin: 0;
}

/* ----------------------------------------------------------
   Our Story
   ---------------------------------------------------------- */
.about-story {
  padding: 96px 0 80px;
  background: var(--white);
}

.story-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.story-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 28px;
}

.story-title em {
  font-style: italic;
  color: var(--gold);
}

.story-body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 22px;
  max-width: 95%;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 42px;
}

.highlight-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  border-left: 3px solid var(--gold);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}

.highlight-card:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(11,34,64,0.2);
}

.highlight-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 7px;
}

.highlight-card-desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

/* ----------------------------------------------------------
   Founder
   ---------------------------------------------------------- */
.about-founder {
  padding: 80px 0;
  background: var(--off-white);
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: center;
}

.founder-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-avatar-wrap {
  margin-bottom: 24px;
}

.founder-avatar {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201,168,76,0.1);
  margin: 0 auto;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.founder-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.founder-credentials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.credential-badge {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background var(--transition-mid), color var(--transition-mid);
}

.credential-badge:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.founder-bio {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 18px;
}

/* ----------------------------------------------------------
   Mission & Vision
   ---------------------------------------------------------- */
.about-mv {
  padding: 80px 0;
  background: var(--white);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mv-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11,34,64,0.25);
}

.mv-card-icon {
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.mv-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.mv-card-desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* ----------------------------------------------------------
   Testimonials
   ---------------------------------------------------------- */
.about-testimonials {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.about-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.about-testimonials-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.about-title-white {
  color: var(--white);
}

.about-title-white em {
  color: var(--gold);
}

.about-desc-white {
  color: rgba(255,255,255,0.5);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: background var(--transition-mid), border-color var(--transition-mid), transform var(--transition-mid);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: rgba(201,168,76,0.2);
  line-height: 0.8;
  margin-bottom: 12px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 18px;
}

.testimonial-author {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}

/* ----------------------------------------------------------
   Review Form
   ---------------------------------------------------------- */
.about-review {
  padding: 80px 0;
  background: var(--off-white);
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.review-form-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border-top: 3px solid var(--gold);
}

.review-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.review-form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.review-form-group input,
.review-form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  outline: none;
}

.review-form-group input::placeholder,
.review-form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.review-form-group input:focus,
.review-form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.review-form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.star-selector {
  display: flex;
  gap: 6px;
}

.star-selector .star {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: rgba(255,255,255,0.2);
  transition: color var(--transition-fast);
  padding: 2px;
  line-height: 1;
}

.star-selector .star.active {
  color: var(--gold);
}

.popia-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.6 !important;
  font-weight: normal !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin: 0;
}

.popia-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border: none;
  background: none;
  padding: 0;
}

.popia-label span {
  flex: 1;
}

.popia-label a {
  color: var(--gold);
  text-decoration: underline;
}

.review-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background var(--transition-mid), transform var(--transition-mid), box-shadow var(--transition-mid);
  margin-top: 8px;
}

.review-submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

.review-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.review-success {
  text-align: center;
  padding: 32px 16px;
}

.review-success[hidden] {
  display: none;
}

.review-success-icon {
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.review-success h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 26px;
  margin-bottom: 10px;
}

.review-success p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
}

/* ----------------------------------------------------------
   Professional Alignment
   ---------------------------------------------------------- */
.about-pro {
  padding: 72px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.about-pro::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.about-pro-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.about-pro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.about-pro-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.pro-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pro-badge {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: background var(--transition-mid), color var(--transition-mid), transform var(--transition-mid);
}

.pro-badge:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

/* ----------------------------------------------------------
   Responsive — 1024px
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .page-hero-title {
    font-size: 48px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-highlights {
    padding-top: 0;
  }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-left {
    flex-direction: row;
    gap: 28px;
    align-items: flex-start;
    text-align: left;
  }

  .founder-avatar {
    width: 160px;
    height: 160px;
  }

  .founder-credentials {
    justify-content: flex-start;
  }

  .review-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* ----------------------------------------------------------
   Responsive — 768px
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .page-hero {
    padding: 42px 0 28px;
  }

  .page-hero-inner {
    width: min(1200px, calc(100% - 32px));
  }

  .page-hero-title {
    font-size: 32px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .page-hero-desc {
    font-size: 14px;
    line-height: 1.65;
    max-width: 100%;
  }

  .about-story {
    padding: 48px 0 36px;
  }

  .story-layout {
    gap: 26px;
  }

  .story-title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .story-body p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 14px;
  }

  .story-highlights {
    gap: 10px;
  }

  .highlight-card {
    padding: 18px 18px;
  }

  .highlight-card-title {
    font-size: 16px;
  }

  .about-founder {
    padding: 48px 0;
  }

  .founder-layout {
    gap: 24px;
  }

  .founder-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .founder-avatar {
    width: 148px;
    height: 148px;
  }

  .founder-avatar-wrap {
    margin-bottom: 14px;
  }

  .founder-name {
    font-size: 20px;
  }

  .founder-role {
    margin-bottom: 16px;
  }

  .founder-credentials {
    justify-content: center;
  }

  .founder-bio {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 14px;
  }

  .about-mv {
    padding: 48px 0;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mv-card {
    padding: 28px 22px;
  }

  .mv-card-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .mv-card-desc {
    line-height: 1.7;
  }

  .about-testimonials {
  padding: 40px 0;
}

.testimonial-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.testimonial-card {
  padding: 16px 15px;
}

.testimonial-quote {
  font-size: 28px;
  margin-bottom: 2px;
}

.testimonial-stars {
  font-size: 11px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 12px;
  line-height: 1.55;
  margin-bottom: 8px;
}

.testimonial-author {
  font-size: 13px;
}

  .about-review {
    padding: 48px 0;
  }

  .review-layout {
    gap: 24px;
  }

  .review-form-card {
    padding: 24px 18px;
  }

  .review-form-group {
    margin-bottom: 14px;
  }

  .review-form-group input,
  .review-form-group textarea {
    padding: 11px 14px;
    font-size: 14px;
  }

  .star-selector .star {
    font-size: 22px;
  }

  .about-pro {
    padding: 46px 0;
  }

  .about-pro-title {
    font-size: 25px;
  }

  .about-pro-desc {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .pro-badge {
    font-size: 16px;
    padding: 10px 20px;
  }

  #chat-widget {
    bottom: 82px;
    right: 16px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ----------------------------------------------------------
   Responsive — 480px
   ---------------------------------------------------------- */
@media (max-width: 480px) {
  .page-hero-title {
    font-size: 27px;
  }

  .story-title {
    font-size: 27px;
  }

  .mv-card {
    padding: 24px 18px;
  }

  .review-form-card {
    padding: 20px 16px;
  }

  .pro-badges {
    gap: 10px;
  }

  .pro-badge {
    font-size: 15px;
    padding: 9px 16px;
  }
}

/* ----------------------------------------------------------
   Responsive — 380px
   ---------------------------------------------------------- */
@media (max-width: 380px) {
  .page-hero-title {
    font-size: 25px;
  }

  .founder-avatar {
    width: 128px;
    height: 128px;
  }
}
.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 420px;
  gap: 42px;
  align-items: start;
}

.about-story-text {
  min-width: 0;
}

.about-story-text p {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-mid);
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-story-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-story-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 26px 24px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(11,34,64,0.08);
}

.about-story-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 10px;
}

.about-story-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 980px) {
  .about-story-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-story-cards {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .about-story-text p {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 22px;
  }

  .about-story-card {
    padding: 22px 20px;
    border-radius: 12px;
  }

  .about-story-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .about-story-card p {
    font-size: 13px;
    line-height: 1.7;
  }
}