
:root {
  /* Brand Colors */
  --primary-color: #4da8da;
  --secondary-color: #2c5f7d;

  /* Accent & Backgrounds */
  --accent-color: #fff5e6;
  --background-light: #fffbf5;

  /* Optional semantic aliases (safe to remove later) */
  --warm-orange: var(--primary-color);
  --light-blue: var(--primary-color);
  --dark-blue: var(--secondary-color);
  --cream: var(--accent-color);
  --light-cream: var(--background-light);
}


body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(
    135deg,
    var(--light-cream) 0%,
    #ffffff 50%,
    #e6f3ff 100%
  );
}

/* logo */
.navbar-brand img {
  height: 30px;
  width: auto;
}

/* Navigation */
.navbar {
  background: linear-gradient(
    90deg,
    rgba(77, 168, 218, 0.95) 0%,
    rgba(77, 168, 218, 0.95) 100%
  );
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: white !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 1rem;
  transition: all 0.3s ease;
  position: relative;
}


.nav-link-filter {
  color: var(--primary-color) !important;
  font-weight: 500;
  margin: 0 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  transform: translateY(-2px);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.btn-appointment {
  background: white;
  color: var(--warm-orange);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-appointment:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
}


/* book appointment */


#appointmentModal .modal-header {
  background:linear-gradient(
    90deg,
    rgba(77, 168, 218, 0.95) 0%,
    rgba(77, 168, 218, 0.95) 100%);
  color: white;
  border-bottom: none;
}

#appointmentModal .modal-header .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

#appointmentModal .modal-header .btn-close {
  filter: brightness(0) invert(1);
}

#appointmentModal .form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

#appointmentModal .form-control,
#appointmentModal .form-select {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

#appointmentModal .form-control:focus,
#appointmentModal .form-select:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

#appointmentModal h6 {
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 0.5rem;
}

#appointmentModal .alert-info {
  background-color: #e7f3ff;
  border-color: #b3d9ff;
  color: var(--warm-orange);
}

.text-primary-custom{
  color:var(--primary-color);
}


/* Hero Section */
.hero {
  padding: 140px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.05) 0%,
    rgba(77, 168, 218, 0.05) 100%
  );
  border-radius: 0 0 0 50%;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .subtitle {
  font-size: 1.5rem;
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary-custom {
  background: white;
  border: 2px solid var(--light-blue);
  color: var(--dark-blue);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-secondary-custom:hover {
  background: var(--light-blue);
  color: white;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hero-image-grid img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.hero-image-grid img:hover {
  transform: scale(1.05);
}

.hero-image-grid img:nth-child(2),
.hero-image-grid img:nth-child(3) {
  margin-top: 2rem;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 0.5rem 0.5rem 0;
}

.location-badge i {
  color: var(--warm-orange);
}

/* Global Hero Z-Index Management */

/* Default Hero Settings */
.hero {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.hero::before {
  z-index: -1;
  position: absolute;
}

/* Ensure hero content is properly layered */
.hero .container {
  position: relative;
  z-index: 2;
}

/* Cart Hero Specific Overrides */
.cart-hero::before {
  content: none !important;
  /* Or if you want to keep it but make it non-interfering */
  /* z-index: -1 !important; */
}

.cart-content-section,
.cart-content-section * {
  z-index: auto;
}

/* Ensure all clickable elements are above decorative elements */
button,
a.btn,
.btn,
input,
select,
textarea,
.nav-link,
.dropdown-toggle {
  position: relative;
  z-index: 100 !important;
  isolation: isolate;
}

/* Specific cart page buttons */
.btn-clear-cart,
.btn-checkout,
.btn-apply-promo,
.btn-add-recommended,
.qty-btn,
.cart-item-delete {
  z-index: 999 !important;
  pointer-events: auto !important;
}

/* Modal backdrop shouldn't interfere */
.modal-backdrop {
  z-index: 1040;
}

.modal {
  z-index: 1050;
}

/* Notifications should be on top of everything */
.cart-notification {
  z-index: 99999 !important;
}

/* Navigation should be above hero */
.navbar {
  z-index: 1030 !important;
}

/* Ensure dropdown menus work */
.dropdown-menu {
  z-index: 1000;
}

/* Cart wrapper and order summary */
.cart-items-wrapper,
.order-summary-wrapper {
  position: relative;
  z-index: 10;
  isolation: isolate;
}

/* Any section that comes after hero */
.features,
.locations,
.recommended-section,
.trust-badges-section {
  position: relative;
  z-index: 5;
}

/* Override any potential conflicts */
.hero + section {
  position: relative;
  z-index: 10;
}

/* Ensure forms are clickable */
form,
form * {
  position: relative;
  z-index: 50;
}

/* Products page specific */
.products-hero::before {
  z-index: -1;
}

.product-card {
  position: relative;
  z-index: 5;
}

.btn-quick-view,
.btn-add-cart {
  z-index: 100 !important;
  pointer-events: auto !important;
}

/* Fix any overlay issues */
.product-overlay {
  z-index: 10;
}

.product-overlay button {
  z-index: 11 !important;
}

/* Ensure recommended products buttons work */
.recommended-card button {
  z-index: 100 !important;
  pointer-events: auto !important;
  position: relative;
}

/* Delivery options and promo code section */
.delivery-options,
.promo-code-section {
  position: relative;
  z-index: 20;
}

.delivery-options input[type="radio"],
.delivery-options label {
  position: relative;
  z-index: 21;
  cursor: pointer;
  pointer-events: auto;
}

/* Location selector and address input */
.location-selector,
.delivery-address {
  position: relative;
  z-index: 20;
}

.location-selector select,
.delivery-address textarea {
  position: relative;
  z-index: 21;
  pointer-events: auto !important;
}

/* Promo code input and button */
.promo-input-group {
  position: relative;
  z-index: 20;
  display: flex;
  gap: 10px;
}

.promo-input-group input,
.promo-input-group button {
  position: relative;
  z-index: 21;
  pointer-events: auto !important;
}

/* Progress steps should be interactive */
.cart-progress {
  position: relative;
  z-index: 15;
}

.progress-step {
  position: relative;
  z-index: 16;
}

/* Trust badges section */
.trust-badge {
  position: relative;
  z-index: 5;
}

/* Emergency override for any stuck elements */
.clickable,
.interactive,
[onclick],
[data-bs-toggle],
[data-bs-target] {
  position: relative;
  z-index: 100 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* Debugging helper - uncomment to see z-index issues */
/*
button:hover::after,
a.btn:hover::after {
  content: "z: " attr(data-z-index);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  white-space: nowrap;
  z-index: 10000;
}
*/
/* cart hero */
/* Cart Page Specific Hero Styling - Override default hero */
.cart-hero {
  padding: 140px 0 60px;
  min-height: auto;
  display: block;
  position: relative;
  overflow: visible;
}

/* Remove or minimize the overlay for cart page */
.cart-hero::before {
  content: none;
  /* Or make it less intrusive */
  opacity: 0.3;
  z-index: 0;
}

/* Cart Content Section */
.cart-content-section {
  position: relative;
  z-index: 10;
  background: transparent;
}

.cart-content-section .container {
  position: relative;
  z-index: 20;
}

/* Cart Items Wrapper - Ensure proper layering */
.cart-items-wrapper {
  position: relative;
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  z-index: 30;
  margin-bottom: 30px;
}

/* Cart Header - Higher z-index */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
  z-index: 100;
}

.cart-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 101;
}

.cart-header h3 i {
  color: #667eea;
}

/* Clear Cart Button - Highest z-index and clickability */
.btn-clear-cart {
  padding: 10px 20px;
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  position: relative;
  z-index: 999 !important;
  pointer-events: auto !important;
  outline: none;
  isolation: isolate;
}

.btn-clear-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 87, 108, 0.4);
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.btn-clear-cart:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(245, 87, 108, 0.3);
}

.btn-clear-cart i {
  font-size: 14px;
}

/* Cart Progress Steps */
.cart-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 40px auto;
  position: relative;
  z-index: 20;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 21;
}

.progress-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 3px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #999;
  transition: all 0.3s ease;
  position: relative;
  z-index: 22;
}

.progress-step.active .progress-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  color: white;
}

.progress-step span {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  position: relative;
  z-index: 22;
}

.progress-step.active span {
  color: #667eea;
}

.progress-line {
  width: 100px;
  height: 3px;
  background: #e0e0e0;
  margin: 0 10px;
  position: relative;
  top: -15px;
  z-index: 20;
}

/* Cart Items Container */
#cartItemsContainer {
  position: relative;
  z-index: 25;
  min-height: 200px;
}

/* Cart Page Item */
.cart-page-item {
  display: grid;
  grid-template-columns: 100px 1fr 120px 150px 120px 50px;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 26;
}

.cart-page-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Cart Item Image */
.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 27;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  color: #adb5bd;
  font-size: 30px;
}

/* Cart Item Info */
.cart-item-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 5px 0;
}

.item-brand {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0 0 3px 0;
}

.item-category {
  font-size: 13px;
  color: #95a5a6;
  margin: 0;
}

/* Cart Item Price */
.cart-item-price {
  text-align: center;
}

.price-label {
  display: block;
  font-size: 12px;
  color: #7f8c8d;
  margin-bottom: 5px;
}

.price-value {
  font-size: 16px;
  font-weight: 600;
  color: #667eea;
}

/* Cart Item Quantity Control */
.cart-item-quantity-control {
  text-align: center;
}

.qty-label {
  display: block;
  font-size: 12px;
  color: #7f8c8d;
  margin-bottom: 5px;
}

.qty-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  border-radius: 8px;
  padding: 5px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: none;
  background: #f0f0f0;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 50;
  pointer-events: auto;
}

.qty-btn:hover {
  background: #667eea;
  color: white;
}

.qty-display {
  font-size: 16px;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

/* Cart Item Total Price */
.cart-item-total-price {
  text-align: center;
}

.total-label {
  display: block;
  font-size: 12px;
  color: #7f8c8d;
  margin-bottom: 5px;
}

.total-value {
  font-size: 18px;
  font-weight: 700;
  color: #27ae60;
}

/* Cart Item Delete Button */
.cart-item-delete {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: #fee;
  color: #e74c3c;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 50;
  pointer-events: auto;
}

.cart-item-delete:hover {
  background: #e74c3c;
  color: white;
  transform: scale(1.1);
}

/* Empty Cart Page */
.empty-cart-page {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
}

.empty-cart-page i {
  font-size: 80px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.empty-cart-page h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.empty-cart-page p {
  color: #7f8c8d;
  margin-bottom: 30px;
}

/* Order Summary Wrapper */
.order-summary-wrapper {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
  z-index: 30;
}

.order-summary-wrapper h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Summary Rows */
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.summary-row span {
  color: #7f8c8d;
  font-size: 15px;
}

.summary-row strong {
  color: #2c3e50;
  font-size: 16px;
}

.summary-divider {
  margin: 15px 0;
  border-top: 2px solid #e0e0e0;
}

.total-row {
  border: none;
  padding: 15px 0 20px;
}

.total-row span,
.total-row strong {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
}

.total-row strong {
  color: #667eea;
}

/* Checkout Button */
.btn-checkout {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 50;
  pointer-events: auto;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-checkout i {
  font-size: 20px;
}

/* Secure Checkout Badge */
.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  color: #95a5a6;
  font-size: 13px;
}

.secure-checkout i {
  color: #27ae60;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cart-page-item {
    grid-template-columns: 80px 1fr 100px 120px 100px 40px;
    gap: 15px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .cart-hero {
    padding: 120px 0 40px;
  }

  .cart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .btn-clear-cart {
    width: 100%;
    justify-content: center;
  }

  .cart-page-item {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }

  .cart-item-image {
    margin: 0 auto;
  }

  .cart-item-price,
  .cart-item-quantity-control,
  .cart-item-total-price {
    text-align: left;
  }

  .qty-controls {
    justify-content: flex-start;
  }

  .cart-item-delete {
    width: 100%;
    height: 45px;
    border-radius: 8px;
  }

  .order-summary-wrapper {
    position: relative;
    top: 0;
    margin-top: 30px;
  }

  .progress-line {
    width: 60px;
  }

  .progress-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .progress-step span {
    font-size: 12px;
  }
}

/* Ensuring all interactive elements are above hero */
button,
a,
input,
select,
textarea {
  position: relative;
  z-index: 50;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: white;
}

.feature-card {
  background: linear-gradient(135deg, #fff5e6 0%, #e6f3ff 100%);
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  transition: all 0.4s ease;
  border: none;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.1) 0%,
    transparent 70%
  );
  transition: all 0.6s ease;
  opacity: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(10deg) scale(1.15);
}

.feature-icon i {
  font-size: 2.8rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Locations Section */
.locations {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-cream) 0%, #e6f3ff 100%);
}

.location-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

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

.location-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.location-card .city-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.location-card .city-icon i {
  font-size: 2rem;
  color: white;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 15s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.btn-cta {
  background: white;
  color: var(--warm-orange);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */

/* Main Footer */
.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: var(--footer-text);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.footer-main {
    padding: 60px 0 40px;
}

/* Brand Section */
.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo h5 {
    color: var(--warm-orange);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.footer-description {
    color: var(--footer-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Newsletter Box */
.newsletter-box {
    background: var(--footer-bg-light);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(77, 168, 218, 0.2);
    margin-bottom: 25px;
}

.newsletter-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.btn-newsletter {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 168, 218, 0.3);
    color: white;
}

/* Social Media */
.footer-social {
    margin-top: 25px;
}

.social-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--warm-orange);
    transform: translateY(-5px);
    color: white;
}

.social-link.facebook {
    background: rgba(255, 255, 255, 0.1);
}

.social-link.facebook:hover {
    background: var(--warm-orange);
}

.social-link.instagram {
    background: rgba(255, 255, 255, 0.1);
}

.social-link.instagram:hover {
    background: var(--warm-orange);
}

.social-link.twitter {
    background: rgba(255, 255, 255, 0.1);
}

.social-link.twitter:hover {
    background: var(--warm-orange);
}

.social-link.whatsapp {
    background: rgba(255, 255, 255, 0.1);
}

.social-link.whatsapp:hover {
    background: var(--warm-orange);
}

/* Footer Headings */
.footer-heading {
    color: var(--warm-orange);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-menu li a i {
    font-size: 0.7rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-menu li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-menu li a:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact {
    padding-left: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--footer-bg-light);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info h6 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info p {
    color: var(--footer-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--footer-text);
    font-size: 0.9rem;
}

.copyright strong {
    color: var(--primary-color);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-bottom-links li a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-brand {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .footer-contact {
        padding-left: 0;
    }
    
    .footer-heading::after {
        left: 0;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .copyright {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .social-links {
        justify-content: flex-start;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
}

/* Alerts */
.alert {
  border-radius: 15px;
  border: none;
}

/* Section Titles */
.section-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

.rating {
  color: #ffc107;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

.shuffle-card {
  width: 100%;
  height: 420px;
  position: relative;
  perspective: 1000px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.shuffle-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  opacity: 0;
  transform: rotateY(90deg);
  transition: transform 0.8s ease, opacity 0.8s ease;
  border-radius: 20px;
}

.shuffle-card img.active {
  opacity: 1;
  transform: rotateY(0deg);
}

/* side bar */

/* ===== Vertical Side Backgrounds ===== */

.page-background {
  position: relative;
  min-height: 100vh;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Left & right background images */
.page-background::before,
.page-background::after {
  content: "";
  position: fixed;
  top: 0;
  width: 220px;
  height: 100vh;
  background-image: url("../img/eye-test.png");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center top;
  opacity: 0.08; /* subtle medical look */
  z-index: 0;
  pointer-events: none;
}

/* Left side */
.page-background::before {
  left: 0;
}

/* Right side */
.page-background::after {
  right: 0;
  transform: scaleX(-1); /* mirror for symmetry */
}

/* Main content stays above background */
.page-content {
  position: relative;
  z-index: 1;
}

/* Center content nicely */
@media (min-width: 992px) {
  .container {
    max-width: 1140px;
  }
}

/* Hide side images on mobile */
@media (max-width: 991px) {
  .page-background::before,
  .page-background::after {
    display: none;
  }
}

/* insurance ticker styling  */

/* ===== Insurance Ticker ===== */

.insurance-ticker {
  background: #f8f9fa;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 14px 0;
  overflow: hidden;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-track span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #555;
  white-space: nowrap;
  letter-spacing: 0.4px;
}

/* subtle hover pause (optional) */
.insurance-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track img {
  height: 28px;
  opacity: 0.8;
}

/* animation */
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* session user management */

/* ===== Avatar Button ===== */

.avatar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

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

.avatar-btn::after {
  display: none; /* hide bootstrap caret */
}

.avatar-btn:hover {
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* services section */

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero */
.services-hero {
  padding-top: 120px;
  padding-bottom: 80px;
}

.services-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.services-hero-img:hover {
  transform: scale(1.02);
}

/* Services Grid Section */
.services-grid-section {
  padding-top: 60px;
}

/* Service Card */
.service-card {
  background: linear-gradient(135deg, #fff5e6 0%, #e6f3ff 100%);
  border-radius: 25px;
  padding: 0;
  text-align: center;
  transition: all 0.4s ease;
  border: none;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(77, 168, 218, 0.1) 0%,
    transparent 70%
  );
  transition: all 0.6s ease;
  opacity: 0;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Service Image */
.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
  position: relative;
}

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

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

/* Service Card Content */
.service-card .feature-icon {
  position: relative;
  z-index: 2;
  margin-top: -45px;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.service-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
  position: relative;
  z-index: 2;
}

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

.service-list li i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Service Meta */
.service-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 0;
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

/* Specialized Services Section */
.specialized-services {
  background: var(--warm-orange);
  color: white;
}

.specialized-title,
.specialized-subtitle {
  color: white !important;
  -webkit-text-fill-color: white !important;
}

.specialized-subtitle {
  opacity: 0.9;
}

.specialized-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.specialized-card h4,
.specialized-card p {
  color: white;
}

.specialized-card p {
  opacity: 0.85;
}

.specialized-card .city-icon {
  background: rgba(255, 255, 255, 0.2);
}

.specialized-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Process Section */
.process-section {
  background: white;
}

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

.process-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.4s ease;
}

.process-icon i {
  font-size: 2.5rem;
  color: white;
}

.process-step:hover .process-icon {
  transform: rotate(5deg) scale(1.1);
}

.process-step h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.8rem;
}

.process-step p {
  color: #777;
  font-size: 1rem;
}

/* Insurance & Payment Section */
.insurance-payment-section {
  background: linear-gradient(135deg, var(--light-cream) 0%, #e6f3ff 100%);
}

.insurance-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.insurance-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.insurance-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.insurance-badge i {
  font-size: 1.5rem;
}

.insurance-badge strong {
  font-size: 1.1rem;
  color: var(--dark-blue);
}

.insurance-note {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0;
  margin-top: 1rem;
  padding-left: 0.5rem;
}

.insurance-note i {
  margin-right: 0.5rem;
  color: var(--light-blue);
}

/* Payment List */
.payment-list {
  list-style: none;
  padding: 0;
}

.payment-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.payment-list li:last-child {
  border-bottom: none;
}

.payment-list li:hover {
  padding-left: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}

.payment-list li i {
  font-size: 1.8rem;
  width: 40px;
  flex-shrink: 0;
}

.payment-list li strong {
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-right: 0.5rem;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-secondary {
  background: white;
  color: var(--warm-orange);
  border: none;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .services-hero h1 {
    font-size: 2.2rem;
  }

  .service-image {
    height: 180px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .process-icon {
    width: 70px;
    height: 70px;
  }

  .process-icon i {
    font-size: 2rem;
  }

  .insurance-badge {
    padding: 1rem;
  }

  .payment-list li {
    font-size: 0.95rem;
  }

  .payment-list li i {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn-cta {
    width: 100%;
  }
}

/* contact us */
/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
.contact-hero {
  padding-top: 120px;
  padding-bottom: 80px;
}

.contact-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.contact-hero-img:hover {
  transform: scale(1.02);
}

/* Contact Quick Info */
.contact-quick-info {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.quick-info-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.quick-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-info-icon i {
  font-size: 1.8rem;
  color: white;
}

.quick-info-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 0.3rem;
}

.quick-info-item p {
  margin: 0;
  color: #666;
  font-size: 1rem;
}

/* Contact Form Section */
.contact-form-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: white;
}

.contact-form-wrapper,
.contact-map-wrapper {
  background: linear-gradient(135deg, #fff5e6 0%, #e6f3ff 100%);
  border-radius: 25px;
  padding: 3rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Form Styling */
.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.95rem;
}

.contact-form label i {
  color: var(--light-blue);
  margin-right: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 0.2rem rgba(77, 168, 218, 0.15);
  background: white;
}

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

/* Contact Map */
.contact-map {
  margin: 2rem 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Social */
.contact-social {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.contact-social h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

.contact-social-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-social-link i {
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: white;
}

.contact-social-link span {
  font-weight: 600;
  color: var(--dark-blue);
  font-size: 1rem;
}

.contact-social-link.facebook i {
  background: #1877f2;
}

.contact-social-link.instagram i {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.contact-social-link.twitter i {
  background: #1da1f2;
}

.contact-social-link.whatsapp i {
  background: #25d366;
}

/* Contact Locations Section */
.contact-locations-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-cream) 0%, #e6f3ff 100%);
}

.contact-location-card {
  background: white;
  border-radius: 25px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.contact-location-header {
  background: linear-gradient(135deg, #fff5e6 0%, #e6f3ff 100%);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.contact-location-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-location-icon i {
  font-size: 2rem;
  color: white;
}

.contact-location-icon.mombasa {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-location-icon.kilifi {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.contact-location-icon.kwale {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.contact-location-icon.mariakani {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.contact-location-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0;
}

.location-tagline {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.contact-location-body {
  padding: 2rem;
}

.contact-location-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-location-item:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.contact-location-item > i {
  font-size: 1.5rem;
  color: var(--light-blue);
  width: 30px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-location-item strong {
  display: block;
  color: var(--dark-blue);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-location-item p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-location-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-location-actions .btn-sm {
  flex: 1;
  min-width: 150px;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
}

/* FAQ Section */
.contact-faq-section {
  padding: 80px 0;
  background: white;
}

.contact-accordion {
  border: none;
}

.contact-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-accordion .accordion-button {
  background: linear-gradient(135deg, #fff5e6 0%, #e6f3ff 100%);
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
  border: none;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  color: white;
  box-shadow: none;
}

.contact-accordion .accordion-button i {
  font-size: 1.3rem;
}

.contact-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.contact-accordion .accordion-button::after {
  background-size: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  margin-left: auto;
}

.contact-accordion .accordion-body {
  padding: 1.5rem;
  background: white;
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .contact-quick-info {
    margin-top: 2rem;
  }

  .contact-form-wrapper,
  .contact-map-wrapper {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .quick-info-item {
    padding: 1.2rem;
  }

  .quick-info-icon {
    width: 50px;
    height: 50px;
  }

  .quick-info-icon i {
    font-size: 1.5rem;
  }

  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 2rem;
  }

  .contact-form-title {
    font-size: 1.6rem;
  }

  .contact-social-icons {
    grid-template-columns: 1fr;
  }

  .contact-location-header {
    flex-direction: column;
    text-align: center;
  }

  .contact-location-actions {
    flex-direction: column;
  }

  .contact-location-actions .btn-sm {
    width: 100%;
  }

  .contact-accordion .accordion-button {
    font-size: 1rem;
    padding: 1.2rem;
  }
}
/* about */
.about-hero {
  padding-top: 120px;
  padding-bottom: 80px;
}
.about-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-hero-img:hover{
  transform: scale(1.02);
}

/* products */

/* Products Hero */
.products-hero {
  padding-top: 120px;
  padding-bottom: 80px;
}

.products-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}



.products-hero-img:hover {
  transform: scale(1.02);
}

/* Products Stats */
.products-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  min-width: 140px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 600;
}

/* Products Filter Section */
.products-filter-section {
  padding: 2rem 0;
  background: white;
  border-bottom: 2px solid #f0f0f0;
  position: sticky;
  top: 76px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.products-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-group label {
  font-weight: 600;
  color: var(--dark-blue);
  font-size: 0.95rem;
  white-space: nowrap;
}

.filter-group label i {
  color: var(--light-blue);
  margin-right: 0.5rem;
}

.filter-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid #e0e0e0;
  background: white;
  color: #666;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn:hover {
  border-color: var(--light-blue);
  color: var(--light-blue);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  border-color: transparent;
  color: white;
}

.filter-select {
  padding: 0.6rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #666;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}

.filter-select:focus {
  border-color: var(--light-blue);
  outline: none;
}

/* Products Grid Section */
.products-grid-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-cream) 0%, #e6f3ff 100%);
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  /* transition: transform 0.6s; */
  /* transform-style: preserve-3d; */
  cursor: pointer; /* optional */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.product-card.active {
  transform: rotateY(180deg);
}

/* Product Badge */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.sale {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

/* Product Image */
.product-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f8f9fa;
}

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

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

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

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

.btn-quick-view {
  background: white;
  color: var(--dark-blue);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-quick-view:hover {
  background: var(--light-blue);
  color: white;
  transform: scale(1.05);
}

/* Product Info */
.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.8rem;
  color: var(--light-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.product-brand {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.product-rating i {
  color: #ffc107;
  font-size: 0.85rem;
}

.product-rating span {
  margin-left: 0.3rem;
  color: #666;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-price {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.old-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}

.current-price {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-unit {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

.btn-add-cart {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  border: none;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(77, 168, 218, 0.4);
}

/* Load More Button */
.btn-load-more {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

/* Brands Section */
.products-brands-section {
  padding: 80px 0;
  background: white;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.brand-card {
  background: linear-gradient(135deg, #fff5e6 0%, #e6f3ff 100%);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.brand-logo img {
  max-width: 120px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.brand-card:hover .brand-logo img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Products Features Section */
.products-features-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-cream) 0%, #e6f3ff 100%);
}

.products-feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.products-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.products-feature-item .feature-icon {
  margin-bottom: 1.5rem;
}

.products-feature-item h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.8rem;
}

.products-feature-item p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .products-filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-group {
    width: 100%;
  }

  .filter-buttons {
    width: 100%;
  }

  .filter-select {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .products-hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .products-hero h1 {
    font-size: 2.2rem;
  }

  .products-stats {
    gap: 1rem;
  }

  .stat-item {
    min-width: 120px;
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .products-filter-section {
    top: 60px;
  }

  .filter-buttons {
    justify-content: center;
  }

  .filter-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .product-image {
    height: 220px;
  }

  .product-name {
    font-size: 1rem;
  }

  .current-price {
    font-size: 1.2rem;
  }

  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .brand-card {
    padding: 1.5rem;
  }

  .brand-logo img {
    max-width: 100px;
  }
}

/* Filter Animation */
.product-card.hidden {
  display: none;
}

.product-card.visible {
  animation: fadeInUp 0.5s ease;
}

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

/* product cart */

/* ===== CART FUNCTIONALITY STYLES ===== */

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
  animation: cartBadgePulse 2s infinite;
}

@keyframes cartBadgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* View Cart Button */
.view-cart-btn {
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.view-cart-btn:hover {
  opacity: 0.9;
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  top: 100px;
  right: -400px;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  transition: right 0.3s ease;
  font-weight: 600;
}

.cart-notification.show {
  right: 20px;
}

.cart-notification i {
  font-size: 1.5rem;
}

/* Cart Modal Styles */
#cartModal .modal-header {
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  color: white;
  border-radius: 20px 20px 0 0;
}

#cartModal .modal-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}

#cartModal .modal-title i {
  font-size: 1.5rem;
}

#cartModal .modal-content {
  border-radius: 20px;
  border: none;
}

#cartModal .modal-body {
  padding: 1.5rem;
  max-height: 60vh;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 3rem 1rem;
  color: #999;
}

.empty-cart i {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.empty-cart h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.empty-cart p {
  font-size: 1rem;
  margin: 0;
}

/* Cart Items */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fff5e6 0%, #e6f3ff 100%);
  border-radius: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.cart-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-details h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.3rem;
}

.cart-item-details p {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.cart-item-price {
  font-weight: 600;
  color: var(--light-blue);
  font-size: 1rem;
}

/* Quantity Controls */
.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.qty-btn {
  background: none;
  border: none;
  color: var(--light-blue);
  cursor: pointer;
  padding: 0.3rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.qty-btn:hover {
  background: var(--light-blue);
  color: white;
}

.qty-value {
  font-weight: 700;
  color: var(--dark-blue);
  min-width: 25px;
  text-align: center;
  font-size: 1rem;
}

/* Item Total */
.cart-item-total {
  margin-left: 1rem;
}

.cart-item-total strong {
  font-size: 1.2rem;
  color: var(--dark-blue);
  white-space: nowrap;
}

/* Remove Button */
.cart-item-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #ff6b6b;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cart-item-remove:hover {
  background: #ff6b6b;
  color: white;
  transform: scale(1.1);
}

/* Cart Summary */
.cart-summary {
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
}

.cart-total span {
  color: var(--dark-blue);
  font-weight: 600;
}

.cart-total strong {
  font-size: 1.8rem;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modal Footer */
#cartModal .modal-footer {
  border-top: 2px solid #f0f0f0;
  padding: 1.5rem;
}

#cartModal .modal-footer .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

#whatsappCheckout {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

#whatsappCheckout i {
  font-size: 1.3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cart-notification {
    right: -350px;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .cart-notification.show {
    right: 10px;
  }

  .cart-item {
    flex-wrap: wrap;
    padding: 1rem;
  }

  .cart-item img {
    width: 60px;
    height: 60px;
  }

  .cart-item-details h6 {
    font-size: 1rem;
  }

  .cart-item-details p {
    font-size: 0.85rem;
  }

  .cart-item-quantity {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }

  .cart-item-total {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .cart-total {
    font-size: 1.1rem;
  }

  .cart-total strong {
    font-size: 1.5rem;
  }

  #cartModal .modal-footer {
    flex-direction: column;
    gap: 0.8rem;
  }

  #cartModal .modal-footer .btn {
    width: 100%;
  }
}

/* WhatsApp Button Animation */
#whatsappCheckout {
  position: relative;
  overflow: hidden;
}

#whatsappCheckout::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

#whatsappCheckout:hover::before {
  width: 300px;
  height: 300px;
}

/* Loading State */
.btn-loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* cart css */
/* ===== CART PAGE STYLES ===== */

/* Cart Hero */
.cart-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--light-cream) 0%, #e6f3ff 100%);
}

/* Cart Progress Steps */
.cart-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.progress-step.active {
  opacity: 1;
}

.progress-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ddd;
  transition: all 0.3s ease;
}

.progress-step.active .progress-icon {
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  border-color: transparent;
}

.progress-icon i {
  font-size: 1.8rem;
  color: #999;
}

.progress-step.active .progress-icon i {
  color: white;
}

.progress-step span {
  font-weight: 600;
  color: #999;
  font-size: 0.95rem;
}

.progress-step.active span {
  color: var(--dark-blue);
}

.progress-line {
  width: 80px;
  height: 3px;
  background: #ddd;
  margin: 0 1rem;
}

/* Cart Content Section */
.cart-content-section {
  padding: 60px 0 80px;
  background: white;
}

/* Cart Items Wrapper */
.cart-items-wrapper {
  background: linear-gradient(135deg, #fff5e6 0%, #e6f3ff 100%);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.cart-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
}

.cart-header h3 i {
  color: var(--light-blue);
}

.btn-clear-cart {
  background: white;
  border: 2px solid #ff6b6b;
  color: #ff6b6b;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-clear-cart:hover {
  background: #ff6b6b;
  color: white;
  transform: translateY(-2px);
}

/* Cart Page Item */
.cart-page-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.cart-page-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 2.5rem;
}

.cart-item-info {
  min-width: 0;
}

.cart-item-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.3rem;
}

.item-brand {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 0.3rem;
}

.item-category {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}

.item-category i {
  margin-right: 0.3rem;
  color: var(--light-blue);
}

.cart-item-price,
.cart-item-quantity-control,
.cart-item-total-price {
  text-align: center;
}

.price-label,
.qty-label,
.total-label {
  display: block;
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.price-value,
.total-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f5f5f5;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  justify-content: center;
}

.qty-btn {
  background: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--light-blue);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.qty-btn:hover {
  background: var(--light-blue);
  color: white;
  transform: scale(1.1);
}

.qty-display {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  min-width: 30px;
  text-align: center;
}

.cart-item-delete {
  background: rgba(255, 107, 107, 0.1);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ff6b6b;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cart-item-delete:hover {
  background: #ff6b6b;
  color: white;
  transform: scale(1.1);
}

/* Empty Cart Page */
.empty-cart-page {
  text-align: center;
  padding: 5rem 2rem;
}

.empty-cart-page i {
  font-size: 6rem;
  color: #ddd;
  margin-bottom: 2rem;
}

.empty-cart-page h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.empty-cart-page p {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 2rem;
}

/* Order Summary Wrapper */
.order-summary-wrapper {
  background: linear-gradient(135deg, #fff5e6 0%, #e6f3ff 100%);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.order-summary-wrapper h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.order-summary-wrapper h3 i {
  color: var(--light-blue);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 1rem;
}

.summary-row span {
  color: #666;
}

.summary-row strong {
  color: var(--dark-blue);
  font-size: 1.1rem;
}

.summary-divider {
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  margin: 1rem 0;
}

.total-row {
  padding: 1.5rem 0;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.total-row span {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-blue);
}

.total-row strong {
  font-size: 2rem;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Delivery Options */
.delivery-options {
  margin: 2rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
}

.delivery-options h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.delivery-options h5 i {
  color: var(--light-blue);
}

.delivery-option {
  margin-bottom: 1rem;
}

.delivery-option:last-child {
  margin-bottom: 0;
}

.delivery-option input[type="radio"] {
  display: none;
}

.delivery-option label {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.delivery-option input[type="radio"]:checked + label {
  border-color: var(--light-blue);
  background: rgba(77, 168, 218, 0.05);
}

.delivery-option label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.delivery-option input[type="radio"]:checked + label::before {
  border-color: var(--light-blue);
  background: var(--light-blue);
  box-shadow: inset 0 0 0 3px white;
}

.option-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.option-info strong {
  font-size: 1rem;
  color: var(--dark-blue);
}

.option-info span {
  font-size: 0.85rem;
  color: #888;
}

/* Location Selector & Delivery Address */
.location-selector,
.delivery-address {
  margin: 1.5rem 0;
}

.location-selector label,
.delivery-address label {
  display: block;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.location-selector label i,
.delivery-address label i {
  color: var(--light-blue);
  margin-right: 0.5rem;
}

.location-selector select,
.delivery-address textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
}

.location-selector select:focus,
.delivery-address textarea:focus {
  border-color: var(--light-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(77, 168, 218, 0.1);
}

/* Promo Code Section */
.promo-code-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
}

.promo-code-section label {
  display: block;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.promo-code-section label i {
  color: var(--light-blue);
  margin-right: 0.5rem;
}

.promo-input-group {
  display: flex;
  gap: 0.8rem;
}

.promo-input-group input {
  flex: 1;
  padding: 0.9rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.promo-input-group input:focus {
  border-color: var(--light-blue);
  outline: none;
}

.btn-apply-promo {
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  border: none;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-apply-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(77, 168, 218, 0.3);
}

.promo-message {
  margin-top: 0.8rem;
  padding: 0.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.promo-message.success {
  background: rgba(67, 233, 123, 0.1);
  color: #27ae60;
}

.promo-message.error {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

/* Checkout Button */
.btn-checkout {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  color: white;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn-checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-checkout i {
  font-size: 1.5rem;
}

.secure-checkout {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.secure-checkout i {
  color: #27ae60;
}

/* Recommended Section */
.recommended-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-cream) 0%, #e6f3ff 100%);
}

.recommended-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

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

.recommended-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

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

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

.recommended-info {
  padding: 1.5rem;
}

.recommended-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.3rem;
}

.recommended-info .text-muted {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.recommended-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recommended-price span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.btn-add-recommended {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-add-recommended:hover {
  transform: scale(1.1) rotate(90deg);
}

.btn-add-recommended.added {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Trust Badges Section */
.trust-badges-section {
  padding: 60px 0;
  background: white;
}

.trust-badge {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #fff5e6 0%, #e6f3ff 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.trust-badge i {
  font-size: 3rem;
  background: linear-gradient(
    135deg,
    var(--warm-orange) 0%,
    var(--light-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.trust-badge h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.trust-badge p {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .cart-page-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .cart-item-price,
  .cart-item-quantity-control,
  .cart-item-total-price {
    grid-column: span 2;
  }

  .cart-item-delete {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .order-summary-wrapper {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .cart-hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .cart-hero h1 {
    font-size: 2.2rem;
  }

  .cart-progress {
    margin-top: 2rem;
  }

  .progress-icon {
    width: 50px;
    height: 50px;
  }

  .progress-icon i {
    font-size: 1.5rem;
  }

  .progress-step span {
    font-size: 0.85rem;
  }

  .progress-line {
    width: 50px;
    margin: 0 0.5rem;
  }

  .cart-items-wrapper,
  .order-summary-wrapper {
    padding: 1.5rem;
  }

  .cart-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .cart-page-item {
    grid-template-columns: 70px 1fr;
    padding: 1rem;
  }

  .cart-item-image {
    width: 70px;
    height: 70px;
  }

  .cart-item-info h4 {
    font-size: 1rem;
  }

  .promo-input-group {
    flex-direction: column;
  }

  .btn-apply-promo {
    width: 100%;
  }
}


/* blog styling */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.page-hero h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Filter Pills */
.nav-pills .nav-link {
  color: var(--secondary-color);
  border-radius: 30px;
  padding: 10px 25px;
  margin: 0 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-pills .nav-link:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.nav-pills .nav-link.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  box-shadow: 0 4px 10px rgba(77, 168, 218, 0.3);
}

/* Public Blog Cards */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(77, 168, 218, 0.2) !important;
}

.card {
  border-radius: 12px;
  overflow: hidden;
}

.card-img-top {
  transition: transform 0.3s ease;
}

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

.badge.bg-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-width: 2px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(77, 168, 218, 0.3);
}

/* Blog Detail Page */
.blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.blog-content h2,
.blog-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-weight: 700;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.blog-content a:hover {
  color: var(--secondary-color);
}

.badge.bg-light {
  background-color: var(--accent-color) !important;
  color: var(--secondary-color) !important;
  border: 1px solid #e0e0e0;
}

/* Social Share Buttons */
.btn-outline-info {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-info:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-outline-secondary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Event Cards (Public) */

/* ==================== EVENTS LISTING PAGE CSS ==================== */

/* Hero Section */
.events-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.events-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.events-hero h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

.events-hero .lead {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* Filter Pills */
.filter-pills {
  margin-bottom: 3rem;
}

.filter-pills .nav-pills {
  justify-content: center;
  gap: 0.5rem;
}

.filter-pills .nav-link {
  color: var(--secondary-color);
  background: white;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-pills .nav-link:hover {
  background: var(--accent-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(77, 168, 218, 0.15);
}

.filter-pills .nav-link.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(77, 168, 218, 0.3);
  transform: translateY(-2px);
}

/* Events Grid */
.events-grid {
  padding: 2rem 0;
}

/* Event Card */
.event-listing-card {
  border-radius: 16px;
  overflow: hidden;
  border: none;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.event-listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(77, 168, 218, 0.2);
}

.event-listing-card .event-image-wrapper {
  height: 100%;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.event-listing-card .event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-listing-card:hover .event-image {
  transform: scale(1.1);
}

/* Date Badge */
.event-date-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: white;
  border-radius: 12px;
  padding: 0.75rem;
  text-align: center;
  min-width: 70px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.event-date-pill .day {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.event-date-pill .month {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Event Content */
.event-listing-card .card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-listing-card .card-title {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.event-listing-card .card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Event Meta Info */
.event-meta {
  margin-top: auto;
}

.event-meta-item {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.event-meta-item i {
  color: var(--primary-color);
  width: 20px;
}

/* Event Footer */
.event-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 2px solid var(--accent-color);
}

.event-attendees {
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 600;
}

.event-attendees i {
  color: var(--primary-color);
}

/* View Details Button */
.btn-view-details {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(77, 168, 218, 0.25);
}

.btn-view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(77, 168, 218, 0.35);
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
}

/* Status Badges in Listing */
.event-listing-card .badge {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-listing-card .badge.bg-success {
  background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%) !important;
}

.event-listing-card .badge.bg-warning {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%) !important;
  color: #333 !important;
}

.event-listing-card .badge.bg-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
}

/* Empty State */
.events-empty-state {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--background-light);
  border-radius: 16px;
  margin: 2rem 0;
}

.events-empty-state i {
  color: var(--primary-color);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}

.events-empty-state h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.events-empty-state p {
  color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .events-hero {
      padding: 60px 0 40px;
  }

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

  .filter-pills .nav-link {
      padding: 0.6rem 1.25rem;
      font-size: 0.9rem;
      margin: 0.25rem;
  }

  .event-listing-card .row {
      flex-direction: column;
  }

  .event-listing-card .event-image-wrapper {
      min-height: 200px;
  }

  .event-card-footer {
      flex-direction: column;
      gap: 1rem;
      align-items: stretch;
  }

  .btn-view-details {
      width: 100%;
  }
}

/* Animation for filtered items */
.event-item {
  animation: fadeIn 0.5s ease;
}

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

/* ==================== EVENT DETAIL PAGE CSS ==================== */

/* Back Button */
.btn-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: var(--secondary-color);
  transform: translateX(-5px);
}

/* Event Detail Card */
.event-detail-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(77, 168, 218, 0.15);
  border: none;
  background: white;
}

.event-detail-card .card-img-top {
  max-height: 400px;
  object-fit: cover;
  position: relative;
}

.event-detail-card .card-body {
  padding: 2.5rem;
}

/* Status Badges */
.badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.bg-success {
  background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%) !important;
  border: none;
}

.badge.bg-warning {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%) !important;
  color: #333 !important;
  border: none;
}

.badge.bg-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
  border: none;
}

.badge.bg-danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
  border: none;
}

/* Event Title */
.event-detail-card h1 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Event Info Grid */
.event-info-item {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.event-info-item:hover {
  background: var(--accent-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(77, 168, 218, 0.1);
}

.event-info-item i {
  color: var(--primary-color);
}

.event-info-item h6 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-info-item p {
  color: #666;
  margin-bottom: 0;
}

/* Description Section */
.event-description {
  border-top: 2px solid var(--accent-color);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.event-description h4 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.event-description h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

.event-description .lead {
  color: #555;
  line-height: 1.8;
}

/* Registration Section */
.registration-section {
  border-top: 2px solid var(--accent-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.registration-section .text-muted {
  font-size: 1rem;
  color: var(--secondary-color) !important;
  font-weight: 500;
}

/* Register Button */
.btn-register {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(77, 168, 218, 0.3);
}

.btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(77, 168, 218, 0.4);
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-register:disabled {
  background: #cccccc;
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-register:disabled:hover {
  transform: none;
}

/* Registration Modal */
#registerModal .modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
}

#registerModal .modal-header {
  background: linear-gradient(90deg, rgba(77, 168, 218, 0.95) 0%, rgba(44, 95, 125, 0.95) 100%);
  color: white;
  border-bottom: none;
  padding: 1.5rem 2rem;
}

#registerModal .modal-title {
  font-weight: 700;
  font-size: 1.3rem;
}

#registerModal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 1;
}

#registerModal .modal-body {
  padding: 2rem;
  background: var(--background-light);
}

#registerModal .form-label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

#registerModal .form-control,
#registerModal .form-select {
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  background: white;
}

#registerModal .form-control:focus,
#registerModal .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(77, 168, 218, 0.15);
  outline: none;
}

#registerModal .modal-footer {
  padding: 1.5rem 2rem;
  border-top: 2px solid var(--accent-color);
  background: white;
}

#registerModal .btn-secondary {
  background: #6c757d;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#registerModal .btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

#registerModal .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(77, 168, 218, 0.3);
}

#registerModal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77, 168, 218, 0.4);
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .event-detail-card .card-body {
      padding: 1.5rem;
  }

  .event-info-item {
      margin-bottom: 1rem;
  }

  .registration-section {
      flex-direction: column;
      align-items: stretch;
  }

  .btn-register {
      width: 100%;
      padding: 1rem 2rem;
  }

  #registerModal .modal-body {
      padding: 1.5rem;
  }
}

/* Additional Utilities */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.text-secondary-custom {
  color: var(--secondary-color) !important;
}

.bg-light-custom {
  background: var(--background-light) !important;
}

.bg-accent-custom {
  background: var(--accent-color) !important;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus,
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(77, 168, 218, 0.25);
}

/* Loading Animation */
@keyframes pulse {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Success State */
.success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #28a745;
  margin-bottom: 1rem;
}

/* Error State */
.error-message {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #dc3545;
  margin-bottom: 1rem;
}


/* ==================== EVENT DETAIL PAGE CSS ==================== */

/* Back Button */
.btn-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: var(--secondary-color);
  transform: translateX(-5px);
}

/* Event Detail Card */
.event-detail-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(77, 168, 218, 0.15);
  border: none;
  background: white;
}

.event-detail-card .card-img-top {
  max-height: 400px;
  object-fit: cover;
  position: relative;
}

.event-detail-card .card-body {
  padding: 2.5rem;
}

/* Status Badges */
.badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.bg-success {
  background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%) !important;
  border: none;
}

.badge.bg-warning {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%) !important;
  color: #333 !important;
  border: none;
}

.badge.bg-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
  border: none;
}

.badge.bg-danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
  border: none;
}

/* Event Title */
.event-detail-card h1 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Event Info Grid */
.event-info-item {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.event-info-item:hover {
  background: var(--accent-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(77, 168, 218, 0.1);
}

.event-info-item i {
  color: var(--primary-color);
}

.event-info-item h6 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-info-item p {
  color: #666;
  margin-bottom: 0;
}

/* Description Section */
.event-description {
  border-top: 2px solid var(--accent-color);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.event-description h4 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.event-description h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

.event-description .lead {
  color: #555;
  line-height: 1.8;
}

/* Registration Section */
.registration-section {
  border-top: 2px solid var(--accent-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.registration-section .text-muted {
  font-size: 1rem;
  color: var(--secondary-color) !important;
  font-weight: 500;
}

/* Register Button */
.btn-register {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(77, 168, 218, 0.3);
}

.btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(77, 168, 218, 0.4);
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-register:disabled {
  background: #cccccc;
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-register:disabled:hover {
  transform: none;
}

/* Registration Modal */
#registerModal .modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
}

#registerModal .modal-header {
  background: linear-gradient(90deg, rgba(77, 168, 218, 0.95) 0%, rgba(44, 95, 125, 0.95) 100%);
  color: white;
  border-bottom: none;
  padding: 1.5rem 2rem;
}

#registerModal .modal-title {
  font-weight: 700;
  font-size: 1.3rem;
}

#registerModal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 1;
}

#registerModal .modal-body {
  padding: 2rem;
  background: var(--background-light);
}

#registerModal .form-label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

#registerModal .form-control,
#registerModal .form-select {
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  background: white;
}

#registerModal .form-control:focus,
#registerModal .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(77, 168, 218, 0.15);
  outline: none;
}

#registerModal .modal-footer {
  padding: 1.5rem 2rem;
  border-top: 2px solid var(--accent-color);
  background: white;
}

#registerModal .btn-secondary {
  background: #6c757d;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#registerModal .btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

#registerModal .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(77, 168, 218, 0.3);
}

#registerModal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77, 168, 218, 0.4);
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .event-detail-card .card-body {
      padding: 1.5rem;
  }

  .event-info-item {
      margin-bottom: 1rem;
  }

  .registration-section {
      flex-direction: column;
      align-items: stretch;
  }

  .btn-register {
      width: 100%;
      padding: 1rem 2rem;
  }

  #registerModal .modal-body {
      padding: 1.5rem;
  }
}

/* Additional Utilities */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.text-secondary-custom {
  color: var(--secondary-color) !important;
}

.bg-light-custom {
  background: var(--background-light) !important;
}

.bg-accent-custom {
  background: var(--accent-color) !important;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus,
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(77, 168, 218, 0.25);
}

/* Loading Animation */
@keyframes pulse {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Success State */
.success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #28a745;
  margin-bottom: 1rem;
}

/* Error State */
.error-message {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #dc3545;
  margin-bottom: 1rem;
}


/* home page style */

/* Section Header */
.section-title-small {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* Blog Preview Styles */
.blog-preview-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-preview-item {
  background: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-preview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(77, 168, 218, 0.2);
}

.blog-preview-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 120px;
}

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

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

.blog-category-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--primary-color);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

.blog-preview-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-meta {
  color: #666;
  font-size: 0.85rem;
}

.blog-preview-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-preview-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.blog-preview-excerpt {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.5;
}

.read-more-link {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.read-more-link:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

/* Event Preview Styles */
.events-preview-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-preview-item {
  background: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.event-preview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(77, 168, 218, 0.2);
}

.event-preview-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 120px;
}

.event-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-preview-item:hover .event-preview-image img {
  transform: scale(1.1);
}

.event-date-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: white;
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-date-badge .day {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.event-date-badge .month {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
}

.event-preview-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-preview-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.event-preview-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.event-preview-title a:hover {
  color: var(--primary-color);
}

.event-preview-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.meta-item {
  color: #666;
  font-size: 0.85rem;
}

.meta-item i {
  color: var(--primary-color);
}

.view-event-link {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.view-event-link:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

/* Empty State */
.empty-state-small {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .section-title-small {
      font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .blog-preview-image,
  .event-preview-image {
      height: 100px;
  }
  
  .blog-preview-title,
  .event-preview-title {
      font-size: 1rem;
  }
  
  .blog-preview-excerpt {
      font-size: 0.85rem;
  }
}