/* ============================================================
   Blossom Out Coaching & Consulting — Main Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');
/* ── CSS VARIABLES ── */
:root {
  --plum:        #6B2D6B;
  --plum-light:  #9B4F9B;
  --plum-pale:   #F5EAF5;
  --plum-dark:   #4A1A4A;
  --green:       #3A6B3A;
  --green-light: #5A9B5A;
  --cream:       #FDF8F4;
  --warm-white:  #FFFCF9;
  --text-dark:   #1C1218;
  --text-mid:    #5A4A52;
  --text-light:  #8B7A82;
  --gold:        #C8963E;
  --border:      rgba(107, 45, 107, 0.12);
  --shadow-sm:   0 4px 24px rgba(107, 45, 107, 0.08);
  --shadow-md:   0 12px 40px rgba(107, 45, 107, 0.12);
  --shadow-lg:   0 20px 60px rgba(107, 45, 107, 0.16);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  0.25s ease;
}
/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
a { text-decoration: none; }
ul { list-style: none; }
/* ── UTILITY ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-tag::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--plum);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 540px;
}
/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--plum);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--plum-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 45, 107, 0.3);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--plum);
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  background: none;
  border: none;
  cursor: pointer;
  transition: gap var(--transition), color var(--transition);
}
.btn-ghost:hover { gap: 12px; }
.btn-ghost .arrow { transition: transform var(--transition); }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--plum);
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--plum);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: var(--plum);
  color: #fff;
  transform: translateY(-2px);
}
/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 252, 249, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
#navbar.scrolled {
  box-shadow: var(--shadow-sm);
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--plum);
  font-weight: 600;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-light);
  text-transform: uppercase;
}
/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--plum);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--plum);
  font-weight: 500;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: var(--plum) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 40px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: background var(--transition), transform var(--transition) !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--plum-light) !important;
  transform: translateY(-1px) !important;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--plum);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255, 252, 249, 0.98);
  backdrop-filter: blur(20px);
  padding: 1rem 5vw 2rem;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text-mid);
  transition: color var(--transition);
}
.mobile-drawer a:last-child { border-bottom: none; }
.mobile-drawer a.active,
.mobile-drawer a:hover { color: var(--plum); font-weight: 500; }
/* ── HERO ── */
#home {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  top: 21%; left: 30%;
  width: 220px; height: 220px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 55%, rgba(107,45,107,0.05) 0%, transparent 50%),
    radial-gradient(circle at 82% 20%, rgba(58,107,58,0.05) 0%, transparent 45%);
  pointer-events: none;
}
.hero-left {
  padding: 6rem 3rem 6rem 5vw;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 500;
  margin-bottom: 0rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--plum);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.15;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--plum);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.65s forwards;
}
.hero-right {
  height: 100vh;
  min-height: 600px;
  position: relative;
  background: #F0DCF0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  inset: 0;
  background-image: url(back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 270px;
}
.stat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.stat-card:nth-child(1) .stat-icon { background: var(--plum-pale); }
.stat-card:nth-child(2) .stat-icon { background: #EAF4EA; }
.stat-card:nth-child(3) .stat-icon { background: #FEF6E8; }
.stat-label {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.stat-value {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
}
/* ── VALUES ── */
#values {
  padding: 6rem 5vw;
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.value-card:hover::before { transform: scaleX(1); }
.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--plum-pale);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 0.75rem;
}
.value-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
}
/* ── FOUNDERS ── */
#founders {
  padding: 6rem 5vw;
  background: var(--warm-white);
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.founder-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.founder-photo-wrap {
  width: 100%;
  height: 280px;
  background: var(--plum-pale);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}
.founder-card:nth-child(2) .founder-photo-wrap {
  background: white;
}
.founder-photo-wrap img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  object-position: top center;
  transition: transform 0.4s ease;
}
.founder-card:hover .founder-photo-wrap img {
  transform: scale(1.04);
}
/* Placeholder avatar if no image */
.founder-photo-wrap .avatar-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(107, 45, 107, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--plum);
}
.founder-card:nth-child(2) .founder-photo-wrap .avatar-placeholder {
  background: rgba(58, 107, 58, 0.15);
  color: var(--green);
}
/* Image upload hint overlay */
.photo-hint {
  position: absolute;
  inset: 0;
  background: rgba(107, 45, 107, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity var(--transition);
  cursor: pointer;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.photo-hint svg {
  width: 28px; height: 28px;
  fill: #fff;
}
.founder-card:hover .photo-hint { opacity: 1; }
.founder-info {
  padding: 1.75rem 1.75rem 1.5rem;
}
.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.founder-role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 500;
  margin-bottom: 1rem;
}
.founder-bio {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  background: var(--plum-pale);
  color: var(--plum);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
}
.founder-card:nth-child(2) .tag {
  background: #EAF4EA;
  color: var(--green);
}
/* ── SERVICES ── */
#services {
  padding: 6rem 5vw;
  background: var(--cream);
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem 3rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-num {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1.25rem;
}
.service-card:nth-child(1) .service-icon { background: var(--plum-pale); }
.service-card:nth-child(2) .service-icon { background: #EAF4EA; }
.service-card:nth-child(3) .service-icon { background: #FEF6E8; }
.service-card:nth-child(4) .service-icon { background: #F0E8FE; }
.service-card:nth-child(5) .service-icon { background: #FEF0E8; }
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
}
.service-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--plum);
  background: var(--plum-pale);
  padding: 7px 16px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background var(--transition), gap var(--transition);
}
.service-btn:hover {
  background: var(--plum);
  color: #fff;
  gap: 10px;
}
/* ── PACKAGES SUB-NAVBAR ── */
.pkg-nav-wrap {
  position: sticky;
  top: 72px;
  z-index: 900;
  background: var(--cream);
  border-bottom: 2px solid var(--border);
  margin: 0 -5vw;
  padding: 0 5vw;
  box-shadow: 0 4px 16px rgba(107,45,107,0.06);
}
.pkg-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pkg-nav::-webkit-scrollbar { display: none; }
.pkg-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 1rem 1.4rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  margin-bottom: -2px;
}

.pkg-tab-label {
  font-weight: 600;
}
.pkg-tab:hover {
  color: var(--plum);
  background: rgba(107, 45, 107, 0.04);
}
.pkg-tab.active {
  color: var(--plum);
  border-bottom-color: var(--plum);
  font-weight: 600;
}
/* pill badge on active */
.pkg-tab.active .pkg-tab-label {
  position: relative;
}
.visual-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
/* ── TAB PANELS ── */
.tab-panels {
  margin-top: 2.5rem;
}
.tab-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}
.tab-panel.active { display: block; }
/* Tab hero banner */
.tab-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}
.tab-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.tab-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}
.tab-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 1.5rem;
}
/* Decorative visual blob in tab hero */
.tab-hero-visual {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  flex-shrink: 0;
}
.school-visual    { background: var(--plum-pale); }
.growth-visual    { background: #EAF4EA; }
.mentorship-visual{ background: #FEF6E8; }
.coaching-visual  { background: #F0E8FE; }
.corporate-visual { background: #E8F0FE; }
/* Package cards grid */
.pkg-cards-grid {
  display: grid;
  /* Force 3 columns (3x3 look) when there are enough items */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pkg-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.pkg-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;

  /* center the icon in each pkg card */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* make sure icon + text stack is centered */
.pkg-card {
  text-align: center;
}

.pkg-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.pkg-card-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-mid);
}
.pkg-card-highlight {
  background: var(--plum-pale);
  border-color: rgba(107, 45, 107, 0.2);
}
.pkg-card-highlight .pkg-card-title { color: var(--plum); }
/* Responsive */
@media (max-width: 768px) {
  .tab-hero {
    grid-template-columns: 1fr;
    padding: 1.75rem;
  }
  .tab-hero-visual { display: none; }
  .pkg-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pkg-cards-grid { grid-template-columns: 1fr; }
  .pkg-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 1rem 1.4rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  margin-bottom: -2px;
}

.pkg-tab-label {
  font-weight: 600;
}
.pkg-tab-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
}

.visual-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
}
/* ── SERVICE MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 18, 24, 0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  animation: scaleIn 0.25s ease;
}
.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-mid);
  transition: background var(--transition);
}
.modal-close:hover { background: var(--plum-pale); color: var(--plum); }
.modal-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--plum-pale);
  margin-bottom: 1.25rem;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.modal-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
}
.modal-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}
.modal-body ul li {
  margin-bottom: 0.5rem;
}

/* ── CONTACT ── */
#contact {
  padding: 6rem 5vw;
  background: var(--plum-dark);
  color: #fff;
}
#contact .section-tag { color: rgba(255,255,255,0.55); }
#contact .section-tag::before { background: rgba(255,255,255,0.35); }
#contact .section-title { color: #fff; }
#contact .section-sub {
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 3rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  appearance: none;
  cursor: pointer;
}
.form-group select option { background: var(--plum-dark); color: #fff; }
.btn-submit {
  background: #fff;
  color: var(--plum);
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-submit:hover {
  background: var(--plum-pale);
  transform: translateY(-2px);
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
  color: #fff;
  margin-top: 0.5rem;
}
.form-success.show { display: flex; }
/* Contact info side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: background var(--transition);
  text-decoration: none;
  color: #fff;
}
.contact-item:hover { background: rgba(255,255,255,0.12); }
.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}
/* ── FOOTER ── */
footer {
  background: #130D10;
  color: rgba(255,255,255,0.5);
}
.footer-top {
  padding: 3.5rem 5vw 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { font-size: 20px; color: #fff; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-tagline {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
/* Social icons */
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--plum);
  transform: translateY(-2px);
  border-color: var(--plum);
}
.social-btn svg {
  width: 17px; height: 17px;
  fill: rgba(255,255,255,0.7);
  transition: fill var(--transition);
}
.social-btn:hover svg { fill: #fff; }
/* WhatsApp special */
.social-btn.whatsapp:hover { background: #25D366; border-color: #25D366; }
.social-btn.facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-btn.instagram:hover { background: #E1306C; border-color: #E1306C; }
.social-btn.twitter:hover   { background: #1DA1F2; border-color: #1DA1F2; }
.social-btn.youtube:hover   { background: #FF0000; border-color: #FF0000; }
.social-btn.linkedin:hover  { background: #0A66C2; border-color: #0A66C2; }
.footer-col-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-mini a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.footer-contact-mini a:hover { color: rgba(255,255,255,0.9); }
.footer-contact-mini span {
  font-size: 15px;
}
.footer-bottom {
  padding: 1.25rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  #home { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 5vw 4rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .founders-grid { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; gap: 1rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #values, #founders, #services, #contact { padding: 4rem 5vw; }
}

/*CHAT FLOAT WRAPPER*/
.chat-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  width: fit-content;
  height: fit-content;
  pointer-events: auto;
}

.chat-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chat-fab:hover { transform: scale(1.05); box-shadow: 0 20px 60px rgba(107,45,107,0.3); }

.chat-popup {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 1000;
}
.chat-popup.open { display: flex; }

.chat-header {
  background: var(--plum);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-title { font-weight: 600; font-size: 15px; }
.chat-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.chat-body { padding: 18px; }
.chat-bubble {
  background: var(--plum-pale);
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  margin-bottom: 14px;
}

.chat-quicklinks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-link {
  display: block;
  padding: 10px 14px;
  background: #f8f5f8;
  border-radius: 10px;
  font-size: 14px;
  color: var(--plum);
  text-decoration: none;
  transition: background 0.2s ease;
}
.chat-link:hover { background: var(--plum-pale); }














