/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  line-height: 1.65;
  font-weight: 400;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* Navbar */
nav {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 80px;
}

nav:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 
              inset 0 1px 0 rgba(255, 255, 255, 1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 32px;
  width: auto;
  border-radius: 6px;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #007AFF, #5856D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.brand-name:hover {
  background: linear-gradient(135deg, #0056CC, #4542B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav ul {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: #475569;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  position: relative;
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
}

nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(0, 122, 255, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

nav a:hover {
  color: #34C759;
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.08), rgba(48, 209, 88, 0.05));
  border-color: rgba(52, 199, 89, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(52, 199, 89, 0.15);
}

nav a:hover::before {
  opacity: 1;
}

nav a.active,
nav a[aria-current="page"],
nav a.current {
  color: #007AFF !important;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.08), rgba(88, 86, 214, 0.05)) !important;
  border-color: rgba(0, 122, 255, 0.2) !important;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.15) !important;
  font-weight: 500 !important;
  transform: translateY(-1px) !important;
}

/* Exclude logo/brand-name from active states */
.logo a.active,
.logo a[aria-current="page"],
.logo a.current,
.brand-name.active,
.brand-name[aria-current="page"],
.brand-name.current {
  color: inherit !important;
  background: inherit !important;
  border-color: transparent !important;
  box-shadow: none !important;
  font-weight: inherit !important;
  transform: none !important;
}

nav a.active::before,
nav a[aria-current="page"]::before,
nav a.current::before {
  opacity: 1;
}

/* Exclude logo from ::before active states */
.logo a.active::before,
.logo a[aria-current="page"]::before,
.logo a.current::before {
  opacity: 0 !important;
}

nav a.active:hover,
nav a[aria-current="page"]:hover,
nav a.current:hover {
  color: #34C759 !important;
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.08), rgba(48, 209, 88, 0.05)) !important;
  border-color: rgba(52, 199, 89, 0.2) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(52, 199, 89, 0.15) !important;
}

nav a:active {
  transform: translateY(0);
  transition: transform 0.1s ease;
}
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #475569;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  color: #007AFF;
  background: rgba(0, 122, 255, 0.1);
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    height: 70px;
    position: relative;
  }
  
  .menu-toggle {
    display: flex !important;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 229, 231, 0.8);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #1d1d1f;
    border-bottom: 1px solid rgba(229, 229, 231, 0.5);
    transition: all 0.3s ease;
  }
  
  .nav-links li:last-child a {
    border-bottom: none;
  }
  
  .nav-links a:hover {
    background: rgba(0, 122, 255, 0.08);
    color: #007AFF;
  }
  
  .nav-links a.active,
  .nav-links a[aria-current="page"],
  .nav-links a.current {
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    font-weight: 600;
  }
  
  .brand-name {
    font-size: 1.2rem;
  }
}

/* Sections */
section {
  padding: 2rem 1rem;
  max-width: 100%;
  margin: 0;
  width: 100%;
}

h1, h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -2px;
  color: #1d1d1f;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -1px;
  color: #1d1d1f;
}

h3 {
  color: #1d1d1f;
  font-weight: 600;
  font-size: 1.2rem;
}
/* Hero */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(0, 122, 255, 0.02) 0%, transparent 60%),
              radial-gradient(circle at 75% 75%, rgba(0, 122, 255, 0.01) 0%, transparent 60%);
}

.hero div {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.2rem;
  color: #6e6e73;
  font-weight: 400;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.cta-button {
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.cta-button.primary {
  background: #007AFF;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.cta-button.primary:hover {
  background: #0056CC;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: #007AFF;
  border: 2px solid #007AFF;
}

.cta-button.secondary:hover {
  background: #007AFF;
  color: white;
  transform: translateY(-2px);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
  width: 100%;
}

.card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  height: auto;
  display: flex;
  flex-direction: column;
}

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

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

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
  height: 180px;
}

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

.card-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #1d1d1f, #2d3748);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.product-category {
  color: #007AFF;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(88, 86, 214, 0.08));
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  border: 1px solid rgba(0, 122, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.1);
  transition: all 0.3s ease;
}

.product-category:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.15);
}

.product-stock {
  color: #007AFF;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(88, 86, 214, 0.08));
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  border: 1px solid rgba(0, 122, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.1);
  transition: all 0.3s ease;
}

.product-stock:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.15);
}

/* Product Meta Container - Add spacing between category and stock */
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .product-meta {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.product-description {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 0;
  flex-shrink: 0;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 4.5rem;
  max-height: 4.5rem;
}

.price-range {
  color: #10b981;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.06));
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow: 0 1px 4px rgba(16, 185, 129, 0.08);
  transition: all 0.3s ease;
  position: relative;
  word-break: break-word;
  overflow-wrap: break-word;
}

.price-range::before {
  content: "₹";
  margin-right: 0.2rem;
  font-weight: 700;
}

.price-range:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
}

.card-spacer {
  flex: 1;
  min-height: 0.5rem;
}

.card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  flex-shrink: 0;
}

.card-actions button,
.card-actions a {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  letter-spacing: 0.1px;
  min-height: 2.5rem;
  text-decoration: none;
}

.card-actions button i,
.card-actions a i {
  font-size: 0.875rem;
  flex-shrink: 0;
}

.card-actions button span,
.card-actions a span {
  flex-shrink: 0;
  font-weight: 500;
}

.details-btn {
  background: #007AFF;
  color: white;
}

.details-btn:hover {
  background: #0056CC;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 122, 255, 0.2);
}

.details-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 122, 255, 0.25);
}

.enquire-btn {
  background: #25D366;
  color: white;
}

.enquire-btn:hover {
  background: #1DA851;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.2);
}

.enquire-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; 
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: #ffffff;
  margin: 5% auto;
  padding: 2.5rem;
  border-radius: 20px;
  width: 90%;
  max-width: 700px;
  color: #1d1d1f;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-images {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-bottom: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.modal-images img {
  width: 200px;
  border-radius: 12px;
  transition: transform 0.2s;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-images img:hover {
  transform: scale(1.02);
}

.modal-description {
  text-align: left;
}

.modal-description h3 {
  color: #1d1d1f;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.modal-description p {
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.enquire-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #1DA851;
  color: white;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.enquire-button:hover {
  background: #0056CC;
  transform: translateY(-1px);
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #8e8e93;
  transition: color 0.2s;
}

.close:hover {
  color: #1d1d1f;
}

/* Animations */
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* About page */
.about-section h2 {
  color: #1d1d1f;
  margin-bottom: 3rem;
  font-size: 2.2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
  text-align: left;
  padding: 2rem 0;
}

.about-grid h3 {
  color: #1d1d1f;
  margin-bottom: 1rem;
}

.about-grid p {
  color: #6e6e73;
  line-height: 1.6;
}

.about-logo img {
  max-width: 60%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* About page enhancements */
.company-tagline {
  text-align: center;
  font-size: 1.3rem;
  color: #6e6e73;
  margin-bottom: 3rem;
  font-weight: 500;
}

.company-story h4 {
  color: #007AFF;
  margin: 1.5rem 0 1rem 0;
  font-size: 1.1rem;
}

.achievements-list {
  list-style: none;
  padding: 0;
}

.achievements-list li {
  background: linear-gradient(135deg, #f8faff, #e8f2ff);
  margin: 0.5rem 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border-left: 4px solid #007AFF;
  transition: all 0.2s ease;
}

.achievements-list li:hover {
  transform: translateX(5px);
  background: linear-gradient(135deg, #e8f2ff, #d0e7ff);
}

.achievements-list li::before {
  content: "✓";
  color: #007AFF;
  font-weight: bold;
  margin-right: 0.5rem;
}

.promoter {
  background: #f8faff;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 12px;
  border: 1px solid #e0e8f0;
}

.promoter strong {
  color: #007AFF;
}

.contact-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-info strong {
  color: #1d1d1f;
}

/* Contact form */
.contact-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.contact-card {
  background: linear-gradient(145deg, #ffffff, #f8fafb);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

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

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.whatsapp-card:hover {
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.2);
}

.email-card:hover {
  box-shadow: 0 20px 60px rgba(234, 67, 53, 0.2);
}

.contact-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.contact-card h3 {
  color: #1d1d1f;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-card p {
  color: #6e6e73;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.feature-tag {
  background: rgba(0, 122, 255, 0.1);
  color: #007AFF;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(0, 122, 255, 0.2);
}

.contact-action-btn {
  background: linear-gradient(135deg, #007AFF, #5856D6);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
  position: relative;
  overflow: hidden;
}

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

.contact-action-btn:hover::before {
  left: 100%;
}

.whatsapp-action {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-action:hover {
  background: linear-gradient(135deg, #128C7E, #0F7A6B);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.email-action {
  background: linear-gradient(135deg, #EA4335, #D33B2C);
  box-shadow: 0 8px 25px rgba(234, 67, 53, 0.4);
}

.email-action:hover {
  background: linear-gradient(135deg, #D33B2C, #B52D20);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(234, 67, 53, 0.5);
}

.btn-icon {
  font-size: 1.2rem;
}

.contact-info-section {
  background: linear-gradient(145deg, #f8fafb, #ffffff);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  margin-top: 4rem;
  border: 1px solid #e5e5e7;
}

.contact-info-section h3 {
  text-align: center;
  color: #1d1d1f;
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.contact-detail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.detail-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.contact-detail-item strong {
  color: #1d1d1f;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-detail-item p {
  color: #6e6e73;
  margin: 0;
  line-height: 1.5;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

input, textarea {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e5e5e7;
  outline: none;
  background: #ffffff;
  color: #1d1d1f;
  font-size: 1rem;
  transition: all 0.2s ease;
}

input:focus, textarea:focus {
  border-color: #007AFF;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

button {
  padding: 1rem;
  border: none;
  background: #007AFF;
  color: white;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

button:hover {
  background: #0056CC;
  transform: translateY(-1px);
}

/* Message alerts */
.alert {
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 12px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.alert-success {
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid #34C759;
  color: #1B5E20;
}

.alert-error {
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid #FF3B30;
  color: #C62828;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1d1d1f 0%, #2c2c2e 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
  font-size: 0.9rem;
  text-align: center;
}


/* Company Stats in Footer */
.company-stats {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #ffffff;
  font-weight: 500;
}

.stat-icon {
  font-size: 1.1rem;
}

/* Popular Components Section */
.popular-components {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.component-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 122, 255, 0.1);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 122, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.component-tag:hover {
  background: rgba(0, 122, 255, 0.2);
  border-color: rgba(0, 122, 255, 0.4);
  transform: translateX(5px);
}

.tag-badge {
  background: #FF3B30;
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.tag-badge:contains("New") {
  background: #34C759;
}

.view-all-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #007AFF, #5856D6);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #0056CC, #4542B8);
  transform: translateY(-2px);
}

/* Specialized Solutions List */
.specialized-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.specialized-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.specialized-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateX(8px);
}

.list-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.info-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  margin-top: 0.2rem;
}

.contact-info-item strong {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.contact-info-item p {
  margin: 0;
  font-size: 0.9rem;
}

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

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

.enquire-btn {
  background: #25D366;
  color: white;
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.enquire-btn:hover {
  background: #1DA851;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.2);
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Features Section */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Premium Features Section */
.features-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0, 122, 255, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(88, 86, 214, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-section h2 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #007AFF, #5856D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.features-subtitle {
  font-size: 1.2rem;
  color: #6e6e73;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card.premium {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

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

.feature-card.premium:hover::before {
  left: 100%;
}

.feature-card.premium:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 122, 255, 0.15);
  border-color: rgba(0, 122, 255, 0.2);
}

.feature-icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(88, 86, 214, 0.08));
  border: 2px solid rgba(0, 122, 255, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.feature-icon-home {
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card.premium:hover .icon-glow {
  opacity: 1;
}

.feature-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-card.premium h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.feature-card.premium p {
  color: #6e6e73;
  line-height: 1.6;
  font-size: 0.95rem;
  flex: 1;
}

.feature-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #007AFF, #5856D6);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .features-section {
    padding: 4rem 1rem;
  }
  
  .features-section h2 {
    font-size: 2.2rem;
  }
  
  .features-subtitle {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card.premium {
    padding: 2rem 1.5rem;
    min-height: 280px;
  }
  
  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
}

/* Products Page Enhancements */
.products-header {
  text-align: center;
  padding: -1rem 0 0 0;
}

.premium-heading {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #007AFF, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.products-subtitle {
  color: #6e6e73;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .premium-heading {
    font-size: 1.8rem;
  }
  
  .products-subtitle {
    font-size: 1rem;
  }
}

/* Search and Filter Styles */
.search-filter-container {
  background: linear-gradient(145deg, #ffffff, #f8fafb);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e5e7;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-row {
  display: flex;
  justify-content: center;
}

.search-input-container {
  position: relative;
  max-width: 600px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  border: 2px solid #e5e5e7;
  border-radius: 50px;
  font-size: 1rem;
  background: #ffffff;
  transition: all 0.3s ease;
  outline: none;
}

.search-input:focus {
  border-color: #007AFF;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: #007AFF;
  border: none;
  padding: 0.8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: #0056CC;
  transform: translateY(-50%) scale(1.05);
}

.search-icon {
  color: white;
  font-size: 1rem;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 500;
  color: #1d1d1f;
  font-size: 0.9rem;
}

.filter-select {
  padding: 0.8rem 1rem;
  border: 2px solid #e5e5e7;
  border-radius: 12px;
  background: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.filter-select:focus {
  border-color: #007AFF;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.filter-actions {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.apply-filters-btn, .clear-filters-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.apply-filters-btn {
  background: #007AFF;
  color: white;
}

.apply-filters-btn:hover {
  background: #0056CC;
  transform: translateY(-2px);
}

.clear-filters-btn {
  background: transparent;
  color: #6e6e73;
  border: 2px solid #e5e5e7;
}

.clear-filters-btn:hover {
  border-color: #007AFF;
  color: #007AFF;
  transform: translateY(-2px);
}

/* Results Summary */
.results-summary {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.results-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 122, 255, 0.06);
  padding: 10px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 122, 255, 0.12);
  font-size: 15px;
  color: #1d1d1f;
  transition: all 0.3s ease;
}

.results-count {
  font-weight: 700;
  color: #007AFF;
  font-size: 16px;
  margin-right: 4px;
}

.clear-search-pill {
  margin-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(0, 122, 255, 0.1);
  border-radius: 50%;
  color: #007AFF;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clear-search-pill:hover {
  background: #007AFF;
  color: #fff;
  transform: scale(1.1);
}

/* No Products Message */
.no-products-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: #6e6e73;
}

.no-products-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.no-products-message h3 {
  color: #1d1d1f;
  margin-bottom: 1rem;
}

.reset-search-btn {
  display: inline-block;
  background: #007AFF;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.reset-search-btn:hover {
  background: #0056CC;
  transform: translateY(-2px);
}

/* Products Page Mobile Styles */
@media (max-width: 768px) {
  .search-filter-container {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  .filter-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .filter-actions {
    flex-direction: row;
    margin-top: 1rem;
  }
  
  .apply-filters-btn, .clear-filters-btn {
    flex: 1;
  }
  
  .search-input {
    padding: 0.9rem 3rem 0.9rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .card-actions {
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .details-btn, .enquire-btn {
    justify-content: center;
  }
}

/* Modern Premium Search Design */
.modern-search-container {
  margin: 0.2rem 0 1rem 0;
  max-width: 100%;
  padding: 0 1rem;
}

.modern-search-form {
  position: relative;
  margin-top: 0;
  padding-bottom: 2.5rem;
  max-width: 100%;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(234, 234, 234, 0.7);
  padding: 0 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.search-input-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.search-input-wrapper:focus-within {
  box-shadow: 0 12px 32px rgba(0, 122, 255, 0.15);
  border-color: rgba(0, 122, 255, 0.4);
}

.modern-search-input {
  flex: 1;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  background: transparent;
  outline: none;
  color: #1d1d1f;
  font-weight: 400;
}

.modern-search-input::placeholder {
  color: #8e8e93;
  font-weight: 400;
}

.modern-search-btn, .filter-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  color: #8e8e93;
}

.modern-search-btn:hover, .filter-toggle-btn:hover {
  background: rgba(0, 122, 255, 0.1);
  color: #007AFF;
}

.modern-search-btn {
  color: #ffffff;
  background: #007AFF;
  margin-right: 6px;
}

.modern-search-btn:hover {
  background: #0062cc;
  color: white;
  transform: scale(1.05);
}

.filter-toggle-btn {
  margin-right: 8px;
  position: relative;
}

.filter-toggle-btn svg {
  transition: all 0.3s ease;
}

.filter-toggle-btn.active {
  background: #007AFF;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

/* Filter Dropdown Styles */
.filter-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(255, 255, 255, 0.8);
  padding: 20px;
  z-index: 100;
  transform-origin: top right;
  transform: scale(0.95) translateY(-10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  border: 1px solid rgba(234, 234, 234, 0.5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.filter-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid rgba(234, 234, 234, 0.5);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
  z-index: -1;
}

.filter-dropdown.show {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.filter-dropdown-content {
  max-width: 100%;
}

.filter-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-weight: 600;
  color: #1d1d1f;
  font-size: 13px;
}

.filter-select {
  padding: 12px 16px;
  border: 1px solid #e5e5e7;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23007AFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  color: #1d1d1f;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-select:focus {
  border-color: #007AFF;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1), 
              0 4px 16px rgba(0, 122, 255, 0.15);
  background: #ffffff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23007AFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  transform: translateY(-1px);
}

.filter-select:hover {
  border-color: #007AFF;
  background: #ffffff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23007AFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.filter-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.apply-filters-btn, .clear-filters-btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 13px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.apply-filters-btn {
  background: linear-gradient(135deg, #007AFF, #5856D6);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 122, 255, 0.25);
}

.apply-filters-btn:hover {
  background: linear-gradient(135deg, #0062cc, #4542B8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.35);
}

.clear-filters-btn {
  background: linear-gradient(145deg, #f5f5f7, #e8e8e8);
  color: #6e6e73;
  border: 1px solid #e5e5e7;
}

.clear-filters-btn:hover {
  background: linear-gradient(145deg, #e8e8e8, #dadada);
  color: #1d1d1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.clear-filters-btn::before {
  content: '✕';
  font-size: 12px;
}

@media (max-width: 768px) {
  .search-input-wrapper {
    border-radius: 20px;
    padding: 0 6px;
  }

  .modern-search-input {
    padding: 16px 16px;
    font-size: 15px;
  }
  
  .modern-search-btn, .filter-toggle-btn {
    width: 44px;
    height: 44px;
  }
  
  .filter-dropdown {
    right: 10px;
    width: 280px;
    padding: 16px;
  }
  
  .filter-dropdown::before {
    right: 22px;
  }
  
  .filter-groups {
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .filter-actions {
    gap: 8px;
  }
  
  .apply-filters-btn, .clear-filters-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .modern-search-container {
    margin: 0.5rem 0 1rem 0;
    padding: 0 0.5rem;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .card {
    padding: 1.6rem;
    min-height: 480px;
    height: auto;
  }

  .card img {
    height: 160px;
  }

  .card-content {
    gap: 0.4rem;
  }

  .price-range {
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
    margin-bottom: 0.8rem;
  }

  section {
    padding: 1rem 0.5rem;
  }
}

/* ===== REDESIGNED PRODUCT DETAIL PAGE STYLES ===== */
.product-detail-section {
  padding: 2rem 0;
  min-height: 100vh;
  background: #f8f9fa;
}

.product-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  min-height: calc(100vh - 100px);
}

/* Main Content Styles */
.product-main-content {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

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

.product-main-content:hover::before {
  left: 100%;
}

/* Product Hero Section with Top-Right Info */
.product-hero {
  padding: 2rem 3rem 3rem;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  z-index: 2;
}

/* Top Right Info Panel */
.top-right-info {
  position: absolute;
  top: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.hero-price-display {
  background: linear-gradient(145deg, #ffffff, #f8fafb);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
  min-width: 180px;
}

.hero-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero-price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #28a745;
  background: linear-gradient(135deg, #28a745, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-price-unit {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stock-status {
  background: linear-gradient(145deg, #ffffff, #f8fafb);
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stock-status.in-stock {
  color: #28a745;
  border-left: 3px solid #28a745;
}

.hero-stock-status.out-of-stock {
  color: #dc3545;
  border-left: 3px solid #dc3545;
}

.hero-stock-status i {
  font-size: 0.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Availability Badge Styling */
.availability-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 15;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.availability-badge i {
  font-size: 0.8rem;
  flex-shrink: 0;
}

.availability-badge span {
  flex-shrink: 0;
}

.availability-badge.available {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(18, 140, 126, 0.9));
  color: white;
  border-color: rgba(37, 211, 102, 0.4);
}

.availability-badge.out-of-stock {
  background: linear-gradient(135deg, rgba(255, 69, 58, 0.95), rgba(255, 149, 0, 0.9));
  color: white;
  border-color: rgba(255, 69, 58, 0.4);
}

.availability-badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


/* Product Image Section */
.product-image-section {
  position: relative;
}

.product-image-wrapper {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0  8px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s ease;
}

.product-image-wrapper:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.product-main-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-image-wrapper:hover .product-main-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.product-image-wrapper:hover .image-overlay {
  transform: translateY(0);
}

/* Hero Category Badge */
.hero-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-category-badge i {
  font-size: 0.7rem;
}

/* Product Info Section */
.product-info {
  padding: 1rem 0;
}

.product-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.product_detail-product-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2rem;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 140px;
}

.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #0056b3, #004085);
}

.btn-secondary {
  background: transparent;
  color: #666;
  border: 2px solid #dee2e6;
}

.btn-secondary:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
  transform: translateY(-1px);
}

/* Features Section */
.product-features-section {
  padding: 3rem;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.product-features-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

.section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.section-header p {
  color: #666;
  font-size: 1rem;
}

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

.feature-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #dee2e6;
}


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

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

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

.feature-content span {
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

/* Specifications Section */
.product-specs-section {
  padding: 3rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.product-specs-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.specs-container {
  max-width: 800px;
  margin: 0 auto;
}

.specs-table {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.spec-row {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:hover {
  background: #f8f9fa;
}

.spec-key {
  color: #666;
  font-weight: 500;
  font-size: 0.95rem;
  min-width: 200px;
}

.spec-value {
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: auto;
  text-align: right;
}

/* Quote Sidebar */
.quote-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.quote-panel {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  position: relative;
}

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

.quote-panel:hover::before {
  left: 100%;
}

.quote-header {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  z-index: 2;
}

.quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.3);
}

.quote-icon i {
  color: white;
  font-size: 1.5rem;
}

.quote-header h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.025em;
}

.quote-header p {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.4;
}

/* Quote Form */
.quote-form {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

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

.form-group label {
  display: block;
  color: #333;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem;
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  color: #333;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #adb5bd;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  background: #ffffff;
}

.quantity-group {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.quantity-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
  min-width: 100px;
}

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

/* Enhanced Quote Panel Styles */
.main-quote-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  margin-bottom: 1.5rem;
}

.main-quote-btn:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.main-quote-btn:active {
  transform: translateY(0);
}

/* OR Divider Styles */
.or-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  gap: 1rem;
}

.or-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d1d5db, transparent);
}

.or-text {
  background: #f8f9fa;
  color: #6b7280;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Quick Contact Section */
.quick-contact-section {
  text-align: center;
}

.quick-contact-title {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-contact-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.quick-contact-btn {
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128c7e, #0f7a6b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.email-btn {
  background: linear-gradient(135deg, #ea4335, #d33b2c);
  color: white;
  box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
}

.email-btn:hover {
  background: linear-gradient(135deg, #d33b2c, #b52d20);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.4);
}

.quick-contact-btn:active {
  transform: translateY(0);
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.modal-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Golden blinking border animation for quote panel */
@keyframes goldenBlink {
  0%, 100% {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.2), 0 6px 24px rgba(0, 0, 0, 0.06);
  }
  50% {
    border-color: rgba(255, 215, 0, 0.7);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.3), 0 6px 24px rgba(0, 0, 0, 0.06);
  }
}

.quote-panel.highlight {
  animation: goldenBlink 2s ease-in-out 2;
  border: 1px solid rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.quote-panel:hover::before {
  left: 100%;
}

/* Modern About Page Styles */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
  color: white;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-tagline {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Company Story Section */
.company-story-section {
  padding: 6rem 0;
  background: #ffffff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
}

.story-intro {
  font-size: 1.1rem;
  color: #6e6e73;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, #f8faff, #ffffff);
  border-radius: 16px;
  border-left: 4px solid #007AFF;
}

.timeline-year {
  background: linear-gradient(135deg, #007AFF, #5856D6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 80px;
  text-align: center;
}

.timeline-content h3 {
  color: #1d1d1f;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #6e6e73;
  line-height: 1.6;
}

.company-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 50%;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.logo-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.7;
}

/* Innovations Section */
.innovations-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f4ff 100%);
}

.innovations-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6e6e73;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.innovation-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.innovation-card:hover::before {
  left: 100%;
}

.innovation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 122, 255, 0.2);
}

.innovation-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.innovation-card h3 {
  color: #1d1d1f;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.innovation-card p {
  color: #6e6e73;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: #ffffff;
}

.team-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 1rem;
}

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

.team-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, #f8faff, #ffffff);
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.team-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 122, 255, 0.1);
}

.team-stat .stat-icon {
  font-size: 2rem;
  color: #007AFF;
}

.team-stat .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1f;
  display: block;
}

.team-stat .stat-label {
  font-size: 0.9rem;
  color: #6e6e73;
}

.team-description {
  text-align: center;
  font-size: 1.1rem;
  color: #6e6e73;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Leadership Section */
.leadership-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f4ff 100%);
}

.leadership-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 1rem;
}

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

.leader-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.leader-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 122, 255, 0.15);
}

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

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

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

.leader-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.leader-info {
  padding: 2rem;
}

.leader-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
}

.leader-title {
  color: #007AFF;
  font-weight: 600;
  margin-bottom: 1rem;
}

.leader-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.credential {
  font-size: 0.9rem;
  color: #6e6e73;
  background: rgba(0, 122, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  width: fit-content;
}

.leader-role {
  color: #6e6e73;
  line-height: 1.6;
}

/* Facilities Section */
.facilities-section {
  padding: 6rem 0;
  background: #ffffff;
}

.facilities-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 1rem;
}

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

.facility-card {
  background: linear-gradient(145deg, #f8faff, #ffffff);
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 122, 255, 0.2);
}

.facility-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.facility-card h3 {
  color: #1d1d1f;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.facility-card p {
  color: #6e6e73;
  line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid transparent;
}

.cta-btn.primary {
  background: white;
  color: #007AFF;
  border-color: white;
}

.cta-btn.primary:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #007AFF;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-detail-section {
    padding: 1rem 0;
  }

  .product-detail-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    max-width: 100%;
  }

  /* Hero Section Mobile */
  .product-hero {
    margin-bottom: 2rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .product-image-section {
    order: 1;
    width: 100%;
  }

  .product-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }

  .product-main-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
  }

  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 0.9rem;
  }

  .product-image-wrapper:hover .image-overlay {
    opacity: 1;
  }

  /* Product Info Mobile */
  .product-info {
    order: 2;
    width: 100%;
    padding: 0;
  }

  .product-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1d1d1f;
    font-weight: 700;
  }

  .product_detail-product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6e6e73;
    margin-bottom: 1.5rem;
  }

  .product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .product-category {
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 122, 255, 0.2);
  }

  .product-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
  }

  .product-stock.in-stock {
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
    border: 1px solid rgba(52, 199, 89, 0.2);
  }

  .product-stock.out-of-stock {
    background: rgba(255, 59, 48, 0.1);
    color: #FF3B30;
    border: 1px solid rgba(255, 59, 48, 0.2);
  }

  /* Price Section Mobile */
  .price-section {
    margin-bottom: 2rem;
  }

  .price-container {
    background: linear-gradient(135deg, #f8faff, #ffffff);
    border: 1px solid #e5e5e7;
    border-radius: 16px;
    padding: 1.5rem;
  }

  .price-label {
    display: block;
    font-size: 0.9rem;
    color: #6e6e73;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }

  .price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #007AFF;
  }

  .price-unit {
    font-size: 0.9rem;
    color: #6e6e73;
  }

  /* Action Buttons Mobile */
  .product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }

  .btn-primary {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.3);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 122, 255, 0.4);
  }

  .btn-secondary {
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    border: 1px solid rgba(0, 122, 255, 0.3);
  }

  .btn-secondary:hover {
    background: rgba(0, 122, 255, 0.15);
    transform: translateY(-2px);
  }

  /* Features Section Mobile */
  .product-features-section {
    margin-bottom: 2rem;
  }

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

  .section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
  }

  .section-header p {
    color: #6e6e73;
    font-size: 1rem;
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    background: #ffffff;
    border: 1px solid #e5e5e7;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 122, 255, 0.3);
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .feature-content {
    flex: 1;
  }

  .feature-content span {
    color: #1d1d1f;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Specifications Section Mobile */
  .product-specs-section {
    margin-bottom: 2rem;
  }

  .specs-container {
    background: #ffffff;
    border: 1px solid #e5e5e7;
    border-radius: 16px;
    overflow: hidden;
  }

  .specs-table {
    display: flex;
    flex-direction: column;
  }

  .spec-row {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e5e7;
    gap: 0.5rem;
  }

  .spec-row:last-child {
    border-bottom: none;
  }

  .spec-key {
    font-weight: 600;
    color: #1d1d1f;
    font-size: 0.9rem;
  }

  .spec-value {
    color: #6e6e73;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* Quote Sidebar Mobile */
  .quote-sidebar {
    order: 3;
    width: 100%;
    position: sticky;
    bottom: 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e7;
    padding: 1rem;
    margin: 0 -1rem;
    z-index: 10;
  }

  .quote-panel {
    background: linear-gradient(135deg, #ffffff, #f8faff);
    border: 1px solid #e5e5e7;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }

  .quote-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.3rem;
  }

  .quote-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
  }

  .quote-header p {
    color: #6e6e73;
    font-size: 0.9rem;
  }

  /* Quote Form Mobile */
  .quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-group label {
    font-weight: 600;
    color: #1d1d1f;
    font-size: 0.9rem;
  }

  .form-input, .form-textarea, .form-select {
    padding: 0.8rem 1rem;
    border: 1px solid #e5e5e7;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
  }

  .form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
  }

  .quantity-group {
    display: flex;
    gap: 0.5rem;
  }

  .quantity-input {
    flex: 2;
  }

  .form-select {
    flex: 1;
  }

  /* Quote Buttons Mobile */
  .quote-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.3);
  }

  .or-divider {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    gap: 1rem;
  }

  .or-line {
    flex: 1;
    height: 1px;
    background: #e5e5e7;
  }

  .or-text {
    color: #6e6e73;
    font-size: 0.85rem;
    font-weight: 500;
  }

  /* Quick Contact Mobile */
  .quick-contact-section {
    text-align: center;
  }

  .quick-contact-title {
    color: #6e6e73;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .quick-contact-buttons {
    display: flex;
    gap: 0.8rem;
  }

  .quick-contact-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .whatsapp-btn {
    background: #25D366;
    color: white;
  }

  .whatsapp-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
  }

  .email-btn {
    background: #EA4335;
    color: white;
  }

  .email-btn:hover {
    background: #D33B2C;
    transform: translateY(-2px);
  }

  /* Image Modal Mobile */
  .image-modal {
    padding: 1rem;
  }

  .modal-content {
    margin: 10% auto;
    max-width: 95%;
    padding: 1.5rem;
    border-radius: 16px;
  }

  .modal-close {
    font-size: 2rem;
    top: 1rem;
    right: 1rem;
  }

  #modalImage {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .product-detail-container {
    padding: 0 0.5rem;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .quote-panel {
    padding: 1.2rem;
  }

  .quick-contact-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .quick-contact-btn {
    width: 100%;
  }
}

/* =============================================
   EVENTS PAGE STYLES
   ============================================= */

/* Events Section */
.events-section {
  max-width: 1200px;
  margin: 6rem auto 0;
  padding: 0 2rem 4rem;
}

.events-header {
  text-align: center;
  margin-bottom: 4rem;
}

.events-header h2 {
  font-size: 2.5rem;
  color: #1d1d1f;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #007AFF, #5856D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.events-subtitle {
  font-size: 1.1rem;
  color: #6e6e73;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Featured Events Section */
.featured-events {
  margin-bottom: 4rem;
}

.featured-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.8rem;
  color: #1d1d1f;
  margin-bottom: 2rem;
  font-weight: 600;
}

.featured-title i {
  color: #FF9500;
  font-size: 1.5rem;
}

.featured-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.featured-event-card {
  background: linear-gradient(145deg, #ffffff, #f8fafb);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 122, 255, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.featured-event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 122, 255, 0.15);
  border-color: rgba(0, 122, 255, 0.3);
}

.featured-event-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.featured-event-card:hover .featured-event-image img {
  transform: scale(1.05);
}

.event-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #007AFF, #5856D6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #FF9500, #FF6B35);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
}

.featured-event-content {
  padding: 2rem;
}

.event-type-badge {
  display: inline-block;
  background: rgba(0, 122, 255, 0.1);
  color: #007AFF;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 122, 255, 0.2);
}

.featured-event-content h4 {
  font-size: 1.4rem;
  color: #1d1d1f;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.event-date, .event-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6e6e73;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.event-date i, .event-location i {
  color: #007AFF;
  width: 16px;
}

/* Events Grid */
.events-grid-container {
  margin-top: 4rem;
}

.events-grid-title {
  font-size: 1.8rem;
  color: #1d1d1f;
  margin-bottom: 2rem;
  font-weight: 600;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 122, 255, 0.2);
}

.event-image-container {
  position: relative;
  height: 180px;
  overflow: hidden;
}

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

.event-card:hover .event-image-container img {
  transform: scale(1.03);
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 122, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}

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

.event-overlay i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.event-content {
  padding: 1.5rem;
}

.event-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.event-type {
  background: rgba(0, 122, 255, 0.1);
  color: #007AFF;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.event-date {
  color: #6e6e73;
  font-size: 0.85rem;
  font-weight: 500;
}

.event-content h3 {
  font-size: 1.2rem;
  color: #1d1d1f;
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.event-description {
  color: #6e6e73;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.event-location-info, .event-participants {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6e6e73;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.event-location-info i, .event-participants i {
  color: #007AFF;
  width: 14px;
}

/* No Events Message */
.no-events-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(145deg, #f8fafb, #ffffff);
  border-radius: 20px;
  border: 2px dashed #e5e5e7;
}

.no-events-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.no-events-message h3 {
  color: #1d1d1f;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.no-events-message p {
  color: #6e6e73;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-events-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #007AFF, #5856D6);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-events-btn:hover {
  background: linear-gradient(135deg, #0056CC, #4A47A3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

/* =============================================
   EVENT MODAL STYLES - REDESIGNED
   ============================================= */

.event-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.event-modal .event-modal-content {
  background: #ffffff !important;
  margin: 5% auto !important;
  padding: 0 !important;
  border-radius: 16px !important;
  width: 90% !important;
  max-width: 700px !important;
  max-height: 80vh !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  animation: modalFadeIn 0.3s ease-out !important;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.event-modal .event-modal-close {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  font-size: 24px !important;
  font-weight: bold !important;
  color: #666 !important;
  cursor: pointer !important;
  z-index: 2001 !important;
  width: 35px !important;
  height: 35px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  border: none !important;
}

.event-modal-close:hover {
  background: rgba(255, 255, 255, 1);
  color: #333;
  transform: scale(1.1);
}

.event-modal .event-modal-header {
  background: linear-gradient(135deg, #007AFF, #5856D6) !important;
  color: white !important;
  padding: 30px 25px 25px !important;
  text-align: center !important;
  position: relative !important;
}

.event-modal .event-modal-image {
  width: 100px !important;
  height: 100px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  margin: 0 auto 20px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 3px solid rgba(255, 255, 255, 0.3) !important;
  position: relative !important;
}

.event-modal .event-modal-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.event-modal .modal-event-type {
  position: absolute !important;
  bottom: -5px !important;
  right: -5px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: #007AFF !important;
  padding: 4px 8px !important;
  border-radius: 12px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  border: 2px solid white !important;
}

.event-modal .event-modal-info h2 {
  font-size: 24px !important;
  margin: 0 0 15px 0 !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.event-modal .modal-event-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 10px !important;
}

.event-modal .modal-meta-item {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 14px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  padding: 6px 12px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.event-modal .modal-meta-item i {
  font-size: 12px !important;
  opacity: 0.9 !important;
}

.event-modal .event-modal-body {
  padding: 25px !important;
  max-height: 300px !important;
  overflow-y: auto !important;
}

.event-modal .modal-event-description {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #333 !important;
  margin: 0 !important;
}

.event-modal .event-modal-footer {
  padding: 20px 25px !important;
  background: #f8f9fa !important;
  border-top: 1px solid #e9ecef !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 15px !important;
}

.event-modal .modal-close-btn, 
.event-modal .modal-share-btn {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px 20px !important;
  border: none !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
}

.event-modal .modal-close-btn {
  background: #6c757d !important;
  color: white !important;
}

.event-modal .modal-close-btn:hover {
  background: #5a6268 !important;
  transform: translateY(-1px) !important;
}

.event-modal .modal-share-btn {
  background: linear-gradient(135deg, #007AFF, #5856D6) !important;
  color: white !important;
}

.event-modal .modal-share-btn:hover {
  background: linear-gradient(135deg, #0056CC, #4A47A3) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3) !important;
}

/* Custom scrollbar for modal body */
.event-modal-body::-webkit-scrollbar {
  width: 6px;
}

.event-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.event-modal-body::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.event-modal-body::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #1d1d1f;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification.success {
  background: #34C759;
}

.toast-notification.error {
  background: #FF3B30;
}

/* =============================================
   EVENTS RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 768px) {
  .events-section {
    padding: 0 1rem 2rem;
    margin-top: 4rem;
  }

  .events-header h2 {
    font-size: 2rem;
  }

  .featured-events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .featured-event-card {
    min-width: unset;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-modal .event-modal-content {
    width: 95% !important;
    margin: 10% auto !important;
    max-height: 85vh !important;
  }

  .event-modal .event-modal-close {
    top: 10px !important;
    right: 10px !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 18px !important;
  }

  .event-modal .event-modal-header {
    padding: 25px 20px 20px !important;
  }

  .event-modal .event-modal-image {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 15px !important;
  }

  .event-modal .event-modal-info h2 {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }

  .event-modal .modal-event-meta {
    gap: 8px !important;
  }

  .modal-meta-item {
    font-size: 12px;
    padding: 5px 10px;
  }

  .modal-event-type {
    font-size: 10px;
    padding: 3px 6px;
  }

  .event-modal-body {
    padding: 20px;
    max-height: 200px;
  }

  .modal-event-description {
    font-size: 14px;
  }

  .event-modal-footer {
    padding: 15px 20px;
    flex-direction: column;
    gap: 10px;
  }

  .modal-close-btn, .modal-share-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
  }

  .toast-notification {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .events-header h2 {
    font-size: 1.8rem;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  .events-grid-title {
    font-size: 1.5rem;
  }

  .featured-event-content, .event-content {
    padding: 1.2rem;
  }

  .event-modal-close {
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
}
