/* ============================================
   JOANKORF TRADING ENTERPRISE - Main Stylesheet
   ============================================ */

:root {
  --primary: #6300E2;
  --primary-light: #8E43F0;
  --primary-dark: #4A00A8;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --navy: #012155;
  --navy-light: #0A3A7A;
  --dark: #0B0E17;
  --dark-2: #141825;
  --white: #FFFFFF;
  --gray-50: #F8F9FC;
  --gray-100: #F3F1F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
  --gradient-hero: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 60%, var(--primary) 100%);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 8px 30px rgba(99, 0, 226, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;
}

/* ---- Base ---- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.3;
}

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; height: auto; }

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  position: relative;
  width: 80px; height: 80px;
}

.loader-inner {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--accent);
  border-right-color: var(--primary-light);
  animation: spin 1s linear infinite;
}

.loader span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Navbar ---- */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  z-index: 1000;
}

.navbar:not(.scrolled) {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(1, 33, 85, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
}

.text-accent { color: var(--accent) !important; }

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.navbar-toggler:focus { box-shadow: none; }

.toggler-icon {
  width: 25px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- Buttons ---- */
.btn-accent {
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-accent:hover::before {
  left: 100%;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
  color: var(--white);
}

.btn-outline-accent {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 0.65rem 2rem;
  font-weight: 600;
  background: transparent;
}

.btn-outline-accent:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ---- Hero Section ---- */
.hero-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 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-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-wrapper {
  position: relative;
}

.hero-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(142, 67, 240, 0.3) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-image-placeholder {
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.hero-image-placeholder i {
  font-size: 5rem;
  color: var(--accent);
}

.hero-image-placeholder span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 120px; }

/* ---- Page Hero ---- */
.page-hero {
  background: var(--gradient-hero);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
}

.page-hero.page-hero-sm {
  padding: 8rem 0 3rem;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 1rem;
}

.page-hero .breadcrumb-item a {
  color: var(--accent);
}

.page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Section Styling ---- */
.section-padding {
  padding: 6rem 0;
}

.section-badge {
  display: inline-block;
  background: rgba(99, 0, 226, 0.1);
  color: var(--primary);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Feature Cards ---- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--white);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.92rem;
  margin: 0;
}

/* ---- About Section ---- */
.about-image-grid {
  position: relative;
  padding: 1rem;
}

.about-img-placeholder {
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gray-500);
}

.about-img-placeholder i {
  font-size: 3rem;
  color: var(--primary-light);
}

.about-img-placeholder span {
  font-weight: 600;
  font-size: 0.9rem;
}

.about-img-placeholder.main-img {
  background: var(--gray-100);
  height: 350px;
  width: 100%;
}

.about-img-placeholder.secondary-img {
  background: var(--gradient);
  color: var(--white);
  height: 180px;
  width: 200px;
  position: absolute;
  bottom: -20px; right: -20px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder.secondary-img i {
  color: var(--white);
}

.experience-badge {
  position: absolute;
  top: 20px; left: -10px;
  background: var(--accent);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
  z-index: 2;
}

.exp-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.about-features { display: flex; flex-direction: column; gap: 0.75rem; }

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.about-feature-item i { font-size: 1.1rem; }

/* ---- Product Cards ---- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--gray-100);
}

.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.product-placeholder i {
  font-size: 3rem;
  color: var(--gray-300);
}

.product-placeholder.large {
  height: 400px;
  border-radius: var(--radius-lg);
}

.product-badge {
  position: absolute;
  top: 15px; left: 15px;
  background: #EF4444;
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-badge.featured {
  background: var(--accent);
}

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-name {
  font-size: 1.15rem;
  margin: 0.5rem 0;
  font-weight: 700;
}

.product-desc {
  color: var(--gray-500);
  font-size: 0.88rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.price-current {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.price-old {
  font-size: 0.9rem;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

/* Product Detail */
.product-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-category-badge {
  display: inline-block;
  background: rgba(99, 0, 226, 0.1);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.product-detail-name {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.product-detail-price {
  margin-bottom: 1.5rem;
}

.product-detail-price .price-current {
  font-size: 2rem;
}

.product-detail-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

/* ---- Value Section ---- */
.value-section {
  background: var(--gradient-hero);
  color: var(--white);
}

.value-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.value-icon {
  width: 65px; height: 65px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  color: var(--accent);
}

.value-card h5 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin: 0;
}

/* ---- Promo Banner ---- */
.promo-section {
  padding: 4rem 0;
}

.promo-banner {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.promo-banner h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.promo-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin: 0;
}

/* ---- Ingredient Cards ---- */
.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.ingredient-card:hover {
  transform: translateY(-8px) rotateY(5deg);
  box-shadow: var(--shadow-lg);
}

.ingredient-icon {
  width: 70px; height: 70px;
  border-radius: var(--radius);
  background: rgba(99, 0, 226, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.ingredient-card:hover .ingredient-icon {
  background: var(--gradient);
  color: var(--white);
  transform: rotate(10deg);
}

.ingredient-card h5 { margin-bottom: 0.5rem; }

.ingredient-card p {
  color: var(--gray-500);
  font-size: 0.88rem;
  margin: 0;
}

/* ---- FAQ ---- */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  padding: 1.2rem 1.5rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(99, 0, 226, 0.05);
  color: var(--primary);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236300E2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  color: var(--gray-600);
  padding: 0 1.5rem 1.2rem;
  font-size: 0.95rem;
}

/* ---- Testimonials ---- */
.testimonials-swiper {
  padding-bottom: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  height: 100%;
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.testimonial-stars i { margin-right: 2px; }

.testimonial-card p {
  color: var(--gray-600);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.testimonial-author h6 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-author small {
  color: var(--gray-500);
}

.swiper-pagination-bullet {
  background: var(--primary);
  width: 10px; height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* ---- Team ---- */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  height: 250px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  overflow: hidden;
}

.team-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--gray-300);
}

.team-info {
  padding: 1.5rem;
}

.team-info h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.team-bio {
  color: var(--gray-500);
  font-size: 0.88rem;
  margin: 0.75rem 0;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.team-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 0.85rem;
}

.team-social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ---- Vision/Mission ---- */
.vision-mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: var(--transition);
}

.vision-mission-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.vision-mission-card.mission {
  border-top: 4px solid var(--accent);
}

.vm-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(99, 0, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.vision-mission-card.mission .vm-icon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
}

.vision-mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vision-mission-card p {
  color: var(--gray-600);
  font-size: 1rem;
  margin: 0;
}

/* ---- Newsletter ---- */
.newsletter-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: var(--white);
}

.newsletter-box h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.75rem 1.2rem;
  border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn-accent {
  border-radius: 0 50px 50px 0;
  padding: 0.75rem 2rem;
}

/* ---- Contact Page ---- */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(99, 0, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-info-card h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 0, 226, 0.1);
  background: var(--white);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 5rem;
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -1px; left: 0; right: 0;
  color: var(--navy);
  line-height: 0;
}

.footer-wave svg { width: 100%; height: 80px; }

.footer-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--accent);
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0; margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 0.2rem;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: var(--accent);
}

/* ---- Back to Top ---- */
#backToTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-accent);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-5px);
}

/* ---- Animations ---- */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Particle animations */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ---- Mobile Sidebar ---- */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  height: 100dvh;
  background: var(--navy);
  z-index: 1050;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-sidebar.open {
  right: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-header .brand-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
}

.sidebar-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.sidebar-nav {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  flex: 1;
}

.sidebar-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.sidebar-nav li a i {
  width: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--accent);
  opacity: 0.7;
  transition: var(--transition);
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  padding-left: 1.75rem;
}

.sidebar-nav li a:hover i,
.sidebar-nav li a.active i {
  opacity: 1;
}

.sidebar-cta {
  padding: 0 1.5rem 1rem;
}

.sidebar-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.sidebar-footer p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.sidebar-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.sidebar-footer .social-links a {
  width: 34px;
  height: 34px;
  font-size: 0.8rem;
}

/* Hamburger animation when sidebar open */
.navbar-toggler.active .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler.active .toggler-icon:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.active .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Prevent body scroll when sidebar open */
body.sidebar-open {
  overflow: hidden;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-title { font-size: 2.5rem; }
  .hero-stats { gap: 1.5rem; }
  .section-title { font-size: 2rem; }
  .section-padding { padding: 4rem 0; }
  .hero-image-placeholder { width: 280px; height: 280px; }
  .page-hero h1 { font-size: 2.2rem; }
  .promo-banner { padding: 2.5rem; }

  .hero-section .row {
    padding-top: 5rem;
  }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-stats {
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .stat-number { font-size: 1.5rem; }
  .hero-image-wrapper { display: none; }
  .hero-section .row {
    padding-top: 6rem;
    min-height: 0 !important;
    padding-bottom: 5rem;
  }
  .section-title { font-size: 1.75rem; }
  .about-img-placeholder.secondary-img { display: none; }
  .experience-badge { top: 10px; left: 10px; padding: 0.8rem 1rem; }
  .exp-number { font-size: 1.5rem; }
  .newsletter-box { padding: 2rem; }
  .promo-banner { padding: 2rem; }
  .promo-banner h2 { font-size: 1.5rem; }
  .page-hero { padding: 8rem 0 3rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .product-detail-name { font-size: 1.6rem; }
}

/* ---- Utility ---- */
.bg-light { background-color: var(--gray-50) !important; }

/* Alert styles */
.alert-success {
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
}

.alert-danger {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
}

/* Empty state */
.empty-state {
  padding: 3rem;
  text-align: center;
}

/* ---- Gallery Section ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 33, 85, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  color: var(--white);
  font-size: 1.5rem;
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gallery-placeholder i {
  font-size: 2.5rem;
  color: var(--gray-300);
}

.gallery-placeholder span {
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
