:root{
  --brand:#2e7d32;      /* primary brand */
  --brand-600:#1b5e20;  /* darker shade */
  --accent:#25D366;     /* WhatsApp green */
  --bg:#f6f8f9;         /* background */
  --text:#1f2d3d;       /* text color */
}
html,body{height:100%;}
body{background:var(--bg);color:var(--text);font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;min-height:100vh;display:flex;flex-direction:column;overflow-x:hidden;padding-top:72px;}
.page-content{flex:1 0 auto;position:relative;}
.topbar{background:var(--brand-600);} 
.navbar .brand-text{font-weight:600}
.navbar-brand-text{font-weight:600}
.announce-bar{background:var(--brand-600); position: fixed; top: 0; left: 0; right: 0; z-index: 1040;}

/* Social Media Links Styling */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  text-decoration: none;
}

.social-links a i {
  font-size: 14px;
}
.navbar-modern{background:#ffffff;border-bottom:1px solid #eef2f4; position: fixed !important; top: 28px !important; left: 0 !important; right: 0 !important; z-index: 1050; will-change: transform; transform: translateZ(0);}
.navbar-modern .nav-link{color:#1f2d3d}
.navbar-modern .nav-link:hover{color:var(--brand-600)}

/* Dropdown z-index fix - More aggressive approach */
.navbar-modern .dropdown-menu {
  z-index: 9999 !important;
  position: absolute !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Force dropdown to be visible when shown */
.navbar-modern .dropdown.show .dropdown-menu {
  z-index: 9999 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Ensure navbar container doesn't clip dropdowns */
.navbar-modern .container {
  overflow: visible !important;
}

.navbar-modern .navbar-nav {
  overflow: visible !important;
}

.navbar-modern .nav-item.dropdown {
  overflow: visible !important;
}

/* Ensure dropdown parent has proper positioning */
.navbar-modern .nav-item.dropdown {
  position: relative !important;
}

/* Override any potential Bootstrap conflicts */
.dropdown-menu {
  z-index: 9999 !important;
}

/* Portal dropdown - highest priority */
#portal-dropdown {
  z-index: 99999 !important;
  position: fixed !important;
  background: white !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 0.375rem !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  min-width: 200px !important;
  padding: 0.5rem 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

#portal-dropdown .dropdown-item {
  display: block !important;
  width: 100% !important;
  padding: 0.5rem 1rem !important;
  clear: both !important;
  font-weight: 400 !important;
  color: #212529 !important;
  text-align: inherit !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  background-color: transparent !important;
  border: 0 !important;
}

#portal-dropdown .dropdown-item:hover {
  color: #1e2125 !important;
  background-color: #e9ecef !important;
}

#portal-dropdown .dropdown-divider {
  height: 0 !important;
  margin: 0.5rem 0 !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(0, 0, 0, 0.15) !important;
}

/* Center the navigation menu and search together */
.navbar-center-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.navbar-modern .navbar-nav {
  margin: 0;
  justify-content: center;
  display: flex;
  align-items: center;
}

.navbar-modern .header-search {
  margin-left: 2rem;
}

/* Logo positioning at left margin */
.navbar-logo-container {
  position: absolute;
  left: 4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1051;
  padding-left: 1rem;
  padding-right: 1rem;
  min-width: 200px;
  max-width: 300px;
  overflow: visible;
  pointer-events: auto;
}

.navbar-logo-container .navbar-brand {
  margin: 0;
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
  overflow: visible;
}

.navbar-logo-container .navbar-brand:hover {
  text-decoration: none;
}

.navbar-brand-text {
  font-weight: 600;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
}

/* Adjust container to account for logo */
.navbar-modern .container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 4rem;
  width: calc(100% - 300px);
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-logo-container {
    position: relative;
    transform: none;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0.5rem;
    min-width: auto;
  }
  
  .navbar-modern .container {
    margin-left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
  }
  
  .navbar-modern {
    flex-direction: column;
    align-items: stretch;
    position: fixed !important;
    top: 28px !important;
  }
  
  body {
    padding-top: 92px;
  }
}
.btn-outline-whatsapp{border:1px solid #25D366;color:#25D366}
.btn-outline-whatsapp:hover{background:#25D366;color:#fff}
.btn-cart{background:var(--brand);color:#fff}
.btn-cart:hover{background:var(--brand-600);color:#fff}
.header-search .input-group-text{background:#f3f6f8;border-color:#e6ebef}
.header-search .form-control{border-color:#e6ebef}
.btn-success{background-color:var(--brand);border-color:var(--brand);} .btn-success:hover{background-color:var(--brand-600);border-color:var(--brand-600)}
.btn-whatsapp{background-color:var(--accent);color:#fff;} .btn-whatsapp:hover{background:#1ebe5d;color:#fff}
.btn-outline-danger{border:1px solid #dc3545;color:#dc3545} .btn-outline-danger:hover{background:#dc3545;color:#fff}

/* Wishlist Badge Animation */
@keyframes wishlistBadgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.wishlist-badge-pulse {
  animation: wishlistBadgePulse 0.3s ease-in-out;
}
.hero{background:linear-gradient(135deg,#e8f5e9,#ffffff);border:1px solid #e5ecef}
.hero img{object-fit:cover}
.product-card{transition:transform .2s, box-shadow .2s}
.product-card:hover{transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,.08)}
.price{color:var(--brand-600);font-weight:600}
 .site-footer{background:#1b5e20;color:#ecfdf5;border-top:none;padding-bottom:2rem;}
 .site-footer a{color:#e7f6ed;text-decoration:none}
 .site-footer a:hover{color:#ffffff;text-decoration:underline}
 .site-footer .footer-title{font-size:.8rem;text-transform:uppercase;letter-spacing:.08em;color:#bfe6cf;margin-bottom:.5rem}
 .site-footer .footer-brand-name{font-weight:700;color:#ffffff}
 .site-footer .footer-text{color:#d6f3e3}
 .footer-bottom{border-top:1px solid rgba(255,255,255,.15)}
 .socials .social-btn{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border:1px solid rgba(255,255,255,.25);border-radius:50%;color:#e7f6ed;background:transparent;transition:all .2s}
 .socials .social-btn:hover{border-color:#e7f6ed;color:#1b5e20;background:#e7f6ed}
 .footer-accent{height:3px;background:linear-gradient(90deg,#b9fbc0,#98f5e1,#8eecf5,#90dbf4,#a3c4f3);border-radius:2px;margin-bottom:16px;opacity:.9}
 .chip{display:inline-flex;align-items:center;gap:.4rem;border:1px solid rgba(255,255,255,.25);padding:.3rem .6rem;border-radius:999px;color:#e7f6ed}
 .chip i{opacity:.9}
 .link-icon{display:inline-flex;align-items:center;gap:.5rem}
 .link-icon i{opacity:.9}

 /* Pre-footer CTA */
 .prefooter-cta{background:linear-gradient(135deg,#2e7d32 0%, #1b5e20 60%); color:#ecfdf5; border-radius:16px; padding:24px}
 .prefooter-cta .badge-soft{display:inline-flex;align-items:center;gap:.4rem; background:rgba(255,255,255,.12); color:#e7f6ed; border:1px solid rgba(255,255,255,.18); border-radius:999px; padding:.35rem .7rem; font-size:.85rem}
 .btn-wa-large{display:inline-flex;align-items:center;gap:.5rem; background:#25D366; color:#fff; border:none; padding:.7rem 1rem; border-radius:10px}
 .btn-wa-large:hover{background:#1ebe5d;color:#fff}

 /* Footer creative touches */
 .footer-wave{width:100%; height:22px; display:block; opacity:.65}
 .footer-inner{position:relative; isolation:isolate}
 .footer-inner:before{content:""; position:absolute; inset:-20% -10% auto -10%; height:200px; background:radial-gradient(600px 180px at 10% -10%, rgba(255,255,255,.08), transparent 60%); z-index:0}
 .footer-inner > *{position:relative; z-index:1}

/* Single Product Image Styling */
.product-image {
  max-height: 400px;
  object-fit: contain;
  width: 100%;
}

/* Product Card Enhancements */
.product-card .btn-outline-secondary:hover {
  background-color: var(--brand);
  border-color: var(--brand);
  color: white;
}

/* Filter Panel */
#filterPanel .card {
  border: 1px solid #e6ebef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Stock Status Badges */
.badge.bg-success {
  background-color: var(--brand) !important;
}

.badge.bg-warning {
  background-color: #ffc107 !important;
  color: #000 !important;
}

.badge.bg-danger {
  background-color: #dc3545 !important;
}

/* Product Tags */
.badge.bg-light {
  background-color: #f8f9fa !important;
  color: #6c757d !important;
  border: 1px solid #dee2e6;
}

/* Related Products */
.related-products .product-card {
  transition: transform 0.2s ease;
}

.related-products .product-card:hover {
  transform: translateY(-2px);
}

/* Quick Add Button */
.btn-outline-secondary {
  border-color: #6c757d;
  color: #6c757d;
}

 .btn-outline-secondary:hover {
   background-color: #6c757d;
   border-color: #6c757d;
   color: white;
 }

/* Wishlist Button */
.btn-outline-danger {
   border-color: #dc3545;
   color: #dc3545;
}

.btn-outline-danger:hover {
   background-color: #dc3545;
   border-color: #dc3545;
   color: white;
}

/* Quick View Modal */
.modal-lg {
   max-width: 800px;
}

/* Review Stars */
.rating-stars {
   display: flex;
   gap: 0.5rem;
   font-size: 1.5rem;
}

.rating-input {
   display: none;
}

.rating-star {
   cursor: pointer;
   color: #dee2e6;
   transition: color 0.2s;
}

.rating-star:hover,
.rating-star:hover ~ .rating-star,
.rating-input:checked ~ .rating-star {
   color: #ffc107;
}

.rating-input:checked ~ .rating-star {
   color: #ffc107;
}

/* Review Progress Bars */
.progress {
   background-color: #f8f9fa;
   border-radius: 4px;
}

.progress-bar.bg-warning {
   background-color: #ffc107 !important;
}

/* Space between elements */
.space-y-2 > * + * {
   margin-top: 0.5rem;
}

/* Recently Viewed Empty State */
.text-center.py-5 {
   padding: 3rem 0;
}

/* Wishlist Empty State */
.text-center.py-5 i {
   opacity: 0.5;
}

/* Product Card Enhancements */
.product-card .btn-group {
   display: flex;
   gap: 0.25rem;
}

.product-card .btn-sm {
   padding: 0.25rem 0.5rem;
   font-size: 0.875rem;
}

/* Quick View Button */
.btn-outline-secondary[title*="Quick View"] {
   border-color: #6c757d;
   color: #6c757d;
}

.btn-outline-secondary[title*="Quick View"]:hover {
   background-color: #6c757d;
   border-color: #6c757d;
   color: white;
 }

/* ===== ADMIN FOOTER BUTTON ===== */
.admin-access {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

.admin-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.admin-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.admin-btn i {
  font-size: 0.9rem;
  opacity: 0.9;
}

.admin-label {
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Responsive admin button */
@media (max-width: 768px) {
  .admin-btn {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  
  .admin-label {
    display: none;
  }
  
  .admin-btn i {
    font-size: 1rem;
  }
}

/* ===== HOMEPAGE FEATURE & CATEGORY ICONS ===== */
/* Enhanced visibility for homepage icons */

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(46,125,50,0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(46,125,50,0.4);
}

.feature-icon i {
  font-size: 2rem;
  color: white !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Category Cards */
.category-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(46,125,50,0.3);
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(46,125,50,0.4);
}

.category-icon i {
  font-size: 2rem;
  color: white !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Hero Section Icons */
.hero-section .bi-recycle {
  color: #28a745 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-section .bi-truck {
  color: #fd7e14 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-section .bi-shield-check {
  color: #007bff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Floating Cards in Hero */
.floating-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.floating-card i {
  font-size: 1.2rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* CTA Section Icons */
.cta-section .bi-whatsapp {
  color: #25d366 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Category Icons Styling */
.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  border: 3px solid #e9ecef;
  transition: all 0.3s ease;
}

.category-icon i {
  font-size: 2rem;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-color: #28a745;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.category-card:hover .category-icon i {
  transform: scale(1.1);
  color: #28a745 !important;
}

.cta-section .bi-arrow-right {
  color: white !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Featured Products Section */
.featured-section .bi-bag {
  color: #6c757d !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.featured-section .bi-collection {
  color: #28a745 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Icon Animations */
@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.feature-icon,
.category-icon {
  animation: iconFloat 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon,
.category-card:hover .category-icon {
  animation: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-icon,
  .category-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i,
  .category-icon i {
    font-size: 1.5rem;
  }
  
  .floating-card {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .floating-card i {
    font-size: 1rem;
  }
}

/* ===== CONTACT PAGE STYLES ===== */
/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%232e7d32" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

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

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-600);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 500;
}

.contact-illustration {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-illustration .floating-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  animation: float 3s ease-in-out infinite;
}

.contact-illustration .floating-card:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.contact-illustration .floating-card:nth-child(2) {
  top: 50%;
  right: 15%;
  animation-delay: 1s;
}

.contact-illustration .floating-card:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

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

/* Contact Information Cards */
.contact-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-card-text {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--brand-600);
  text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-wrapper {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin: 0;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(46,125,50,0.15);
}

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

/* Contact Sidebar */
.contact-sidebar {
  position: sticky;
  top: 2rem;
}

.info-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.info-card-header {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-card-header i {
  font-size: 1.5rem;
}

.info-card-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.info-card-body {
  padding: 1.5rem;
}

/* Business Hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item .day {
  font-weight: 500;
  color: var(--text);
}

.hours-item .time {
  color: #6c757d;
  font-weight: 500;
}

.hours-item .time.closed {
  color: #dc3545;
  font-weight: 600;
}

/* Quick Links */
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.quick-link:hover {
  background: #f8f9fa;
  border-color: var(--brand);
  color: var(--brand);
  text-decoration: none;
}

.quick-link i {
  font-size: 1.2rem;
  color: var(--brand);
}

/* Map Section */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.location-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  height: 100%;
}

.location-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.location-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.location-card p {
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.location-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* FAQ Preview Section */
.faq-preview {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-preview-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.faq-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
}

.faq-item i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-item span {
  font-weight: 500;
  color: var(--text);
}

.support-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.support-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  text-align: center;
  border: 1px solid #f0f0f0;
}

.support-card i {
  font-size: 3rem;
  color: var(--brand);
  margin-bottom: 1rem;
}

.support-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.support-card p {
  color: #6c757d;
  margin: 0;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
  .contact-hero {
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .contact-illustration {
    height: 200px;
    margin-top: 2rem;
  }
  
  .contact-illustration .floating-card {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .contact-sidebar {
    position: static;
    margin-top: 2rem;
  }
  
  .map-container {
    text-align: center;
  }
  
  .location-info {
    margin-top: 1.5rem;
  }
  
  .faq-preview {
    text-align: center;
  }
  
  .support-illustration {
    height: 200px;
    margin-top: 2rem;
  }
}

/* Pagination Styles */
.pagination {
  margin-bottom: 0;
}

.pagination .page-link {
  color: var(--brand);
  border-color: #dee2e6;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.pagination .page-link:hover {
  color: var(--brand-600);
  background-color: #e9ecef;
  border-color: #dee2e6;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pagination .page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
  border-color: var(--brand);
}

.pagination .page-item.active .page-link {
  background-color: var(--brand);
  border-color: var(--brand);
  color: white;
}

.pagination .page-item.active .page-link:hover {
  background-color: var(--brand-600);
  border-color: var(--brand-600);
  color: white;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  background-color: #fff;
  border-color: #dee2e6;
  cursor: not-allowed;
}

.pagination .page-item.disabled .page-link:hover {
  transform: none;
  box-shadow: none;
}

/* Ensure pagination links are clickable */
.pagination .page-link {
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 1;
}

/* Responsive pagination */
@media (max-width: 576px) {
  .pagination .page-link {
    padding: 0.375rem 0.5rem;
    font-size: 0.875rem;
  }
  
  .pagination .page-item:not(.active):not(:first-child):not(:last-child) {
    display: none;
  }
  
  .pagination .page-item:first-child,
  .pagination .page-item:last-child,
  .pagination .page-item.active {
    display: block;
  }
}

