:root {
  --bs-primary: #00A651;
  --bs-secondary: #4CC9F0;
  --bs-danger: #FF6B6B;
  --bs-dark: #1a1a1a;
  --bs-dark-light: #2d2d2d;
  --bs-dark-lighter: #3a3a3a;
  --gradient-primary: linear-gradient(135deg, #00A651 0%, #4CC9F0 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(76, 201, 240, 0.3);
}

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

body {
  font-family: 'Titillium Web', sans-serif;
  background: var(--gradient-dark);
  background-attachment: fixed;
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 80px;
}

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

/* Navbar Styles */
.navbar {
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76, 201, 240, 0.15);
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(76, 201, 240, 0.3);
}

.navbar-brand {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.75rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.search-box {
  position: relative;
  width: 300px;
}

.search-box input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(76, 201, 240, 0.2);
  color: #fff;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.search-box input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--bs-secondary);
  box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.15), var(--shadow-glow);
  color: #fff;
  outline: none;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-search {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--bs-secondary);
  width: 35px;
  height: 35px;
  padding: 0;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search:hover {
  color: #fff;
  background: rgba(76, 201, 240, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0.25rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-align: center;
}

.navbar-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

.navbar-nav .nav-link {
  width: 100%;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--gradient-primary);
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #fff;
  background: rgba(76, 201, 240, 0.1);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.cart-btn {
  background: rgba(0, 166, 81, 0.1);
  border: 2px solid var(--bs-primary);
  color: var(--bs-primary);
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
}

.cart-btn .snipcart-items-count {
  font-size: 1rem;
  font-weight: 700;
}

.cart-btn .snipcart-total-price {
  display: none;
}

.cart-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.cart-btn:hover {
  color: #fff;
  border-color: var(--bs-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.4);
}

.cart-btn:hover::before {
  left: 0;
}

.breadcrumb {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  margin: 1rem 0;
  border: 1px solid rgba(76, 201, 240, 0.1);
}

.breadcrumb-item a {
  color: var(--bs-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #fff;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}

.hero-section .carousel {
  position: relative;
}

.hero-section .carousel-item {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-section .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  transition: transform 0.5s ease;
}

.hero-section .carousel-item:hover img {
  transform: scale(1.05);
}

.hero-section .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-section .carousel-caption h1 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease;
  line-height: 1.2;
}

.hero-section .carousel-caption p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease 0.2s both;
  opacity: 0.95;
}

.hero-section .btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 166, 81, 0.4);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease 0.4s both;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0, 166, 81, 0.6);
  background: linear-gradient(135deg, #00C565 0%, #5DD9FF 100%);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid rgba(76, 201, 240, 0.3);
  transition: all 0.3s ease;
}

.hero-section .carousel-control-prev {
  left: 2rem;
}

.hero-section .carousel-control-next {
  right: 2rem;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
  background: rgba(76, 201, 240, 0.2);
  border-color: var(--bs-secondary);
  transform: translateY(-50%) scale(1.1);
}

.hero-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.hero-section .carousel-indicators button.active {
  background: var(--bs-secondary);
  border-color: var(--bs-secondary);
  width: 30px;
  border-radius: 6px;
}

/* Categories Section */
.categories-section {
  background: rgba(26, 26, 26, 0.3);
  position: relative;
  padding: 5rem 0;
}

.categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(76, 201, 240, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.categories-section h2 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 201, 240, 0.1);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.category-card:hover::before {
  opacity: 0.1;
}

.category-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.7);
}

.category-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  z-index: 2;
}

.category-content h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.category-content p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.category-content .btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.category-content .btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.4);
}

/* Featured Products Section */
.featured-products {
  background: rgba(26, 26, 26, 0.4);
  padding: 5rem 0;
  position: relative;
}

.featured-products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 166, 81, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.featured-products h2 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(76, 201, 240, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(76, 201, 240, 0.2);
  border-color: rgba(76, 201, 240, 0.4);
}

.product-card a {
  display: block;
  position: relative;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.5);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}

.product-card:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

.product-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-content h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-content h3 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-content h3 a:hover {
  color: var(--bs-secondary);
}

.product-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bs-secondary);
  margin-bottom: 1rem;
  font-family: 'Montserrat Alternates', sans-serif;
}

.product-content .btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  width: 100%;
  margin-top: auto;
}

.product-content .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 166, 81, 0.5);
  background: linear-gradient(135deg, #00C565 0%, #5DD9FF 100%);
}

/* Benefits Section */
.benefits-section {
  background: rgba(26, 26, 26, 0.5);
  padding: 5rem 0;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 50%, rgba(76, 201, 240, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.benefits-section h2 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(76, 201, 240, 0.15);
  height: 100%;
  box-shadow: var(--shadow-md);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 30px rgba(76, 201, 240, 0.15);
  border-color: rgba(76, 201, 240, 0.4);
  background: rgba(26, 26, 26, 0.8);
}

.benefit-card i {
  font-size: 3.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.benefit-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

.benefit-card h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  background: rgba(26, 26, 26, 0.4);
  padding: 5rem 0;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 166, 81, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-section h2 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info i {
  color: var(--bs-secondary);
  width: 25px;
  margin-right: 15px;
  font-size: 1.2rem;
}

.contact-form {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(76, 201, 240, 0.15);
  box-shadow: var(--shadow-lg);
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(76, 201, 240, 0.2);
  color: #fff;
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  transition: all 0.3s ease;
  margin-bottom: 1.25rem;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--bs-secondary);
  box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.15);
  color: #fff;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

.contact-form .btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.875rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 166, 81, 0.5);
  background: linear-gradient(135deg, #00C565 0%, #5DD9FF 100%);
}

/* Footer Styles */
.footer {
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(76, 201, 240, 0.2);
  margin-top: 4rem;
}

.footer-title {
  color: var(--bs-secondary);
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.footer h5 {
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

.contact-item i {
  color: var(--bs-secondary);
  width: 20px;
  margin-right: 15px;
  font-size: 1.1rem;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

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

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer a:hover {
  color: var(--bs-secondary);
  transform: translateX(5px);
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info i {
  color: var(--bs-secondary);
  width: 20px;
  margin-right: 10px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(76, 201, 240, 0.15);
}

.footer-bottom hr {
  border-color: rgba(76, 201, 240, 0.2);
  margin-bottom: 1.5rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--bs-secondary);
  padding: 1.5rem 0;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons .btn {
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-buttons .btn-primary {
  background: var(--gradient-primary);
  border: none;
}

.cookie-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.4);
}

/* Contact Page Styles */
.contact-hero {
  background: var(--gradient-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, rgba(0, 166, 81, 0.1), rgba(76, 201, 240, 0.1));
  pointer-events: none;
}

.contact-hero h1 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-card {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 201, 240, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 30px rgba(76, 201, 240, 0.2);
  border-color: rgba(76, 201, 240, 0.4);
}

.contact-card i {
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.contact-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

.contact-card h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-form-section .card {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 201, 240, 0.2);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.contact-form-section .form-control,
.contact-form-section .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(76, 201, 240, 0.2);
  color: #fff;
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  transition: all 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--bs-secondary);
  box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.15);
  color: #fff;
  outline: none;
}

.contact-form-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form-section label {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(76, 201, 240, 0.2);
}

.map-section h2 {
  font-family: 'Montserrat Alternates', sans-serif;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-section,
.form-section,
.support-section,
.team-section {
  background: rgba(26, 26, 26, 0.4);
  position: relative;
}

.process-section::before,
.form-section::before,
.support-section::before,
.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(76, 201, 240, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.process-section .card,
.form-section .card,
.support-section .card,
.team-section .card {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 201, 240, 0.15);
  color: #fff;
}

.process-section .card-body,
.form-section .card-body,
.support-section .card-body,
.team-section .card-body {
  color: #fff;
}

.process-section .form-label,
.form-section .form-label,
.support-section .form-label,
.team-section .form-label {
  color: rgba(255, 255, 255, 0.95);
}

.process-section .card-title,
.form-section .card-title,
.support-section .card-title,
.team-section .card-title {
  color: #fff;
}

.process-section .card-text,
.form-section .card-text,
.support-section .card-text,
.team-section .card-text {
  color: rgba(255, 255, 255, 0.9);
}

.process-section .card-subtitle,
.form-section .card-subtitle,
.support-section .card-subtitle,
.team-section .card-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.process-section .list-group-item,
.form-section .list-group-item,
.support-section .list-group-item,
.team-section .list-group-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(76, 201, 240, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.process-section .nav-link,
.form-section .nav-link,
.support-section .nav-link,
.team-section .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.process-section .nav-link.active,
.form-section .nav-link.active,
.support-section .nav-link.active,
.team-section .nav-link.active {
  background: var(--gradient-primary);
  color: #fff;
}

.process-section .progress,
.form-section .progress,
.support-section .progress,
.team-section .progress {
  background: rgba(255, 255, 255, 0.1);
  height: 30px;
}

.process-section .progress-bar,
.form-section .progress-bar,
.support-section .progress-bar,
.team-section .progress-bar {
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-section h3,
.form-section h3,
.support-section h3,
.team-section h3 {
  color: #fff;
  font-family: 'Montserrat Alternates', sans-serif;
}

.process-section p,
.form-section p,
.support-section p,
.team-section p {
  color: rgba(255, 255, 255, 0.9);
}

.accordion-item {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 201, 240, 0.15);
  color: #fff;
}

.accordion-button {
  background: rgba(26, 26, 26, 0.5);
  color: #fff;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: rgba(76, 201, 240, 0.2);
  color: #fff;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 201, 240, 0.25);
}

.accordion-body {
  background: rgba(26, 26, 26, 0.5);
  color: rgba(255, 255, 255, 0.9);
}

.text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.container .text-muted,
.card .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00C565 0%, #5DD9FF 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.4);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section .carousel-caption h1 {
    font-size: 1.75rem;
  }
  
  .hero-section .carousel-caption p {
    font-size: 1rem;
  }
  
  .categories-section h2,
  .featured-products h2,
  .benefits-section h2 {
    font-size: 2rem;
  }
  
  .category-card img {
    height: 300px;
  }
  
  .product-card img {
    height: 220px;
  }
  
  .search-box {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next {
    width: 45px;
    height: 45px;
  }
  
  .hero-section .carousel-control-prev {
    left: 1rem;
  }
  
  .hero-section .carousel-control-next {
    right: 1rem;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00C565 0%, #5DD9FF 100%);
}
