/* ================================== */
/* 1. SETUP & VARIABLES               */
/* ================================== */
:root {
  --bg-color: #0F0F0F;       /* Deep Onyx Black */
  --card-bg: #1A1A1A;        /* Slightly lighter black */
  --text-color: #FFFFFF;
  --text-muted: #B0B0B0;
  --heading-color: #E6E6FA;  /* Pale Lavender */

  --accent-start: #B19CD9;   /* Pastel Lavender */
  --accent-end: #9370DB;     /* Medium Purple */
  --secondary-accent: #C0C0C0; /* Silver/Metallic */

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-glow: 0 0 15px rgba(177, 156, 217, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ================================== */
/* 2. REUSABLE COMPONENTS             */
/* ================================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center { text-align: center; }

.section-padding { padding: 80px 0; }
.bg-darker { background-color: #080808; }

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #000;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(147, 112, 219, 0.3);
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(147, 112, 219, 0.6); /* Lavender Glow */
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary-accent);
  color: var(--secondary-accent);
}

.btn-outline:hover {
  background: var(--secondary-accent);
  color: #000;
  box-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

/* Scroll Animation Classes (AOS Overrides) */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}


/* ================================== */
/* 3. NAVIGATION                      */
/* ================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 15, 0.85); /* Glassmorphism */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-start);
  background: linear-gradient(to right, var(--accent-start), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  opacity: 0.8;
  padding: 10px; /* Improved touch target */
  display: inline-block;
}

nav ul li a.active,
nav ul li a:hover {
  opacity: 1;
  color: var(--accent-start);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-start);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .mobile-menu-btn { display: block; z-index: 1001; }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease;
    border-left: 1px solid var(--secondary-accent);
  }

  nav.active { right: 0; }

  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  nav ul li a { font-size: 1.2rem; }

  .open-icon, .close-icon { transition: 0.3s; }
  .mobile-menu-btn.active .open-icon { display: none; }
  .mobile-menu-btn:not(.active) .close-icon { display: none; }
}

/* ================================== */
/* 4. HERO & PAGE HEADERS             */
/* ================================== */
.hero, .page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero { height: 100vh; }
.page-header { height: 50vh; }

.hero-bg-anim {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: zoomBg 20s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), var(--bg-color));
}

.hero-content, .page-header .container {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero h1, .page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.sub-headline, .page-header p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--accent-start);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

/* ================================== */
/* 5. COLLECTIONS SECTION             */
/* ================================== */
.collections-section {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--heading-color);
}

.section-title p {
  color: var(--secondary-accent);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.collection-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.collection-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-start);
  box-shadow: var(--shadow-glow);
}

.card-image {
  height: 300px;
  position: relative;
  overflow: hidden;
}

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

.collection-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.card-content {
  padding: 25px;
  text-align: center;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.card-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Mobile Carousel (Scroll Snap) */
@media (max-width: 900px) {
  .collections-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .collections-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    padding-left: 10px;
    padding-right: 10px;
  }

  .collection-card {
    min-width: 80%;
    scroll-snap-align: center;
    margin-right: 0;
  }

  .card-image {
    height: 250px;
  }
}

/* ================================== */
/* 6. WHOLESALE, CONTACT & FOOTER     */
/* ================================== */
.wholesale-section {
  padding: 80px 0;
  background: linear-gradient(to right, #151515, #1a1a1a);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.main-footer {
  background: #000;
  padding: 60px 0 30px;
  font-size: 0.9rem;
  color: #888;
}

.main-footer h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.social-links {
  margin: 20px 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #333;
  margin: 0 10px;
  color: #fff;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent-start);
  border-color: var(--accent-start);
  color: #000;
}

.copyright {
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 0.8rem;
}

/* ================================== */
/* 7. FLOATING WHATSAPP               */
/* ================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
}

/* Hide scrollbar for gallery on mobile */
.collections-grid::-webkit-scrollbar {
  display: none;
}
.collections-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ================================== */
/* 8. CIRCULAR GRID & BLOG STYLES     */
/* ================================== */

/* Circular Category Grid */
.circular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.circular-card {
  text-align: center;
  transition: var(--transition);
  display: block; /* ensure links work as blocks */
}

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

.circular-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 2px solid var(--secondary-accent);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  position: relative;
}

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

.circular-card:hover .circular-image img {
  transform: scale(1.1);
}

.circular-card h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .circular-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 20px;
  }
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-start);
}

.blog-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-start);
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--secondary-accent);
  margin-bottom: 8px;
  display: block;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}

.read-more {
  color: var(--accent-start);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more:hover {
  gap: 12px;
}

/* Article Page */
.article-header {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0; /* Override standard margin if any */
  padding-top: 80px; /* Account for fixed nav */
}

.article-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.1);
}

.article-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-color), rgba(0,0,0,0.4));
  z-index: 1;
}

.article-meta {
  color: var(--secondary-accent);
  font-size: 1rem;
}

.article-content-wrapper {
  background: var(--bg-color);
  position: relative;
  z-index: 2;
  margin-top: -50px;
  border-radius: 30px 30px 0 0;
  padding-top: 50px;
}

.article-body {
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-body p {
  margin-bottom: 1.5rem;
  color: #ddd;
}

/* ================================== */
/* 9. ACCESSIBILITY                   */
/* ================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-start);
  color: #000;
  padding: 12px 20px;
  z-index: 9999;
  font-weight: bold;
  transition: top 0.3s;
  text-decoration: none;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--accent-start);
  outline-offset: 4px;
}

/* ================================== */
/* 10. ADVANCED ANIMATIONS            */
/* ================================== */

/* Shimmer effect for buttons */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

/* Floating animation for WhatsApp button */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-whatsapp {
  animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  animation: none;
  transform: scale(1.1) rotate(10deg);
}

/* Pulse animation for CTA elements */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(177, 156, 217, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(177, 156, 217, 0); }
}

.btn-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Gradient text animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo {
  background-size: 200% auto;
  animation: gradientShift 3s ease infinite;
}

/* Staggered text reveal animation */
.stagger-text {
  opacity: 0;
  animation: textReveal 1s ease forwards;
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Parallax-style depth effect */
.hero-bg-anim {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Card hover glow effect */
.collection-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--accent-start), var(--accent-end), var(--accent-start));
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.collection-card {
  position: relative;
  z-index: 1;
}

.collection-card:hover::after {
  opacity: 1;
}

/* Magnetic hover effect for circular cards */
.circular-image {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.4s ease;
}

.circular-card:hover .circular-image {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(177, 156, 217, 0.4);
}

/* Ripple effect for buttons */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

/* Underline animation for nav links */
nav ul li a::after {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  height: 2px;
}

/* Social links hover animation */
.social-links a {
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-start);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.social-links a:hover::before {
  transform: translateY(0);
}

.social-links a:hover {
  border-color: var(--accent-start);
}

/* Blog card image overlay animation */
.blog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(177, 156, 217, 0.2) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card-image::after {
  opacity: 1;
}

/* Read more arrow animation */
.read-more i {
  transition: transform 0.3s ease;
}

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

/* Verified badge animation */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.verified-badge i {
  animation: pulse 2s ease-in-out infinite;
}

/* Scroll indicator animation */
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: scrollBounce 2s ease-in-out infinite;
  color: var(--accent-start);
  font-size: 2rem;
  opacity: 0.8;
}

/* Card content slide-up animation */
.card-content {
  transition: transform 0.4s ease;
}

.collection-card:hover .card-content {
  transform: translateY(-5px);
}

/* Glowing border animation for featured items */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(177, 156, 217, 0.5),
                0 0 10px rgba(177, 156, 217, 0.3),
                0 0 15px rgba(177, 156, 217, 0.1);
  }
  50% {
    box-shadow: 0 0 10px rgba(177, 156, 217, 0.8),
                0 0 20px rgba(177, 156, 217, 0.5),
                0 0 30px rgba(177, 156, 217, 0.3);
  }
}

.featured-glow {
  animation: glowPulse 2s ease-in-out infinite;
}

/* Typing cursor animation for hero text */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.typing-cursor::after {
  content: '|';
  animation: blink 1s step-end infinite;
  margin-left: 2px;
  color: var(--accent-start);
}

/* Page load fade-in */
@keyframes pageLoad {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

body {
  animation: pageLoad 0.5s ease-out;
}

/* Header glassmorphism enhancement */
header {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background: rgba(15, 15, 15, 0.98);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

/* Counter number animation */
.counter-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-start);
  line-height: 1;
}

.counter-label {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Stats section styling */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.9));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

/* Smooth image loading */
img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img.loaded {
  opacity: 1;
}

/* Hero content entrance animation */
.hero-content > * {
  opacity: 0;
  transform: translateY(30px);
}

.hero-content.animate > *:nth-child(1) {
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-content.animate > *:nth-child(2) {
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-content.animate > *:nth-child(3) {
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================== */
/* 11. ACCESSIBILITY - REDUCED MOTION */
/* ================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-bg-anim {
    animation: none;
    transform: none;
  }

  .floating-whatsapp {
    animation: none;
  }

  .logo {
    animation: none;
  }

  .btn::before {
    display: none;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ================================== */
/* 12. PARTICLE CANVAS STYLES         */
/* ================================== */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.hero {
  position: relative;
  z-index: 1;
}

/* ================================== */
/* 16. FILTER BUTTONS                 */
/* ================================== */
.filter-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  background: rgba(26, 26, 26, 0.8);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px; /* Larger touch target */
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.filter-btn:hover,
.filter-btn.active {
  color: #000;
  background: var(--accent-start);
  box-shadow: 0 0 10px rgba(177, 156, 217, 0.4);
}

/* Mobile Filter Scroll */
@media (max-width: 600px) {
  .filter-buttons {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 15px;
    border-radius: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ================================== */
/* 17. TESTIMONIALS                   */
/* ================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-start);
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1; /* Pushes info to bottom */
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #fff;
}

.verified-tag {
    font-size: 0.8rem;
    color: #4CAF50; /* Green for verified */
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ================================== */
/* 18. CONTACT ACTION CARDS           */
/* ================================== */
.action-card {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  text-decoration: none;
  gap: 15px;
}

.action-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-start);
  box-shadow: var(--shadow-glow);
}

.primary-action {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), transparent);
  border-color: rgba(37, 211, 102, 0.3);
}

.primary-action:hover {
  border-color: #25D366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.secondary-action {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
}

.action-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.primary-action .action-icon {
  background: #25D366;
  color: #fff;
}

.action-text h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: #fff;
}

.action-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.action-arrow {
  margin-left: auto;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.action-card:hover .action-arrow {
  transform: translateX(5px);
  color: #fff;
}

.contact-address-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.contact-address-info a {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: block;
}

.contact-address-info a:hover {
  color: var(--accent-start);
}

/* ================================== */
/* 19. BACK TO TOP BUTTON             */
/* ================================== */
#back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px; /* Opposite to WhatsApp button */
  width: 50px;
  height: 50px;
  background: var(--card-bg);
  color: var(--accent-start);
  border: 1px solid var(--accent-start);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--accent-start);
  color: #000;
  box-shadow: 0 0 15px rgba(177, 156, 217, 0.5);
}

/* ================================== */
/* 20. BLOG SEARCH                    */
/* ================================== */
.blog-search-container {
  margin: 30px auto;
  max-width: 600px;
  padding: 0 15px;
  position: relative;
}

.search-icon {
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.blog-search-input {
  width: 100%;
  padding: 15px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.blog-search-input:focus {
  outline: none;
  border-color: var(--accent-start);
  box-shadow: 0 0 15px rgba(177, 156, 217, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.blog-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.no-results {
  text-align: center;
  grid-column: 1 / -1;
  padding: 40px;
  color: var(--text-muted);
  font-size: 1.1rem;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
}
