/* CSS Variables - Updated Color Palette */
:root {
    /* Primary Colors */
    --primary-color: #2d2d2d;
    --secondary-color: #9e482f;  /* Updated to new reddish-brown */
    --accent-color: #6ba34a;
    
    /* Background Colors */
    --dark-bg: #2d2d2d;
    --medium-bg: #f0f0f0;
    --light-bg: #ffffff;
    
    /* Text Colors */
    --text-dark: #1c1c1c;
    --text-light: #555555;
    --text-lighter: #aaaaaa;
    --white: #ffffff;
    
    /* Utility */
    --transition-standard: all 0.3s ease;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 15px;
    
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 3px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for fixed navbar */
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
}

p {
  margin-bottom: 1.2rem;
}

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

a:hover {
  color: var(--accent-color);
}

section {
  position: relative;
  padding: 5rem 0;
}

.section-padding-lg {
  padding: 7rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

.text-accent {
  color: var(--accent-color);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--light-bg);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

/* Default: dark text for logo and nav links */
.navbar .navbar-brand {
    color: #2d2d2d !important;
}

.navbar .nav-link {
    color: #2d2d2d !important;
    font-weight: 500;
    transition: var(--transition-standard);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #9e482f !important;
}

/* When scrolled: white text for logo and nav links */
.navbar.scrolled {
    background: rgba(45, 45, 45, 0.98) !important;
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .navbar-nav .nav-link {
    color: var(--white) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: #6ba34a !important;
}

/* Add this new style for logo when scrolled */
.navbar.scrolled .navbar-brand .logo-image {
    /* Adjust the image to be white when scrolled */
    filter: brightness(0) invert(1);
}

.navbar.scrolled {
  background: rgba(45, 45, 45, 0.98) !important;
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
}

.navbar-brand .logo-image {
  height: 45px;
  margin-right: 0.5rem;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  position: relative;
  letter-spacing: 0.5px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--accent-color);
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-standard);
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 70%;
}

.nav-link {
    /* Remove forced white color here */
    font-weight: 500;
    transition: var(--transition-standard);
    padding: 0.5rem 1rem !important;
}

.nav-link:hover, 
.nav-link.active {
    color: #9e482f !important;
}

.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(16, 71, 35, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 50px;
  color: var(--white);
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/spices-2.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
      rgba(45, 45, 45, 0.95) 0%, 
      rgba(45, 45, 45, 0.85) 50%,
      rgba(45, 45, 45, 0.8) 100%);
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Add a pattern overlay for extra texture */
.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM36 0V4h-2V0h-4v4h4v4h2V4h4zm-30 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.hero-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--dark-bg);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-content {
  padding-right: 2rem;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--white);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-title .text-accent {
  color: var(--accent-color);
  display: block;
  font-size: 110%;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.9;
  max-width: 600px;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero-stats {
  display: flex;
  margin-bottom: 2rem;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.stat-item {
  margin-right: 2rem;
  position: relative;
}

.stat-item:not(:last-child):after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 10px;
  height: 40px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.8;
}

.hero-cta {
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1s;
}

.hero-cta .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.hero-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-accent {
  background: var(--accent-color);
  border: none;
  color: var(--dark-bg);
}

.hero-cta .btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
}

.hero-cta .btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Spice Cards */
.spice-showcase {
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.2s;
  height: 400px;
}

.spice-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 180px;
  transition: all 0.3s ease;
}

.spice-card:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 4;
  animation: float 6s ease-in-out infinite;
}

.spice-card:nth-child(2) {
  top: 30px;
  right: 0;
  z-index: 3;
  animation: float 6s ease-in-out infinite 1.5s;
}

.spice-card:nth-child(3) {
  bottom: 100px;
  left: 20px;
  z-index: 2;
  animation: float 6s ease-in-out infinite 3s;
}

.spice-card:nth-child(4) {
  bottom: 30px;
  right: 20px;
  z-index: 1;
  animation: float 6s ease-in-out infinite 4.5s;
}

.spice-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.spice-image {
  height: 120px;
  width: 100%;
  object-fit: cover;
}

.spice-card-body {
  padding: 1rem;
  border-top: 3px solid var(--accent-color);
  background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,1));
}

.spice-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.spice-origin {
  color: var(--text-light);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.spice-origin i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Hero */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .spice-showcase {
    height: 350px;
  }
  
  .spice-card {
    width: 160px;
  }
  
  .spice-image {
    height: 100px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    margin: 0 auto 2rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .spice-showcase {
    height: 300px;
    margin: 0 auto;
    max-width: 400px;
  }
  
  .spice-card:nth-child(1) {
    top: 0;
    left: 0;
  }
  
  .spice-card:nth-child(2) {
    top: 0;
    right: 0;
  }
  
  .spice-card:nth-child(3) {
    bottom: 0;
    left: 0;
  }
  
  .spice-card:nth-child(4) {
    bottom: 0;
    right: 0;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .spice-showcase {
    height: 280px;
    max-width: 320px;
  }
  
  .spice-card {
    width: 140px;
  }
  
  .spice-image {
    height: 90px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .stat-item {
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    flex-basis: 45%;
  }
  
  .stat-item:not(:last-child):after {
    display: none;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .spice-showcase {
    max-width: 100%;
    height: 220px;
  }
  
  .spice-card {
    width: 120px;
  }
  
  .spice-image {
    height: 70px;
  }
  
  .spice-title {
    font-size: 0.9rem;
  }
  
  .spice-origin {
    font-size: 0.75rem;
  }
  
  .hero-cta .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Hero Container Override */
.hero-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color);
  transform-origin: 0%;
  z-index: 1000;
}

/* Redesigned Footer Styles */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-top {
    padding: 5rem 0 3rem;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM36 0V4h-2V0h-4v4h4v4h2V4h4zm-30 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.footer-widget {
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-standard);
}

.footer-logo:hover {
    color: var(--accent-color);
}

/* Footer Logo Image */
.footer-logo-image {
    filter: brightness(0) invert(1); /* Makes the image white */
}

.footer-text {
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-tertiary));
    border-radius: 10px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-lighter);
    transition: var(--transition-standard);
    text-decoration: none;
    display: inline-block;
    padding: 2px 0;
    font-size: 0.95rem;
}

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

.footer-links a i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 0.75rem;
    transition: var(--transition-standard);
    font-size: 1rem;
    text-decoration: none;
}

.footer-social-link:hover {
    background: #d05d40;
    color: var(--dark-bg);
    transform: translateY(-3px);
}

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

.footer-contact li {
    display: flex;
    margin-bottom: 1.25rem;
    color: var(--text-lighter);
}

.footer-contact li i {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
    margin-top: 4px;
}

.footer-contact li div {
    display: flex;
    flex-direction: column;
}

.footer-contact a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: var(--transition-standard);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-newsletter .form-control {
    background-color: rgba(255, 255, 255, 0.08);
    border: none;
    height: 46px;
    color: var(--white);
    border-radius: 30px 0 0 30px;
}

.footer-newsletter .form-control:focus {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.12);
}

.footer-newsletter .form-control::placeholder {
    color: var(--text-lighter);
}

.footer-newsletter .btn {
    border-radius: 0 30px 30px 0;
    height: 46px;
    padding: 0 20px;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    margin: 0;
    background: rgba(0, 0, 0, 0.1);
}

.copyright {
    color: var(--text-lighter);
}

.footer-bottom-links a {
    color: var(--text-lighter);
    margin-left: 1.5rem;
    text-decoration: none;
    transition: var(--transition-standard);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Redesigned About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Image Area Styling */
.about-image-container {
    position: relative;
    padding: 2rem 0;
}

.about-shape {
    position: absolute;
    top: 0;
    left: -20px;
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, var(--accent-color) 0%, var(--accent-tertiary) 100%);
    opacity: 0.1;
    border-radius: 10px 60px 10px 60px;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.7s ease;
}

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

.about-year {
    position: absolute;
    top: 30px;
    right: 20px;
    background: var(--accent-color);
    color: var(--dark-bg);
    font-weight: 700;
    padding: 1.5rem;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.about-year span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-year strong {
    font-size: 1.6rem;
    line-height: 1;
}

.about-impact {
    position: absolute;
    bottom: -30px;
    left: 50px;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 3;
    display: flex;
    gap: 2rem;
}

.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-tertiary);
}

.impact-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Content Area Styling */
.about-content {
    padding: 2rem 0 2rem 2rem;
    position: relative;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(26, 123, 158, 0.08);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
}

.highlight-item i {
    color: var(--accent-tertiary);
}

.highlight-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.vision-mission-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--medium-bg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
}

.vision-mission-card.vision::before {
    background: var(--accent-color);
}

.vision-mission-card.mission::before {
    background: var(--accent-tertiary);
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-icon {
    background: rgba(26, 123, 158, 0.08);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.vision-mission-card.vision .card-icon i {
    color: var(--accent-color);
}

.vision-mission-card.mission .card-icon i {
    color: var(--accent-tertiary);
}

.card-content h4 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

/* Objectives Section */
.objectives-section {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.05), rgba(45, 45, 45, 0.1));
    padding: 5rem 0;
}
.objective-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    height: 100%;
    transition: var(--transition-standard);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}
.objective-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-color);
}
.objective-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition-standard);
}
.objective-card:hover .objective-icon {
    color: var(--accent-color);
}
.objective-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Activities Section Styles */
.activities-section {
    background: linear-gradient(135deg, rgba(16, 71, 35, 0.03) 0%, rgba(16, 71, 35, 0.01) 100%);
}

.activity-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.activity-card.featured {
    background: linear-gradient(145deg, #2d2d2d 0%, #3a3a3a 100%);
    color: white;
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 71, 35, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.featured .activity-icon {
    background: rgba(255, 255, 255, 0.2);
}

.activity-icon i {
    font-size: 1.5rem;
    color: #104723;
}

.featured .activity-icon i {
    color: #fff;
}

.activity-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #104723;
}

.featured .activity-card h4 {
    color: #fff;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.activity-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #555;
}

.featured .activity-list li {
    color: rgba(255, 255, 255, 0.9);
}

.activity-list li i {
    color: #104723;
    font-size: 0.85rem;
}

.featured .activity-list li i {
    color: #ffd700;
}

.activity-stats {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}

.featured .activity-stats {
    border-top-color: rgba(255,255,255,0.2);
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #104723;
    line-height: 1;
}

.featured .stat-value {
    color: #fff;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
}

.featured .stat-label {
    color: rgba(255,255,255,0.8);
}

.activity-highlight {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 71, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: #104723;
}

.highlight-text {
    flex: 1;
}

.highlight-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #104723;
    margin-bottom: 1rem;
}

.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 71, 35, 0.05);
    border-radius: 30px;
    font-size: 0.9rem;
    color: #104723;
    font-weight: 500;
}

.highlight-tag i {
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .highlight-content {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-tags {
        justify-content: center;
    }
}

/* Responsive Activities Section */
@media (max-width: 1199.98px) {
  .activity-card {
    padding: 1.5rem;
  }
  
  .activity-icon {
    width: 50px;
    height: 50px;
  }
  
  .activity-card h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 991.98px) {
  .activities-section {
    padding: 4rem 0;
  }
  
  .activity-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .activity-card {
    padding: 1rem;
  }
  
  .activity-icon {
    width: 40px;
    height: 40px;
  }
  
  .activity-card h4 {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .activity-card {
    padding: 0.8rem;
  }
  
  .activity-icon {
    width: 35px;
    height: 35px;
  }
  
  .activity-card h4 {
    font-size: 0.9rem;
  }
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.05), rgba(45, 45, 45, 0.1));
    padding: 5rem 0;
}
.team-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-standard);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}
.team-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}
.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}
.team-card:hover .team-image {
    transform: scale(1.1);
}
.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 45, 45, 0.9), transparent);
    padding: 2rem 1.5rem 1rem;
}
.team-name {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}
.team-role {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
}
.team-body {
    padding: 2rem;
    flex: 1 1 auto;
}
.team-bio {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Modern Team Cards */
.team-card-modern {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.team-card-modern:hover {
    transform: translateY(-5px);
}

.role-indicator {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.role-indicator.chairperson { background: #FFD700; }
.role-indicator.trainer { background: #4CAF50; }
.role-indicator.marketing { background: #2196F3; }
.role-indicator.regional { background: #9C27B0; }

.team-content {
    position: relative;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #104723;
}

.team-role {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-divider {
    width: 40px;
    height: 2px;
    background: rgba(16, 71, 35, 0.1);
    margin: 1rem 0;
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.expertise-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(16, 71, 35, 0.05);
    color: #104723;
}

/* Membership Section Styles */
.membership-section {
    background: linear-gradient(135deg, rgba(16, 71, 35, 0.03) 0%, rgba(16, 71, 35, 0.01) 100%);
}

.membership-cards {
    position: relative;
}

.membership-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.membership-card.featured {
    background: linear-gradient(145deg, #104723 0%, #1a6937 100%);
    color: white;
}

.membership-header {
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
}

.featured .membership-header {
    border-bottom-color: rgba(255,255,255,0.2);
}

.membership-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #d05d40;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.membership-type {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #104723;
}

.featured .membership-type {
    color: #fff;
}

.membership-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.membership-price .currency {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
}

.membership-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #104723;
    line-height: 1;
}

.membership-price .period {
    font-size: 1rem;
    color: #666;
}

.featured .membership-price .currency,
.featured .membership-price .amount,
.featured .membership-price .period {
    color: #fff;
}

.benefit-group {
    margin-bottom: 2rem;
}

.benefit-group h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #104723;
    margin-bottom: 1rem;
}

.featured .benefit-group h4 {
    color: #fff;
}

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

.benefit-group li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.featured .benefit-group li {
    color: rgba(255,255,255,0.9);
}

.benefit-group li i {
    color: #104723;
    font-size: 0.9rem;
}

.featured .benefit-group li i {
    color: #ffd700;
}

.membership-action {
    margin-top: 2rem;
}

.membership-action .btn {
    border-radius: 50px;
    padding: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.featured .membership-action .btn {
    background: #fff;
    color: #104723;
}

.featured .membership-action .btn:hover {
    background: #ffd700;
    color: #104723;
}

@media (max-width: 991px) {
    .membership-card {
        margin-bottom: 2rem;
    }
}

/* Button Styles */
.btn-primary {
    background-color: #9e482f;
    border-color: #9e482f;
    color: #fff;
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
    background-color: #8a3e29 !important;
    border-color: #8a3e29 !important;
    color: #fff !important;
}

.btn-accent {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #104723;
}

.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active {
    background-color: #e6c200 !important;
    border-color: #e6c200 !important;
    color: #104723 !important;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Office Section Styles */
.office-section {
    padding: 5rem 0;
    background: var(--white);
}

.office-item {
    margin-bottom: 2rem;
}

.office-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.office-item p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.office-item a {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Social Connect Card */
.social-connect-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--medium-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-standard);
}

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

/* Why Choose TASPA Section Styles */
.why-choose-section {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.05) 0%, rgba(45, 45, 45, 0.02) 100%);
}

.choose-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.choose-card.highlight-card {
    border-top: 4px solid #104723;
}

.choose-card.center-card {
    border-top: 4px solid #ffd700;
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: rgba(16, 71, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.choose-icon i {
    font-size: 1.8rem;
    color: #104723;
}

.choose-icon.accent {
    background: rgba(255, 215, 0, 0.2);
}

.choose-icon.accent i {
    color: #ffd700;
}

.choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #104723;
}

.choose-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.choose-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.choose-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.choose-list li i {
    color: #104723;
    font-size: 1rem;
}

.choose-stat {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #104723;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.mini-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mini-card i {
    font-size: 2rem;
    color: #104723;
    margin-bottom: 1rem;
}

.mini-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #104723;
}

.mini-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Modern About Section Styles */
.about-section {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.03) 0%, rgba(45, 45, 45, 0.01) 100%);
    position: relative;
}

.about-content-wrapper {
    position: relative;
    padding: 2rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #104723;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.about-badge i {
    color: #ffd700;
}

.about-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #104723;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(16, 71, 35, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #104723;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #104723;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.about-mission-vision {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mission-vision-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.mission-vision-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mission-vision-card i {
    font-size: 1.5rem;
    color: #104723;
}

.mission-vision-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #104723;
    margin: 0;
}

.mission-vision-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.about-media {
    position: relative;
}

.about-image-grid {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-image {
    position: relative;
}

.main-image img {
    width: 100%;
    border-radius: 20px;
}

.stats-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #104723;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
}

.achievement-badges {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #104723;
    font-weight: 500;
}

.badge-item i {
    color: #104723;
}

@media (max-width: 991px) {
    .about-content-wrapper {
        padding: 0;
    }
    
    .stats-overlay {
        position: static;
        margin-top: 1.5rem;
        justify-content: center;
    }
    
    .achievement-badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }
}
