/* ═══════════════════════════════════════════════════════
   ABOUT.CSS — Smart Designs Studio
   Additive styles for the improved About page only.
   Does NOT override style.css, homepage.css or services.css
   ═══════════════════════════════════════════════════════ */

/* ── SHARED GHOST BUTTON (about page) ── */
.abt-btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--gold-pale);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1.5px solid rgba(240,208,128,0.45);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
  cursor: pointer;
}
.abt-btn-ghost:hover {
  background: rgba(184,134,11,0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.abt-btn-ghost-lg { padding: 1.1rem 2.8rem; font-size: 0.78rem; }

/* ══════════════════════════════════
   1. HERO
══════════════════════════════════ */
.abt-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding: 9rem 2rem 5rem;
  text-align: center;
}
.abt-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(38,30,10,0.95) 0%, #0A0A08 65%);
}
.abt-hero-deco {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.abt-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.abt-hero-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.05s ease both;
}
.abt-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.12s ease both;
}
.abt-hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-bright);
}
.abt-hero-sub {
  font-size: 1rem;
  color: #999;
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s 0.18s ease both;
}
.abt-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.24s ease both;
}

/* Trust strip */
.abt-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid rgba(184,134,11,0.15);
  background: rgba(184,134,11,0.04);
  padding: 1.2rem 2rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.abt-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
  gap: 0.2rem;
}
.abt-trust-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.abt-trust-label {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.abt-trust-sep {
  width: 1px;
  height: 32px;
  background: rgba(184,134,11,0.2);
  flex-shrink: 0;
}

/* ══════════════════════════════════
   2. BRAND STORY
══════════════════════════════════ */
.abt-story-section { background: var(--white); }

.abt-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 4rem;
}
.abt-story-left { position: sticky; top: 6rem; }
.abt-story-left .section-title { margin-bottom: 2rem; }
.abt-story-quote {
  position: relative;
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.abt-quote-mark {
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(184,134,11,0.15);
  font-weight: 700;
  pointer-events: none;
}
.abt-story-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.6;
  position: relative;
}

.abt-story-right p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 2.1;
  margin-bottom: 1.5rem;
}
.abt-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.abt-story-tags span {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,134,11,0.3);
  padding: 0.3rem 0.8rem;
  font-family: var(--font-body);
}

/* Mission/Vision/Approach callout */
.abt-story-callout {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  background: var(--cream);
  border: 1px solid rgba(184,134,11,0.12);
  padding: 3rem 0;
  align-items: start;
}
.abt-callout-div {
  width: 1px;
  background: rgba(184,134,11,0.15);
  align-self: stretch;
  margin: 1rem 0;
}
.abt-callout-item {
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.abt-callout-icon {
  width: 44px; height: 44px;
  background: rgba(184,134,11,0.07);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abt-callout-icon svg { width: 24px; height: 24px; }
.abt-callout-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.abt-callout-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ══════════════════════════════════
   3. WHAT MAKES US DIFFERENT
══════════════════════════════════ */
.abt-diff-section { background: var(--ink); }

.abt-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.abt-diff-card {
  background: #161410;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.35s, background 0.35s, transform 0.3s;
}
.abt-diff-card:hover {
  border-color: var(--gold);
  background: #1C1914;
  transform: translateY(-4px);
}
.abt-diff-icon {
  width: 52px; height: 52px;
  background: rgba(184,134,11,0.07);
  border: 1px solid rgba(184,134,11,0.18);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s, border-color 0.35s;
}
.abt-diff-card:hover .abt-diff-icon {
  background: rgba(184,134,11,0.15);
  border-color: rgba(184,134,11,0.4);
}
.abt-diff-icon svg { width: 30px; height: 30px; }
.abt-diff-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.abt-diff-card p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.9;
}

/* ══════════════════════════════════
   4. FOUNDER
══════════════════════════════════ */
.abt-founder-section { background: var(--cream); }

.abt-founder-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
  border: 1px solid rgba(184,134,11,0.12);
  background: var(--white);
  overflow: hidden;
}
.abt-founder-img-wrap {
  position: relative;
  background: #111;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abt-founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 460px;
}
.abt-founder-img-label {
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(10,10,8,0.75);
  padding: 0.4rem 1rem;
}
.abt-founder-img-label code {
  color: var(--gold-pale);
  font-size: 0.62rem;
}
.abt-founder-body {
  padding: 3rem 3rem 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.abt-founder-role {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.abt-founder-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}
.abt-founder-bio {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.95;
}
.abt-founder-expertise h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.abt-expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.abt-expertise-tags span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  border: 1px solid rgba(184,134,11,0.25);
  background: rgba(184,134,11,0.05);
  padding: 0.3rem 0.8rem;
  font-family: var(--font-body);
}
.abt-founder-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--cream);
}
.abt-founder-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
}

/* ══════════════════════════════════
   5. EXPERTISE
══════════════════════════════════ */
.abt-expertise-section { background: var(--ink); }

.abt-expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 1rem;
}
.abt-exp-card {
  background: #161410;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 3px solid transparent;
  transition: border-color 0.35s, background 0.35s;
}
.abt-exp-card:hover {
  border-color: var(--gold);
  background: #1C1914;
}
.abt-exp-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.abt-exp-icon {
  width: 46px; height: 46px;
  background: rgba(184,134,11,0.07);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.35s;
}
.abt-exp-card:hover .abt-exp-icon {
  background: rgba(184,134,11,0.14);
}
.abt-exp-icon svg { width: 26px; height: 26px; }
.abt-exp-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 0.2rem;
  line-height: 1.2;
}
.abt-exp-level {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.abt-exp-card p {
  font-size: 0.84rem;
  color: #888;
  line-height: 1.85;
}
.abt-exp-bar {
  height: 2px;
  background: rgba(184,134,11,0.1);
  border-radius: 1px;
  overflow: hidden;
}
.abt-exp-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-bright));
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease 0.3s;
}
.abt-exp-card.visible .abt-exp-fill {
  transform: scaleX(1);
}

/* ══════════════════════════════════
   6. WHO WE HELP
══════════════════════════════════ */
.abt-who-section { background: var(--cream); }

.abt-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.abt-who-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.35s, background 0.35s, transform 0.3s;
}
.abt-who-card:hover {
  border-color: var(--gold);
  background: var(--ink);
  transform: translateY(-4px);
}
.abt-who-card:hover h3 { color: var(--gold-pale); }
.abt-who-card:hover p  { color: #999; }
.abt-who-card:hover .abt-who-icon { background: rgba(184,134,11,0.15); border-color: rgba(184,134,11,0.5); }
.abt-who-icon {
  width: 52px; height: 52px;
  background: rgba(184,134,11,0.08);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s, border-color 0.35s;
}
.abt-who-icon svg { width: 26px; height: 26px; }
.abt-who-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.35s;
  line-height: 1.2;
}
.abt-who-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.85;
  transition: color 0.35s;
}

/* ══════════════════════════════════
   7. VALUES
══════════════════════════════════ */
.abt-values-section { background: var(--white); }

.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.abt-value-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 3px solid transparent;
  transition: border-color 0.35s, background 0.35s, transform 0.3s;
  position: relative;
}
.abt-value-card:hover {
  border-color: var(--gold);
  background: var(--ink);
  transform: translateY(-3px);
}
.abt-value-card:hover h3 { color: var(--gold-pale); }
.abt-value-card:hover p  { color: #999; }
.abt-value-card:hover .abt-value-num { color: rgba(184,134,11,0.2); }
.abt-value-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184,134,11,0.1);
  line-height: 1;
  transition: color 0.35s;
}
.abt-value-icon {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}
.abt-value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.35s;
  line-height: 1.2;
}
.abt-value-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.9;
  transition: color 0.35s;
}

/* ══════════════════════════════════
   8. FINAL CTA
══════════════════════════════════ */
.abt-final-cta {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  background: var(--ink);
  overflow: hidden;
}
.abt-final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(184,134,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.abt-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.abt-final-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.abt-final-cta-inner h2 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 600;
}
.abt-final-cta-inner p {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.abt-final-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.abt-final-cta-note {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}

/* ══════════════════════════════════
   EXPERTISE BAR ANIMATION
   Triggered by IntersectionObserver
   in script.js via .visible class
══════════════════════════════════ */
.reveal.visible .abt-exp-fill {
  transform: scaleX(1);
}

/* ══════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1000px) {
  .abt-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .abt-story-left { position: static; }
  .abt-story-callout { grid-template-columns: 1fr; gap: 0; }
  .abt-callout-div { width: auto; height: 1px; margin: 0; }
  .abt-callout-item { padding: 2rem 2rem; }
  .abt-founder-card { grid-template-columns: 1fr; }
  .abt-founder-img-wrap { min-height: 280px; }
  .abt-founder-img { min-height: 280px; }
  .abt-founder-body { padding: 2.5rem 2rem; }
}

@media (max-width: 900px) {
  .abt-hero { padding: 8rem 1.5rem 4rem; min-height: auto; }
  .abt-diff-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-expertise-grid { grid-template-columns: 1fr; }
  .abt-who-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-values-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-hero-trust { padding: 1rem; }
  .abt-trust-item { padding: 0 1rem; }
}

@media (max-width: 600px) {
  .abt-hero-title { font-size: 2.4rem; }
  .abt-hero-cta { flex-direction: column; align-items: center; }
  .abt-diff-grid { grid-template-columns: 1fr; }
  .abt-who-grid { grid-template-columns: 1fr; }
  .abt-values-grid { grid-template-columns: 1fr; }
  .abt-trust-sep { display: none; }
  .abt-trust-item { padding: 0.8rem 1rem; }
  .abt-hero-trust { flex-wrap: wrap; gap: 0; }
  .abt-final-cta { padding: 4rem 1.5rem; }
  .abt-final-cta-btns { flex-direction: column; align-items: center; }
  .abt-diff-card { padding: 2rem 1.5rem; }
  .abt-who-card { padding: 2rem 1.5rem; }
  .abt-value-card { padding: 2rem 1.5rem; }
  .abt-exp-card { padding: 1.8rem 1.5rem; }
}

/* ══════════════════════════════════
   WHATSAPP FLOAT — position fix
   Ensures button stays bottom-right
   on this page (matches homepage)
══════════════════════════════════ */

@media(max-width:600px){
  
}

/* ══════════════════════════════════
   WHATSAPP FLOAT — full correct fix
   Matches homepage style exactly
══════════════════════════════════ */
.wa-float {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  left: auto !important;
  width: 58px !important;
  height: 58px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.3) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  overflow: visible !important;
  text-decoration: none !important;
}
.wa-float svg {
  width: 30px !important;
  height: 30px !important;
  fill: white !important;
  flex-shrink: 0 !important;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 4px 16px rgba(0,0,0,0.3) !important;
}
.wa-tooltip {
  position: absolute !important;
  right: 68px !important;
  left: auto !important;
  background: #1A1710 !important;
  color: #F8F4EC !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.1em !important;
  padding: 0.4rem 0.8rem !important;
  white-space: nowrap !important;
  border: 1px solid rgba(184,134,11,0.2) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.wa-float:hover .wa-tooltip { opacity: 1 !important; }
.wa-float::before {
  content: '' !important;
  position: absolute !important;
  inset: -4px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(37,211,102,0.4) !important;
  animation: waPulse 2.5s infinite !important;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media(max-width:600px){
  .wa-float { bottom: 1.2rem !important; right: 1.2rem !important; width: 52px !important; height: 52px !important; }
  .wa-tooltip { display: none !important; }
}


/* ══════════════════════════════════════
   FIX: Section titles/subtitles visible on dark backgrounds
   ══════════════════════════════════════ */
.results-section .section-title,
.results-section .section-sub,
.results-section .section-label,
.testimonials-section .section-title,
.testimonials-section .section-sub,
.testimonials-section .section-label,
.process-section .section-title,
.process-section .section-sub,
.process-section .section-label,
.trust-section .section-title,
.trust-section .section-sub,
.trust-section .section-label,
.svc-cards-section .section-title,
.svc-cards-section .section-sub,
.svc-cards-section .section-label,
.svc-detail-section .section-title,
.svc-detail-section .section-sub,
.svc-detail-section .section-label,
.svc-work-section .section-title,
.svc-work-section .section-sub,
.svc-work-section .section-label,
.svc-why-section .section-title,
.svc-why-section .section-sub,
.svc-why-section .section-label,
.abt-diff-section .section-title,
.abt-diff-section .section-sub,
.abt-diff-section .section-label,
.abt-expertise-section .section-title,
.abt-expertise-section .section-sub,
.abt-expertise-section .section-label,
.cnt-why-section .section-title,
.cnt-why-section .section-sub,
.cnt-why-section .section-label {
  color: var(--cream, #F8F4EC);
}

/* Generic: any section-title/sub inside a dark-bg parent */
[style*="background: var(--ink)"] .section-title,
[style*="background: var(--ink)"] .section-sub,
[style*="background: var(--ink)"] .section-label {
  color: var(--cream, #F8F4EC);
}

