:root {
  --primary: #9533a2;
  --accent: #f67e9f;
  --bg-light: #fff7fb;
  --text-dark: #222222;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* prevent sideways scroll */
html,
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* keep media inside viewport */
img,
iframe {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #fff7fb 0%, #ffeaf3 100%);
  color: var(--text-dark);
}

/* GENERAL SECTIONS */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: var(--primary);
}

/* ===== TOP CONTACT / SOCIAL BAR ===== */
.top-bar {
  background: linear-gradient(90deg, #6d2677, var(--primary));
  color: #ffffff;
  font-size: 0.85rem;
  padding: 4px 0;
}

.top-bar-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.top-bar-link:hover {
  text-decoration: underline;
}

.top-bar-icon {
  font-size: 0.9rem;
}

.top-bar-separator {
  margin: 0 4px;
  opacity: 0.7;
}

/* SOCIAL BADGES RIGHT SIDE */
.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-badge span {
  line-height: 1;
}

/* subtle brand-flavoured gradients */
.social-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-fb {
  background: linear-gradient(135deg, #1877f2, #145dbf);
}

.social-ig {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #4f5bd5);
}

.social-li {
  background: linear-gradient(135deg, #0a66c2, #004182);
}

.social-yt {
  background: linear-gradient(135deg, #ff0000, #b31217);
}

.social-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* ===== RESPONSIVE FOR TOP BAR ===== */
@media (max-width: 767.98px) {
  .top-bar {
    font-size: 0.8rem;
    padding: 6px 0;
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
    gap: 4px;
  }

  .top-bar-contact {
    justify-content: center;
  }

  .top-bar-socials {
    justify-content: center;
  }

  .top-bar-separator {
    display: none;
  }
}

/* HEADER + NAVBAR */
.main-header {
  position: fixed;     /* ← stays on top permanently */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;       /* keep above everything */
  background: linear-gradient(90deg, var(--primary));
  padding: 15px 0;
}

.logo-area {
  gap: 10px;
}

.logo-img {
  height: 55px;
  width: auto;
}

.logo-text {
  font-weight: bold;
  color: #ffffff;
  font-size: 1.3rem;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: #ffffff;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* HAMBURGER ANIMATION */
.hamburger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-drop-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-drop-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 8px;
  display: none;
  z-index: 9999;
}

.nav-drop-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.nav-drop-menu a:hover {
  background: #f2f7ff;
}

/* show dropdown on hover (desktop) */
.nav-dropdown:hover .nav-drop-menu {
  display: block;
}

.nav-drop-menu.show {
  display: block;
}

/* =========================
   HOME SPLIT HERO (PREMIUM + ANIMATED)
========================= */
/* ================= HERO ================= */
    .home-split {
      height: 100vh;
      display: flex;
      overflow: hidden;
    }

    .home-left {
      width: 55%;
      background: linear-gradient(135deg, #9533a2, #f67e9f);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 90px 60px;
      position: relative;
    }

    .home-left::after {
      content:"";
      position:absolute;
      inset:0;
      background:rgba(0,0,0,0.18);
    }

    .home-left-inner {
      position: relative;
      z-index: 1;
      max-width: 560px;
      animation: fadeUp 1s ease both;
    }

    .home-left h1 {
      font-size: clamp(2.4rem,4vw,3.6rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .home-left p {
      font-size: 1.15rem;
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .home-btn {
      display:inline-block;
      padding:14px 36px;
      background:#fff;
      color:#9533a2;
      font-weight:800;
      border-radius:8px;
      text-decoration:none;
      transition:0.25s;
    }

    .home-btn:hover { transform: translateY(-3px); }

    .home-right {
      width: 45%;
    }

    .home-right img {
      width:100%;
      height:100%;
      object-fit:cover;
    }

    @keyframes fadeUp {
      from { opacity:0; transform:translateY(20px); }
      to { opacity:1; transform:none; }
    }

    /* ================= SECTIONS ================= */
    section { padding: 90px 0; }

    .section-title {
      font-size: 2.3rem;
      font-weight: 800;
      color: var(--accent);
      margin-bottom: 30px;
      text-align: center;
    }

    /* ================= ABOUT ================= */
    .vision-block {
      max-width: 900px;
      margin: 0 auto 60px;
      font-size: 1.15rem;
      line-height: 1.8;
      text-align: center;
    }

    /* ================= TEAM ================= */
    .team-section { margin-top: 40px; }

    .team-card {
      background:#fff;
      border-radius:20px;
      padding:30px 24px;
      text-align:center;
      box-shadow:0 12px 30px rgba(149,51,162,0.12);
      border-top:4px solid var(--accent);
      height:100%;
    }

    .team-img {
      width:160px;
      height:160px;
      border-radius:50%;
      object-fit:cover;
      border:4px solid var(--accent);
      margin-bottom:16px;
    }

    .team-name {
      font-size:1.6rem;
      font-weight:800;
    }

    .team-role {
      color:var(--accent);
      font-weight:700;
      margin-bottom:14px;
    }

    .team-desc p {
      font-size:1.05rem;
      line-height:1.7;
    }

    .team-address {
      margin-top:14px;
      background:rgba(149,51,162,0.05);
      padding:12px;
      border-radius:12px;
      font-size:0.95rem;
    }

    /* ================= TAGLINE ================= */
    .tagline-section {
      background:#f9f0fc;
      text-align:center;
    }

    .tagline-quote {
      font-size:2.2rem;
      font-weight:800;
      color:var(--accent);
    }

    .tagline-text {
      font-size:1.2rem;
      margin-top:10px;
    }

    /* ================= MISSION ================= */
    .mission-section {
      background:#fff;
    }

    .mission-section h3 {
      font-weight:700;
      margin-bottom:12px;
    }

    .mission-section p {
      font-size:1.1rem;
      line-height:1.7;
    }

    .mission-image {
      width:100%;
      border-radius:20px;
      box-shadow:0 16px 40px rgba(0,0,0,0.15);
    }

    /* ================= RESPONSIVE ================= */
    @media(max-width:991px){
      .home-split{ flex-direction:column; height:auto; }
      .home-left,.home-right{ width:100%; }
      .home-right{ height:380px; }
      .home-left{ text-align:center; }
    }

/* HEADLINE */
.home-left h1{
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;

  /* nice fade-up for title */
  animation: titleUp 0.9s ease both;
}

@keyframes titleUp{
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* PARAGRAPH */
.home-left p{
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.95;

  animation: paraUp 1.05s ease both;
  animation-delay: 0.10s;
}

@keyframes paraUp{
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* BUTTON */
.home-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 38px;
  background: #fff;
  color: #9533a2;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.55);

  box-shadow: 0 16px 35px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  animation: btnPop 1.15s ease both;
  animation-delay: 0.20s;
}

@keyframes btnPop{
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.home-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.home-btn:active{
  transform: translateY(-1px);
}

/* RIGHT IMAGE */
.home-right{
  width: 45%;
  position: relative;
  overflow: hidden;
}

.home-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* smooth reveal + gentle zoom */
  animation: imgReveal 1s ease both;
}

@keyframes imgReveal{
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

/* subtle light overlay on image */
.home-right::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,0.12), transparent 55%);
  pointer-events:none;
}

/* RESPONSIVE */
@media (max-width: 991.98px){
  .home-split{ flex-direction: column; height: auto; }
  .home-left, .home-right{ width: 100%; }
  .home-left{ padding: 80px 24px; text-align: center; }
  .home-left-inner{ text-align: center; }
  .home-right{ height: 380px; }
}

/* Respect user motion settings */
@media (prefers-reduced-motion: reduce){
  .home-left-inner, .home-left h1, .home-left p, .home-btn, .home-right img, .home-left::before{
    animation: none !important;
    transition: none !important;
  }
}

/* ===== MISSION SECTION (CAROUSEL) ===== */

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f7ff 0%, #fff5f9 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, #ffffff 0%, transparent 100%);
    z-index: 1;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(0deg, #ffffff 0%, transparent 100%);
    z-index: 1;
}

/* Header Styles */
.services-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.services-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(149, 51, 162, 0.1);
    border-radius: 50px;
}

.services-description {
    max-width: 700px;
    margin: 20px auto 0;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(149, 51, 162, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(149, 51, 162, 0.1);
    height: 100%;
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(149, 51, 162, 0.15);
    border-color: rgba(149, 51, 162, 0.2);
}

.service-card-inner {
    position: relative;
    z-index: 2;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.service-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(149, 51, 162, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(149, 51, 162, 0.3);
}

.service-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(36, 0, 41, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-number {
    color: rgba(149, 51, 162, 0.1);
    transform: translateY(-5px);
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

.service-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.service-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--primary);
    background: rgba(149, 51, 162, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-features span:hover {
    background: rgba(149, 51, 162, 0.15);
    transform: translateY(-2px);
}

.service-features i {
    font-size: 0.8rem;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(149, 51, 162, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-bg {
    opacity: 1;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: floatPattern 20s linear infinite;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.services-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: var(--primary);
    background: #f8f9fa;
}

.cta-button i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes floatPattern {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 70px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        min-height: 300px;
    }
    
    .service-card-inner {
        padding: 25px 20px;
    }
    
    .services-cta {
        padding: 40px 25px;
    }
    
    .services-cta h3 {
        font-size: 1.8rem;
    }
    
    .services-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .service-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-features {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== ABOUT / DIRECTORS ===== */
/* About Section */
.about-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.section-title {
    text-align: center;
    color: var(--primary);
    margin-bottom: 40px;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Vision Block */
.vision-block {
    border-radius: 22px;
    padding: 36px 32px;
    background: linear-gradient(135deg, rgba(149, 51, 162, 0.12), rgba(246, 126, 159, 0.18));
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 60px;
    box-shadow: 0 12px 28px rgba(149, 51, 162, 0.16);
}

.vision-block h3 {
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 2.4rem;
    font-weight: 700;
}

.vision-block p {
    margin: 0 0 18px 0;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
}

.vision-block p:last-child {
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    max-width: 1200px;
    margin: 0 auto;
}

.team-title {
    text-align: center;
    color: var(--primary);
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
}

.team-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Horizontal Layout for Team Members */
.team-member.horizontal-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    padding: 30px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(149, 51, 162, 0.12);
    border-top: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member.horizontal-layout:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(149, 51, 162, 0.18);
}

.team-member.horizontal-layout.reverse {
    flex-direction: row-reverse;
}

.team-member-img-wrapper {
    flex-shrink: 0;
}

.team-member-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--accent);
    background: #ffffff;
    transition: transform 0.3s ease;
}

.team-member.horizontal-layout:hover .team-member-img {
    transform: scale(1.05);
}

.team-member-info {
    flex: 1;
}

.team-member-name {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.team-member-role {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 0 20px 0;
}

.team-member-description {
    margin-bottom: 20px;
}

.team-member-description p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.team-member-description p:last-child {
    margin-bottom: 0;
}

.team-member-address {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    padding: 12px 18px;
    background-color: rgba(149, 51, 162, 0.05);
    border-radius: 10px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .team-member.horizontal-layout {
        gap: 30px;
    }
    
    .team-member-img {
        width: 170px;
        height: 170px;
    }
    
    .vision-block {
        padding: 30px 24px;
        margin-bottom: 50px;
    }
}

@media (max-width: 767.98px) {
    .team-member.horizontal-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
        gap: 25px;
    }
    
    .team-member.horizontal-layout.reverse {
        flex-direction: column;
    }
    
    .team-member-img {
        width: 160px;
        height: 160px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .vision-block {
        padding: 24px 20px;
    }
    
    .vision-block h3 {
        font-size: 2rem;
    }
    
    .vision-block p {
        font-size: 1.2rem;
    }
    
    .team-title {
        font-size: 1.9rem;
    }
    
    .team-member-name {
        font-size: 1.7rem;
    }
    
    .team-member-role {
        font-size: 1.3rem;
    }
    
    .team-member-description p {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .vision-block {
        padding: 20px 18px;
        margin-bottom: 40px;
    }
    
    .vision-block h3 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }
    
    .vision-block p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .team-title {
        font-size: 1.7rem;
        margin-bottom: 40px;
    }
    
    .team-member.horizontal-layout {
        padding: 20px 16px;
        margin-bottom: 40px;
    }
    
    .team-member-img {
        width: 140px;
        height: 140px;
    }
    
    .team-member-name {
        font-size: 1.5rem;
    }
    
    .team-member-role {
        font-size: 1.2rem;
    }
}

/* ===== CORE PHILOSOPHY ===== */
.philosophy-section {
  background: var(--bg-light);
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 22px;
  border-radius: 22px;
  background: #ffffff;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 26px rgba(149, 51, 162, 0.16);
}

/* animated border only */
.philosophy-content::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(120deg, #9533a2, #f67e9f, #ffd1e2, #9533a2);
  background-size: 300% 300%;
  z-index: -1;
  animation: borderLightMove 6s linear infinite;
}

.philosophy-content::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ffffff;
  z-index: -1;
}

.philosophy-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.philosophy-content h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.philosophy-content p {
  font-size: 1.3rem;
  line-height: 1.7;
  margin: 0;
  color: #333;
}

@keyframes borderLightMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@media (max-width: 767.98px) {
  .philosophy-content {
    padding: 24px 18px;
  }

  .philosophy-content h3 {
    font-size: 1.4rem;
  }

  .philosophy-content p {
    font-size: 1.1rem;
  }
}

/* ===== CONTACT ===== */
.contact-section {
  background: #ffffff;
}

.contact-row {
  margin-top: 10px;
}

.map-card {
  height: 100%;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(149, 51, 162, 0.12);
  padding: 10px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 16px;
  border: 0;
}

/* contact card */
.contact-card {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(149, 51, 162, 0.06), rgba(246, 126, 159, 0.12));
  padding: 22px 20px;
  box-shadow: 0 12px 30px rgba(149, 51, 162, 0.12);
  border-top: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-heading {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-line:last-child {
  margin-bottom: 0;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text-block {
  flex: 1;
}

.contact-text {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  line-height: 1.7;
  color: #333333;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed rgba(149, 51, 162, 0.4);
  padding-bottom: 2px;
}

.contact-link:hover {
  border-bottom-style: solid;
}

/* WhatsApp badge */
.contact-whatsapp-line {
  margin-top: 6px;
}

.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18, 140, 126, 0.65);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  font-size: 1.1rem;
}

.whatsapp-text {
  font-size: 0.95rem;
  line-height: 1.3;
}

.whatsapp-text small {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
}

@media (max-width: 991.98px) {
  .map-card,
  .contact-card {
    margin-top: 4px;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .map-card {
    margin-bottom: 16px;
  }

  .contact-card {
    padding: 20px 16px;
  }

  .contact-heading {
    text-align: center;
  }

  .contact-line {
    align-items: center;
  }

  .whatsapp-badge {
    width: 100%;
    justify-content: center;
    text-align: left;
  }
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--bg-light);
}

/* IMAGE GRID */
.gallery-grid .gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

/* base image */
.gallery-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.65));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-name {
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* hover */
.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* VIDEO ROW */
.gallery-video-row {
  margin-top: 24px;
}

.video-item {
  width: 100%;
}

.video-thumb {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
}

.video-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.45));
  transition: background 0.35s ease;
}

/* bubble play icon */
.video-play-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--primary));
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 0 0 0 rgba(246, 126, 159, 0.55);
  animation: videoPulse 1.8s ease-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes videoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(246, 126, 159, 0.55);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(246, 126, 159, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(246, 126, 159, 0);
  }
}

.video-label {
  opacity: 0;
  transform: translateY(12px);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 0.96rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-label-icon {
  font-size: 0.9rem;
}

/* video hover */
.video-thumb:hover .video-img {
  transform: scale(1.04);
}

.video-thumb:hover .video-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75));
}

.video-thumb:hover .video-play-icon {
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.video-thumb:hover .video-label {
  opacity: 1;
  transform: translateY(0);
}

/* gallery responsive – force one item per row on mobile */
@media (max-width: 767.98px) {
  .gallery-img {
    height: 170px;
  }

  .video-img {
    height: 210px;
  }

  .gallery-name {
    font-size: 1rem;
  }

  .video-label {
    font-size: 0.9rem;
  }

  .video-play-icon {
    width: 62px;
    height: 62px;
    font-size: 24px;
  }

  /* make all gallery cols full-width on small screens */
  .gallery-grid > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ===== TAGLINE ===== */
/* ===== HERB SECTION ===== */
/* ===== HERB SECTION ===== */
.herb-section {
  background: #ffffff;
  padding: 60px 0;
  font-size: 1.5rem;
}

.herb-intro {
  max-width: 800px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #444;
}

/* GRID */
.herb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 2fr));
  gap: 18px;
}

/* CARD */
.herb-card {
  position: relative;
  padding: 18px 16px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(196, 10, 221, 0.08), rgba(255, 91, 135, 0.12));
  /* box-shadow: 0 10px 25px rgba(212, 25, 237, 0.16); */
  border: 1px solid rgba(149, 51, 162, 0.35);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.herb-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at -10% -20%, rgba(149, 51, 162, 0.18), transparent 50%),
              radial-gradient(circle at 120% 130%, rgba(246, 126, 159, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .herb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(149, 51, 162, 0.22);
  }

  .herb-card:hover::before {
    opacity: 1;
  }
}

/* ICON */
.herb-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.herb-icon {
  width: 40vw;
  height: 20vh;
  /* border-radius: 50%; */
  object-fit: cover;
  /* border: 3px solid #ffffff; */
  box-shadow: 0 6px 14px rgba(149, 51, 162, 0.35);
}

/* NAMES */
.herb-name {
  text-align: center;
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.herb-name-en {
  display: block;
  font-weight: 700;
  margin: 14px 0px;
  color: var(--primary);
}

.herb-name-ta {
  display: block;
  font-size: 1.1rem;
  color: #555;
}

/* SNIPPET */
.herb-snippet {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 10px;
}

/* READ MORE BUTTON */
.herb-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 6px 16px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.herb-read-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(149, 51, 162, 0.35);
  filter: brightness(1.03);
}

/* ===== MODAL ===== */
.herb-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.herb-modal.is-visible {
  display: flex;
}

.herb-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.herb-modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 90%;
  background: #ffffff;
  border-radius: 22px;
  padding: 22px 20px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: herbModalIn 0.35s ease-out;
}

@keyframes herbModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CLOSE BUTTON */
.herb-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: #777;
}

.herb-modal-close:hover {
  color: var(--primary);
}

/* HEADER + TABS */
.herb-modal-header {
  margin-bottom: 12px;
}

.herb-modal-title {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.herb-modal-subtitle {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #555;
}

.herb-lang-tabs {
  display: inline-flex;
  border-radius: 999px;
  padding: 2px;
  background: rgba(149, 51, 162, 0.08);
  margin-top: 6px;
}

.herb-lang-tab {
  border: none;
  background: transparent;
  padding: 5px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 999px;
  color: #555;
  transition: background 0.2s ease, color 0.2s ease;
}

.herb-lang-tab.is-active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

/* BODY PANES */
.herb-modal-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.herb-pane {
  display: none;
}

.herb-pane.is-active {
  display: block;
  margin-top: 10px;
}

/* PREPARATION SECTION */
.herb-modal-body h4 {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.herb-modal-prep-en,
.herb-modal-prep-ta {
  white-space: pre-line; /* preserves line breaks and numbered steps */
  margin: 6px 0 0;
}

/* NOTE */
.herb-modal-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #a00;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 575.98px) {
  .herb-modal-dialog {
    padding: 18px 16px 16px;
  }

  .herb-modal-title {
    font-size: 1.05rem;
  }

  .herb-lang-tab {
    font-size: 0.8rem;
    padding: 4px 10px;
  }

  .herb-modal-body h4 {
    font-size: 0.95rem;
  }
}

/* ===== RESPONSIBILITY ===== */
.responsibility-section {
  background: #ffffff;
}

.responsibility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.responsibility-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #333;
}

.responsibility-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 3px rgba(149, 51, 162, 0.2);
}

@media (max-width: 767.98px) {
  .responsibility-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .responsibility-list li {
    font-size: 1.15rem;
  }
}

/* BLOG SECTION */
.blog-section {
    padding: 70px 0;
    background: #faf6f2;
}

.blog-header {
    margin-bottom: 2rem;
}

.blog-header-text .blog-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c17f3f;
    margin-bottom: 0.25rem;
}

.blog-subtitle {
    max-width: 520px;
    font-size: 0.95rem;
    color: #5a5a5a;
}

.blog-badge-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.blog-badge i {
    font-size: 0.85rem;
}

.blog-badge--care {
    color: #c85b5b;
}

.blog-badge--family {
    color: #405a98;
}

.blog-badge--herbs {
    color: #3c7a3c;
}

/* Featured card */
.blog-feature-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-feature-image-wrap {
    position: relative;
    overflow: hidden;
}

.blog-feature-img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 50vh;
    transition: transform 0.6s ease;
}

.blog-feature-card:hover .blog-feature-img {
    transform: scale(1.04);
}

.blog-feature-tag {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.8rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-feature-body {
    padding: 1.4rem 1.6rem 1.6rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    font-size: 0.8rem;
    color: #7c7c7c;
    margin-bottom: 0.4rem;
}

.blog-meta-item i {
    margin-right: 0.25rem;
}

.blog-feature-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #2b2b2b;
}

.blog-feature-excerpt {
    font-size: 0.95rem;
    color: #575757;
    margin-bottom: 0.9rem;
}

.blog-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #c17f3f;
    text-decoration: none;
}

.blog-feature-link i {
    transition: transform 0.2s ease;
}

.blog-feature-link:hover i {
    transform: translateX(3px);
}

/* Blog list */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-list-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.blog-list-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.78rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.4rem;
}

.blog-list-tag--care {
    background: #fdecec;
    color: #be4545;
}

.blog-list-tag--family {
    background: #e8eefc;
    color: #364c8a;
}

.blog-list-tag--herbs {
    background: #e3f4e5;
    color: #2f6a36;
}

.blog-list-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #2b2b2b;
}

.blog-list-excerpt {
    font-size: 0.9rem;
    color: #616161;
    margin-bottom: 0.6rem;
}

.blog-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.blog-list-link {
    font-size: 0.85rem;
    color: #c17f3f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-list-link i {
    font-size: 0.8rem;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .blog-section {
        padding: 50px 0;
    }

    .blog-feature-card {
        margin-bottom: 1.4rem;
    }

    .blog-badge-wrap {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .blog-feature-body {
        padding: 1.1rem 1.25rem 1.4rem;
    }

    .blog-feature-title {
        font-size: 1.15rem;
    }

    .blog-list-item {
        padding: 0.9rem 1rem;
    }
}

/* BLOG DETAIL PAGES */

.blog-detail-body {
    background: #faf6f2;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.blog-detail-topbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.6rem 0;
}

.blog-detail-back {
    font-size: 0.9rem;
    text-decoration: none;
    color: #c17f3f;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-detail-back i {
    font-size: 0.85rem;
}

.blog-detail-brand {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #777;
}

.blog-detail-main {
    padding: 2.5rem 0 3.5rem;
}

.blog-detail-card {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.blog-detail-cover-wrap {
    position: relative;
    max-height: 420px;
    overflow: hidden;
}

.blog-detail-cover {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(1.02);
    transition: transform 0.7s ease;
}

.blog-detail-card:hover .blog-detail-cover {
    transform: scale(1.06);
}

.blog-detail-chip {
    position: absolute;
    left: 1.5rem;
    bottom: 1.3rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-detail-header-block {
    padding: 1.6rem 2rem 0.8rem;
}

.blog-detail-category {
    font-size: 0.85rem;
    color: #c17f3f;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.35rem;
}

.blog-detail-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.4rem;
    color: #252525;
}

.blog-detail-meta {
    font-size: 0.82rem;
    color: #888;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.2rem;
}

.blog-detail-meta i {
    margin-right: 0.25rem;
}

.blog-detail-content {
    padding: 0.6rem 2rem 2rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #4f4f4f;
}

.blog-detail-content h2 {
    font-size: 1.25rem;
    margin-top: 1.4rem;
    margin-bottom: 0.4rem;
    color: #2f2f2f;
}

.blog-detail-content p {
    margin-bottom: 0.75rem;
}

.blog-detail-quote {
    margin: 1.3rem 0;
    padding: 1rem 1.2rem;
    border-left: 4px solid #c17f3f;
    background: #fdf3e8;
    border-radius: 10px;
    font-style: italic;
    font-size: 0.95rem;
    color: #5a3c22;
}

.blog-detail-cta {
    margin-top: 1.6rem;
    padding-top: 1.1rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.blog-detail-cta p {
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: #333;
}

.blog-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    background: #c17f3f;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
}

.blog-detail-cta-btn:hover {
    opacity: 0.92;
}

.blog-detail-footer {
    padding: 1.2rem 0 1.6rem;
    background: #f0e2d4;
    font-size: 0.85rem;
    color: #5c4938;
}

/* Responsive */
@media (max-width: 767.98px) {
    .blog-detail-main {
        padding: 1.5rem 0 2.5rem;
    }

    .blog-detail-header-block,
    .blog-detail-content {
        padding: 1.2rem 1.25rem 1.4rem;
    }

    .blog-detail-title {
        font-size: 1.45rem;
    }
}

/* FOLLOW US SECTION – JAIVIKA PALETTE + STATUS */

.follow-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff7ef 0%, #faf2e7 40%, #f4e4d3 100%);
    position: relative;
    overflow: hidden;
}

.follow-section::before,
.follow-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    opacity: 0.32;
    pointer-events: none;
    animation: follow-glow 12s ease-in-out infinite alternate;
}

.follow-section::before {
    width: 240px;
    height: 240px;
    background: rgba(193, 127, 63, 0.32); /* #c17f3f with transparency */
    top: -90px;
    right: 6%;
}

.follow-section::after {
    width: 280px;
    height: 280px;
    background: rgba(132, 94, 60, 0.24);
    bottom: -140px;
    left: -40px;
}

@keyframes follow-glow {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(8px, -12px, 0) scale(1.06); }
}

.follow-header {
    text-align: center;
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
}

.follow-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c17f3f;
    margin-bottom: 0.25rem;
}

.follow-title {
    font-size: 1.8rem;
    margin-bottom: 0.45rem;
    color: #2c241e;
}

.follow-subtitle {
    max-width: 580px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #5c4a3b;
}

/* Top status row (thin chips) */
.follow-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
}

.follow-status-chip {
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(193, 127, 63, 0.16);
    color: #6a5443;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.follow-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    display: inline-block;
    position: relative;
}

.follow-status-dot--live {
    background: #1faa72;
    box-shadow: 0 0 0 0 rgba(31, 170, 114, 0.6);
    animation: follow-pulse 1.8s ease-out infinite;
}

.follow-status-dot--schedule {
    background: #f2a10d;
}

.follow-status-dot--calm {
    background: #718096;
}

@keyframes follow-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(31, 170, 114, 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(31, 170, 114, 0); }
    100% { box-shadow: 0 0 0 0 rgba(31, 170, 114, 0); }
}

/* Social strip layout */
.follow-strip {
    position: relative;
    z-index: 1;
    margin-top: 0.4rem;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    box-shadow:
        0 14px 40px rgba(58, 34, 19, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.7);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

/* Each item – pill style, not card */
.follow-item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1.05rem;
    border-radius: 999px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
    font-size: 0.9rem;
    color: #3b3026;
    position: relative;
    overflow: hidden;
}

.follow-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.65), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.follow-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(67, 45, 26, 0.25);
    border-color: rgba(193, 127, 63, 0.35);
}

.follow-item:hover::after {
    opacity: 1;
}

.follow-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    animation: follow-icon-float 3.6s ease-in-out infinite;
}

@keyframes follow-icon-float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

.follow-label {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.2;
}

.follow-label small {
    font-size: 0.76rem;
    opacity: 0.85;
}

/* mini status inside label */
.follow-label-status {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.2rem;
    font-size: 0.72rem;
    color: #7a5d45;
}

.follow-label-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    display: inline-block;
}

.follow-label-dot--online {
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: follow-pulse 2s ease-out infinite;
}

.follow-label-dot--schedule {
    background: #fbbf24;
}

.follow-label-dot--calm {
    background: #4b5563;
}

.follow-label-dot--soft {
    background: #a855f7;
}

/* Colour accents per platform (kept subtle / brand-friendly) */
.follow-item--whatsapp .follow-icon-wrap {
    background: #e4f7eb;
    color: #128c7e;
}

.follow-item--phone .follow-icon-wrap {
    background: #e5eefc;
    color: #1d4ed8;
}

.follow-item--email .follow-icon-wrap {
    background: #ffeef2;
    color: #be185d;
}

.follow-item--instagram .follow-icon-wrap {
    background: radial-gradient(circle at 30% 30%, #fef3c7, #fdba74, #fb7185, #a855f7, #6366f1);
    color: #ffffff;
}

.follow-item--facebook .follow-icon-wrap {
    background: #e8f0ff;
    color: #1877f2;
}

.follow-item--linkedin .follow-icon-wrap {
    background: #e0f2ff;
    color: #0a66c2;
}

.follow-item--location .follow-icon-wrap {
    background: #e0f7ff;
    color: #0077b6;
}

/* Responsive */
@media (max-width: 991.98px) {
    .follow-strip {
        border-radius: 24px;
    }
}

@media (max-width: 575.98px) {
    .follow-section {
        padding: 45px 0;
    }

    .follow-strip {
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
    }

    .follow-item {
        justify-content: flex-start;
        width: 100%;
    }

    .follow-status-row {
        flex-direction: column;
        align-items: center;
    }
}

/* FLOATING WHATSAPP BUTTON */

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(15, 118, 110, 0.45);
    overflow: hidden;
    transition:
        transform 0.2s ease-out,
        box-shadow 0.2s ease-out,
        opacity 0.2s ease-out;
    font-size: 0.9rem;
    opacity: 0.98;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.55);
    opacity: 1;
}

.floating-whatsapp-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #e4f7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #128c7e;
    animation: wa-bounce 2.8s ease-in-out infinite;
}

.floating-whatsapp-label {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
    padding-right: 0.2rem;
}

.floating-whatsapp-label span {
    font-size: 0.72rem;
    opacity: 0.9;
}

/* Small devices: make it more compact */
@media (max-width: 575.98px) {
    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 0.55rem 0.7rem;
    }

    .floating-whatsapp-label {
        display: none; /* icon only on very small screens */
    }
}

/* Gentle attention animation */
@keyframes wa-bounce {
    0%   { transform: translateY(0); }
    40%  { transform: translateY(-3px); }
    60%  { transform: translateY(0); }
    80%  { transform: translateY(-1px); }
    100% { transform: translateY(0); }
}

/* ===== FOOTER ===== */
.footer-top {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  padding: 40px 0 30px;
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-contact-text {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  padding-bottom: 1px;
}

.footer-link:hover {
  text-decoration: none;
  border-bottom-style: solid;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  padding-left: 14px;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* footer logo */
.footer-logo-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  background: transparent;
  animation: logoRotate 14s linear infinite;
  padding: 0;
}

@keyframes logoRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.footer-tagline-small {
  margin-top: 8px;
  font-size: 0.9rem;
  opacity: 0.95;
}

.main-footer {
  padding: 15px 0;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .footer-top {
    text-align: center;
  }

  .footer-links a {
    padding-left: 0;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-logo-wrap {
    margin-top: 10px;
  }
}

/* ===== GLOBAL RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 992px) {
  .home-section {
    padding-top: 90px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 85px;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px 15px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
  }

  section {
    padding: 60px 0;
  }

  .home-section {
    padding-top: 90px;
  }
}

/* ===== FOOTER TAGLINE HIGHLIGHT ===== */

.footer-tagline-highlight {
    background: linear-gradient(135deg, #f7f3e9, #fffaf2);
    border-left: 4px solid #c9a24d;
    padding: 16px 18px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-tagline-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.footer-tagline-highlight .tagline-quote {
    font-size: 18px;
    font-weight: 700;
    color: #4a3f2a;
    margin-bottom: 6px;
}

.footer-tagline-highlight .tagline-text {
    font-size: 14px;
    letter-spacing: 0.6px;
    color: #7a6b4f;
    margin: 0;
}
