/* ============================================
   Offinso Fine Flavour Cocoa Cooperative
   Main Stylesheet — Based on Villa Agency Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700;800&display=swap');

/* ============ CSS Variables ============ */
:root {
  --cocoa-primary: #8B3A2A;
  --cocoa-secondary: #C9A84C;
  --cocoa-dark: #2C1810;
  --cocoa-cream: #FBF5E6;
  --cocoa-brown: #5C3317;
  --cocoa-light: #F5E6D3;
  --cocoa-green: #4A7C59;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --shadow-sm: 0 2px 15px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 8px 30px rgba(44, 24, 16, 0.15);
  --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.25);
  --border-radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ Reset & Base ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--cocoa-dark);
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ============ Preloader ============ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cocoa-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 100px;
  height: 100px;
  animation: pulseSpin 1.5s ease-in-out infinite;
}

@keyframes pulseSpin {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.7;
  }

  100% {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
}

/* ============ Top Bar ============ */
.top-bar {
  background: var(--cocoa-dark);
  padding: 8px 0;
  border-bottom: 2px solid var(--cocoa-primary);
}

.top-bar .info-list {
  display: flex;
  gap: 25px;
}

.top-bar .info-list li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-bar .info-list li i {
  color: var(--cocoa-secondary);
}

.top-bar .info-list li a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar .info-list li a:hover {
  color: var(--cocoa-secondary);
}

.top-bar .social-list {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.top-bar .social-list a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  transition: var(--transition);
}

.top-bar .social-list a:hover {
  background: var(--cocoa-secondary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============ Navbar ============ */
.main-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 0;
}

.main-navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand img.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.navbar-brand .brand-text h5 {
  padding-top: 5px;
  font-size: 17px;
  font-weight: 700;
  color: var(--cocoa-primary);
  line-height: 0.5;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar-brand .brand-text span {
  font-size: 10px;
  color: var(--cocoa-secondary);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav-links li a {
  display: block;
  padding: 28px 16px;
  color: var(--cocoa-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.main-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--cocoa-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.main-nav-links li a:hover,
.main-nav-links li a.active {
  color: var(--cocoa-primary);
}

.main-nav-links li a:hover::after,
.main-nav-links li a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px !important;
  background: var(--cocoa-primary) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  margin-left: 10px;
  box-shadow: 0 4px 15px rgba(139, 58, 42, 0.35);
  transition: var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--cocoa-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 58, 42, 0.45) !important;
}

.navbar-toggler {
  border: none;
  padding: 5px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cocoa-dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* ============ Hero Slider ============ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(44, 24, 16, 0.75) 0%,
      rgba(139, 58, 42, 0.5) 50%,
      rgba(44, 24, 16, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--cocoa-secondary);
  color: var(--cocoa-secondary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 em {
  font-style: normal;
  color: var(--cocoa-secondary);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 35px;
  max-width: 520px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--cocoa-primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(139, 58, 42, 0.5);
  transition: var(--transition);
  margin-right: 15px;
  margin-bottom: 15px;
}

.btn-hero-primary:hover {
  background: var(--cocoa-secondary);
  color: var(--cocoa-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.5);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  margin-bottom: 15px;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
  backdrop-filter: blur(4px);
}

/* Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  opacity: 1;
  transition: var(--transition);
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
  background: var(--cocoa-primary);
}

.hero-section .carousel-control-prev {
  left: 20px;
}

.hero-section .carousel-control-next {
  right: 20px;
}

.hero-section .carousel-indicators {
  bottom: 30px;
  gap: 8px;
}

.hero-section .carousel-indicators button {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: var(--transition);
}

.hero-section .carousel-indicators button.active {
  background: var(--cocoa-secondary);
  width: 50px;
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-hint .arrow-down {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  animation: bounce 1.5s ease infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* ============ Section Styles ============ */
.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cocoa-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--cocoa-primary), var(--cocoa-secondary));
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--cocoa-dark);
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 580px;
  line-height: 1.8;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--cocoa-primary), var(--cocoa-secondary));
  border-radius: 2px;
  margin: 16px 0 24px;
}

.section-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ============ Stats Strip ============ */
.stats-strip {
  background: linear-gradient(135deg, var(--cocoa-dark) 0%, var(--cocoa-primary) 100%);
  padding: 50px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--cocoa-secondary);
  display: block;
  line-height: 1;
}

.stat-item .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  display: block;
}

.stat-item .stat-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 10px;
}

/* ============ About / Featured Section ============ */
.about-section {
  background: var(--cocoa-cream);
}

.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.03);
}

.about-img-wrapper .img-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--cocoa-primary);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.about-img-wrapper .img-badge .years {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--cocoa-secondary);
  line-height: 1;
}

.about-img-wrapper .img-badge span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
}

.about-content {
  padding-left: 40px;
}

.feature-list {
  margin-top: 30px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.feature-list li .feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cocoa-primary), var(--cocoa-brown));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(139, 58, 42, 0.3);
}

.feature-list li .feat-text h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--cocoa-dark);
  font-family: 'Poppins', sans-serif;
}

.feature-list li .feat-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* ============ Products Section ============ */
.products-section {
  background: var(--white);
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card .product-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-card .product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--cocoa-primary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-card .product-body {
  padding: 25px;
}

.product-card .product-body h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--cocoa-dark);
}

.product-card .product-body p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.7;
}

.product-card .product-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--cocoa-light);
  padding-top: 18px;
  margin-top: 5px;
}

.product-card .product-meta li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.product-card .product-meta li span {
  font-weight: 600;
  color: var(--cocoa-primary);
}

.product-card .product-footer {
  padding: 0 25px 25px;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--cocoa-primary), var(--cocoa-brown));
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(139, 58, 42, 0.3);
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.btn-product:hover {
  background: linear-gradient(135deg, var(--cocoa-dark), var(--cocoa-primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 58, 42, 0.5);
  color: var(--white);
}

/* ============ Accordion / Why Us ============ */
.whyus-section {
  background: var(--cocoa-cream);
}

.whyus-section .accordion-item {
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(139, 58, 42, 0.15);
}

.whyus-section .accordion-button {
  background: transparent;
  font-weight: 600;
  color: var(--cocoa-dark);
  font-size: 16px;
  box-shadow: none;
  padding: 18px 0;
}

.whyus-section .accordion-button:not(.collapsed) {
  color: var(--cocoa-primary);
  background: transparent;
  box-shadow: none;
}

.whyus-section .accordion-button::after {
  filter: hue-rotate(30deg) saturate(2);
}

.whyus-section .accordion-body {
  color: var(--text-muted);
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.8;
}

/* ============ Video Section ============ */
.video-section {
  position: relative;
  min-height: 500px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 24, 16, 0.7) 0%, rgba(139, 58, 42, 0.6) 100%);
}

.video-section .section-content {
  position: relative;
  z-index: 2;
}

.video-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.video-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 30px;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cocoa-secondary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  box-shadow: 0 0 0 12px rgba(201, 168, 76, 0.25), 0 0 0 25px rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}

.play-btn:hover {
  background: var(--cocoa-primary);
  color: var(--white);
  transform: scale(1.1);
}

/* ============ Process Timeline ============ */
.process-section {
  background: var(--white);
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-step .step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cocoa-primary), var(--cocoa-secondary));
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(139, 58, 42, 0.35);
  font-family: 'Playfair Display', serif;
}

.process-step .step-icon {
  font-size: 2.5rem;
  color: var(--cocoa-primary);
  margin-bottom: 15px;
  display: block;
}

.process-step h5 {
  font-size: 18px;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--cocoa-dark);
}

.process-step p {
  color: var(--text-muted);
  font-size: 14px;
}

.process-connector {
  position: absolute;
  top: 30px;
  right: -40px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--cocoa-primary), var(--cocoa-secondary));
}

/* ============ Certifications / Partners ============ */
.certifications-section {
  background: var(--cocoa-cream);
  padding: 60px 0;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 15px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.cert-item i {
  font-size: 2.5rem;
  color: var(--cocoa-secondary);
  margin-bottom: 12px;
}

.cert-item h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--cocoa-dark);
  font-family: 'Poppins', sans-serif;
}

/* ============ Testimonials ============ */
.testimonials-section {
  background: var(--white);
}

.testimonial-card {
  background: var(--cocoa-cream);
  border-radius: 20px;
  padding: 35px;
  border-left: 5px solid var(--cocoa-primary);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-card .quote-icon {
  color: var(--cocoa-secondary);
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text-muted);
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cocoa-primary);
}

.testimonial-card .author-info h6 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 3px;
  color: var(--cocoa-dark);
  font-family: 'Poppins', sans-serif;
}

.testimonial-card .author-info span {
  font-size: 12px;
  color: var(--cocoa-primary);
  font-weight: 500;
}

.stars {
  color: var(--cocoa-secondary);
  font-size: 13px;
  margin-bottom: 4px;
}

/* ============ Contact Section ============ */
.contact-section {
  background: var(--cocoa-cream);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--cocoa-dark) 0%, var(--cocoa-primary) 100%);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  font-size: 14px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.contact-detail .detail-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cocoa-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail .detail-text h6 {
  color: var(--cocoa-secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 4px;
  font-family: 'Poppins', sans-serif;
}

.contact-detail .detail-text p,
.contact-detail .detail-text a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
}

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-form-card h3 {
  color: var(--cocoa-dark);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--cocoa-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.form-control {
  border: 2px solid var(--cocoa-light);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-dark);
}

.form-control:focus {
  border-color: var(--cocoa-primary);
  box-shadow: 0 0 0 3px rgba(139, 58, 42, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: #bbb;
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, var(--cocoa-primary), var(--cocoa-brown));
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(139, 58, 42, 0.35);
  width: 100%;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--cocoa-dark), var(--cocoa-primary));
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 58, 42, 0.5);
}

/* ============ Map ============ */
#map iframe {
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius);
  border: none;
  box-shadow: var(--shadow-sm);
}

/* ============ Footer ============ */
footer {
  background: var(--cocoa-dark);
  padding-top: 70px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo img {
  width: 80px;
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--cocoa-secondary);
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-heading {
  color: var(--cocoa-secondary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--cocoa-primary), var(--cocoa-secondary));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--cocoa-secondary);
  padding-left: 5px;
}

.footer-links li a i {
  font-size: 11px;
  color: var(--cocoa-secondary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--cocoa-secondary);
  font-size: 14px;
  margin-top: 3px;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item a:hover {
  color: var(--cocoa-secondary);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--cocoa-primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
}

/* ============ Page Specific: About Page ============ */
.page-banner {
  background: linear-gradient(135deg, var(--cocoa-dark) 0%, var(--cocoa-primary) 60%, var(--cocoa-brown) 100%);
  padding: 100px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-1.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.page-banner .banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 15px;
}

.page-banner .breadcrumb {
  justify-content: center;
  background: transparent;
}

.page-banner .breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.page-banner .breadcrumb-item a {
  color: var(--cocoa-secondary);
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

.page-banner .breadcrumb-item.active {
  color: var(--white);
}

/* ============ Team Cards ============ */
.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card .team-img {
  height: 260px;
  overflow: hidden;
}

.team-card .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-card .team-body {
  padding: 25px;
}

.team-card .team-body h5 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--cocoa-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.team-card .team-body .role {
  color: var(--cocoa-primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.team-card .team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-card .team-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--cocoa-light);
  color: var(--cocoa-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}

.team-card .team-social a:hover {
  background: var(--cocoa-primary);
  color: var(--white);
}

/* ============ Back to Top ============ */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--cocoa-primary);
  color: var(--white);
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(139, 58, 42, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: var(--cocoa-dark);
  transform: translateY(-3px);
}

/* ============ Utility ============ */
.text-cocoa {
  color: var(--cocoa-primary);
}

.text-gold {
  color: var(--cocoa-secondary);
}

.bg-cocoa {
  background: var(--cocoa-cream);
}

.border-cocoa {
  border-color: var(--cocoa-primary) !important;
}

.btn-primary-cocoa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--cocoa-primary), var(--cocoa-brown));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(139, 58, 42, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary-cocoa:hover {
  background: linear-gradient(135deg, var(--cocoa-dark), var(--cocoa-primary));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 58, 42, 0.5);
  color: var(--white);
}

.btn-outline-cocoa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--cocoa-primary);
  border: 2px solid var(--cocoa-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.btn-outline-cocoa:hover {
  background: var(--cocoa-primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============ Responsive ============ */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .main-nav-links li a {
    padding: 12px 0;
  }

  .main-nav-links li a::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .top-bar .info-list {
    flex-direction: column;
    gap: 8px;
  }

  .section {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .contact-info-card,
  .contact-form-card {
    border-radius: 16px;
  }
}

@media (max-width: 575px) {

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .footer-social {
    flex-wrap: wrap;
  }
}

/* ============ Animations ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============ Gallery Styling ============ */
.gallery-filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.gallery-filter-btn {
  background: transparent;
  border: 2px solid var(--cocoa-light);
  color: var(--text-dark);
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--cocoa-primary);
  border-color: var(--cocoa-primary);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(139, 58, 42, 0.25);
  transform: translateY(-2px);
}

.gallery-grid {
  transition: opacity 0.4s ease;
}

.gallery-item {
  transition: all 0.4s ease-in-out;
}

.gallery-item.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.85);
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--cocoa-dark);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery-card:hover img {
  transform: scale(1.08) rotate(1deg);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.9) 0%, rgba(139, 58, 42, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--cocoa-secondary);
  color: var(--cocoa-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: translateY(-15px) scale(0.8);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-overlay-icon {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gallery-overlay h5 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 5px;
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

.gallery-overlay span {
  color: var(--cocoa-secondary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(15px);
  transition: transform 0.4s ease 0.05s;
}

.gallery-card:hover .gallery-overlay h5,
.gallery-card:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ============ Lightbox Modal Styling ============ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.95);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox-modal.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  z-index: 10;
}

.lightbox-close:hover {
  color: var(--cocoa-secondary);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--cocoa-primary);
  border-color: var(--cocoa-primary);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-content {
  max-width: 85%;
  max-height: 80%;
  text-align: center;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-modal.show .lightbox-content img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption {
  color: var(--white);
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    right: 20px;
    top: 20px;
    font-size: 32px;
  }
}

/* ============ Blog Styling ============ */
.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.06);
}

.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--cocoa-primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.blog-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-list {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-meta-list li i {
  color: var(--cocoa-primary);
  margin-right: 5px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-title a {
  color: var(--cocoa-dark);
}

.blog-title a:hover {
  color: var(--cocoa-primary);
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-read-more {
  font-weight: 700;
  font-size: 13px;
  color: var(--cocoa-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-read-more i {
  transition: transform 0.25s ease;
}

.blog-read-more:hover {
  color: var(--cocoa-dark);
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* Featured Blog Post Card (Large) */
.featured-blog-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 40px;
}

.featured-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.featured-blog-card .post-img-col {
  position: relative;
  min-height: 320px;
}

@media (min-width: 992px) {
  .featured-blog-card .post-img-col {
    height: 100%;
  }
}

.featured-blog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.widget-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--cocoa-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cocoa-light);
}

.category-list li {
  margin-bottom: 12px;
}

.category-list li:last-child {
  margin-bottom: 0;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
}

.category-list li a:hover {
  color: var(--cocoa-primary);
  padding-left: 5px;
}

.category-list li a span {
  background: var(--cocoa-cream);
  color: var(--cocoa-primary);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.recent-posts-widget .recent-post-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.recent-posts-widget .recent-post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .recent-post-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.recent-posts-widget .recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-posts-widget .recent-post-info h6 {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 5px;
}

.recent-posts-widget .recent-post-info h6 a {
  color: var(--cocoa-dark);
}

.recent-posts-widget .recent-post-info h6 a:hover {
  color: var(--cocoa-primary);
}

.recent-posts-widget .recent-post-info span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ============ Blog Details Layout ============ */
.post-details-header {
  margin-bottom: 30px;
}

.post-details-header .post-meta {
  display: flex;
  gap: 15px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-weight: 500;
}

.post-details-header .post-meta li i {
  color: var(--cocoa-primary);
  margin-right: 5px;
}

.post-details-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--cocoa-dark);
}

.post-featured-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.post-featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.post-content-body {
  font-size: 16px;
  line-height: 1.85;
  color: #4a4a4a;
}

.post-content-body p {
  margin-bottom: 25px;
}

.post-content-body blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cocoa-primary);
  border-left: 4px solid var(--cocoa-secondary);
  padding: 10px 0 10px 25px;
  margin: 35px 0;
  background: var(--cocoa-cream);
  border-radius: 0 16px 16px 0;
}

.post-content-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: var(--cocoa-dark);
}

.post-tags-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--cocoa-light);
  border-bottom: 1px solid var(--cocoa-light);
  padding: 20px 0;
  margin: 40px 0;
}

.post-tags-share .tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.post-tags-share .tags span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.post-tags-share .tags a {
  background: var(--cocoa-cream);
  color: var(--cocoa-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.post-tags-share .tags a:hover {
  background: var(--cocoa-primary);
  color: var(--white);
}

.post-tags-share .share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-tags-share .share span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.post-tags-share .share a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cocoa-cream);
  color: var(--cocoa-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}

.post-tags-share .share a:hover {
  background: var(--cocoa-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Author Box */
.author-box {
  background: var(--cocoa-cream);
  border-radius: 24px;
  padding: 35px;
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 50px;
}

.author-avatar-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

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

.author-bio h5 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 700;
}

.author-bio span {
  font-size: 12px;
  color: var(--cocoa-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 10px;
}

.author-bio p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 575px) {
  .author-box {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
}

/* Comments Section */
.post-comments-wrapper h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  border-left: 4px solid var(--cocoa-primary);
  padding-left: 15px;
  color: var(--cocoa-dark);
}

.comments-list {
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
}

.comment-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.comment-item:last-child {
  margin-bottom: 0;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cocoa-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-avatar i {
  font-size: 22px;
  color: var(--cocoa-primary);
}

.comment-body {
  background: #fdfcfa;
  border: 1px solid var(--cocoa-light);
  border-radius: 16px;
  padding: 20px 25px;
  position: relative;
  flex-grow: 1;
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comment-meta h6 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.comment-meta span {
  font-size: 11px;
  color: var(--text-muted);
}

.comment-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.comment-reply-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--cocoa-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comment-reply-btn:hover {
  color: var(--cocoa-dark);
}

@media (max-width: 575px) {
  .comment-item {
    flex-direction: column;
    gap: 10px;
  }
}

/* Post Pagination */
.post-navigation {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--cocoa-light);
  padding: 25px 0 0;
  margin-top: 40px;
}

.post-nav-link {
  max-width: 48%;
}

.post-nav-link span {
  font-size: 11px;
  font-weight: 700;
  color: var(--cocoa-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}

.post-nav-link h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.post-nav-link h6 a {
  color: var(--cocoa-dark);
}

.post-nav-link h6 a:hover {
  color: var(--cocoa-primary);
}

.post-nav-link.next-link {
  text-align: right;
}
